/* =========================================================
   Stryv Digital — site styles
   ========================================================= */
:root {
  --coral: #ff6b35;
  --cyan: #46c5e5;
  --pink: #f4b6d6;
  --yellow: #ffd93d;
  --lime: #5be547;
  --ink: #0f1115;
  --ink-2: #1a1d23;
  --ink-3: #2a2e36;
  --paper: #f7f4ee;
  --paper-2: #eeeae0;
  --mute: #6b6f76;
  --white: #ffffff;
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font: inherit;
  background: none;
  border: 0;
  cursor: pointer;
  color: inherit;
}

/* Typography */
.display,
h1,
h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.98;
  text-wrap: balance;
}
h3,
h4 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.mono {
  font-family: "JetBrains Mono", monospace;
}
.eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--coral);
  display: inline-block;
}

/* Layout */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}
section {
  padding: 120px 0;
  position: relative;
}
section.tight {
  padding: 80px 0;
}
.grid {
  display: grid;
  gap: 32px;
}

/* ========== NAVBAR ========== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 244, 238, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15, 17, 21, 0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  max-width: 1320px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.03em;
}
.nav-logo svg {
  width: 38px;
  height: 38px;
  transform: translateY(2px);
}
.nav-logo .sub {
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.32em;
  color: var(--mute);
  font-weight: 400;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  transition: background 0.15s;
}
.nav-links a:hover {
  background: rgba(15, 17, 21, 0.06);
}
.nav-links a.has-caret::after {
  content: " ▾";
  font-size: 9px;
  opacity: 0.5;
  margin-left: 2px;
}
.nav-links a.active {
  background: var(--ink);
  color: var(--paper);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--paper);
  padding: 11px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
}
.nav-cta:hover {
  background: var(--coral);
}

/* Dropdown Container */
.dropdown {
  position: relative;
  display: inline-block;
}

/* The Menu itself */
.dropdown-menu {
  position: absolute;
  top: 100%; /* Sits right below the link */
  left: 0;
  min-width: 220px;
  background: var(--paper);
  border: 1px solid rgba(15, 17, 21, 0.08);
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

  /* Hidden state */
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
  z-index: 100;
}

/* Show on Hover */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Dropdown Links */
.dropdown-menu a {
  display: block;
  padding: 10px 16px !important; /* Overriding global padding */
  border-radius: 8px !important;
  font-size: 13.5px !important;
  color: var(--ink);
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: rgba(15, 17, 21, 0.05) !important;
  color: var(--coral) !important;
}

/* Invisible bridge to prevent menu from closing when moving mouse down */
.dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 10px;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  transition:
    transform 0.15s,
    background 0.15s;
}
.btn-primary {
  background: var(--coral);
  color: var(--ink);
}
.btn-primary:hover {
  background: var(--paper);
  color: var(--coral);
}
.btn-ink {
  background: var(--ink);
  color: var(--paper);
}
.btn-ink:hover {
  background: var(--coral);
  color: var(--ink);
}
.btn-ink-alt {
  background: var(--ink);
  color: var(--paper);
}
.btn-ink-alt:hover {
  background: var(--paper);
  color: var(--coral);
}
.btn-ghost {
  background: transparent;
  border: 1px solid rgba(15, 17, 21, 0.18);
}
.btn-ghost:hover {
  background: rgba(15, 17, 21, 0.06);
}
.btn .arrow {
  display: inline-block;
  transition: transform 0.2s;
}
.btn:hover .arrow {
  transform: translateX(4px);
}

/* ========== HERO ========== */
.hero {
  background: var(--ink);
  color: var(--paper);
  padding: 120px 0 140px;
  position: relative;
  overflow: hidden;
}
.hero .eyebrow {
  color: var(--paper);
  opacity: 0.7;
}
.hero h1 {
  font-size: clamp(56px, 8vw, 108px);
  margin: 24px 0 28px;
}
.hero h1 .accent-coral {
  color: var(--coral);
}
.hero h1 .accent-cyan {
  color: var(--cyan);
}
.hero h1 .accent-yellow {
  color: var(--yellow);
}
.hero h1 .underline {
  position: relative;
  display: inline-block;
}
.hero h1 .underline::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 10px;
  background: var(--coral);
  z-index: -1;
  opacity: 0.6;
}
.hero-sub {
  font-size: 20px;
  max-width: 680px;
  line-height: 1.5;
  color: rgba(247, 244, 238, 0.75);
  margin-bottom: 36px;
}
.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-cta-row .btn-primary:hover {
  background: var(--paper);
}
.hero-cta-row .btn-ghost {
  color: var(--paper);
  border-color: rgba(247, 244, 238, 0.25);
}
.hero-cta-row .btn-ghost:hover {
  background: rgba(247, 244, 238, 0.06);
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(247, 244, 238, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 244, 238, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at top right, #000 0%, transparent 75%);
}

/* Floating chips in hero */
.hero-orbit {
  position: absolute;
  right: -60px;
  top: 120px;
  width: 520px;
  height: 520px;
  pointer-events: none;
  display: none;
}
@media (min-width: 1100px) {
  .hero-orbit {
    display: block;
  }
}
.orbit-chip {
  position: absolute;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink-2);
  border: 1px solid rgba(247, 244, 238, 0.12);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--paper);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.orbit-chip .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 12px var(--yellow);
}
.orbit-chip .dot.coral {
  background: var(--coral);
  box-shadow: 0 0 12px var(--coral);
}
.orbit-chip .dot.cyan {
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}
.orbit-chip .dot.yellow {
  background: var(--yellow);
  box-shadow: 0 0 12px var(--yellow);
}

/* Trust banner */
.trust {
  background: var(--ink);
  color: rgba(247, 244, 238, 0.7);
  padding: 28px 0;
  border-top: 1px solid rgba(247, 244, 238, 0.08);
}
.trust .container {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.trust-cities {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  letter-spacing: 0.08em;
}
.trust-cities span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.trust-cities span:nth-child(1)::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
}
.trust-cities span:nth-child(2)::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
}
.trust-cities span:nth-child(3)::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
}
.trust-cities span:nth-child(4)::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
}
.trust-cities span:nth-child(5)::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
}
.trust-cities span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
}

/* ========== SECTION HEADS ========== */
.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 64px;
}
.section-head h2 {
  font-size: clamp(40px, 5vw, 72px);
}
.section-head .meta {
  padding-top: 6px;
}
@media (max-width: 900px) {
  .section-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ========== TWO-VERTICAL CARDS ========== */
.two-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 900px) {
  .two-cards {
    grid-template-columns: 1fr;
  }
}
.vcard {
  background: var(--ink);
  color: var(--paper);
  padding: 48px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 520px;
}
.vcard.alt {
  background: var(--cyan);
  color: var(--ink);
}
.vcard .num {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  letter-spacing: 0.22em;
  opacity: 0.75;
}
.vcard h3 {
  font-size: 44px;
  letter-spacing: -0.03em;
  margin: 0;
}
.vcard .vsub {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
}
.vcard p {
  font-size: 17px;
  line-height: 1.55;
  opacity: 0.85;
  margin: 0;
}
.vcard .best {
  margin-top: auto;
  font-size: 13px;
  opacity: 0.7;
  padding-top: 24px;
  border-top: 1px solid currentColor;
  border-top-color: rgba(247, 244, 238, 0.15);
}
.vcard.alt .best {
  border-top-color: rgba(15, 17, 21, 0.18);
  opacity: 0.75;
}
.vcard .vlink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  padding-top: 8px;
}
.vcard .vlink:hover {
  text-decoration: underline;
}
.vcard .vmark {
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(247, 244, 238, 0.04);
  pointer-events: none;
}
.vcard.alt .vmark {
  background: rgba(15, 17, 21, 0.1);
}

/* ========== INDUSTRY CARDS ========== */
.industries {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
@media (max-width: 1100px) {
  .industries {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .industries {
    grid-template-columns: 1fr;
  }
}
.icard {
  background: var(--paper-2);
  padding: 28px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 280px;
  transition:
    transform 0.15s,
    background 0.15s;
  cursor: pointer;
}
.icard:hover {
  transform: translateY(-4px);
  background: var(--ink);
  color: var(--paper);
}
.icard:hover .iglyph {
  background: var(--coral);
  color: var(--ink);
}
.iglyph {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--paper);
  display: grid;
  place-items: center;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 20px;
  transition:
    background 0.15s,
    color 0.15s;
}
.icard h4 {
  font-size: 22px;
  margin: 0;
  letter-spacing: -0.02em;
}
.icard p {
  font-size: 13.5px;
  line-height: 1.5;
  margin: 0;
  opacity: 0.78;
}
.icard .imeta {
  margin-top: auto;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.55;
}

/* ========== STATS ========== */
.stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid rgba(15, 17, 21, 0.12);
  border-bottom: 1px solid rgba(15, 17, 21, 0.12);
}
@media (max-width: 900px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .stats {
    grid-template-columns: 1fr;
  }
}
.stat {
  padding: 40px 28px;
  border-right: 1px solid rgba(15, 17, 21, 0.12);
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.stat:last-child {
  border-right: 0;
}
.stat .big {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 64px;
  letter-spacing: -0.04em;
  line-height: 0.95;
}
.stat .big sup {
  font-size: 0.55em;
  font-weight: 600;
  margin-left: 2px;
  color: var(--coral);
}
.stat:nth-child(2) .big,
.stat:nth-child(2) .big sup {
  color: var(--cyan);
}
.stat:nth-child(4) .big,
.stat:nth-child(4) .big sup {
  color: var(--yellow);
}
.stat .lbl {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 12px;
}
.stat .desc {
  font-size: 13px;
  line-height: 1.5;
  opacity: 0.75;
  margin-top: 16px;
}

/* ========== PROCESS ========== */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--ink);
  color: var(--paper);
  border-radius: 24px;
  overflow: hidden;
}
@media (max-width: 900px) {
  .process {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .process {
    grid-template-columns: 1fr;
  }
}
.pstep {
  padding: 48px 32px;
  border-right: 1px solid rgba(247, 244, 238, 0.08);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.pstep:last-child {
  border-right: 0;
}
.pstep .pnum {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--coral);
}
.pstep:nth-child(2) .pnum {
  color: var(--cyan);
}
.pstep:nth-child(3) .pnum {
  color: var(--yellow);
}
.pstep h4 {
  font-size: 28px;
  margin: 0;
}
.pstep p {
  font-size: 14px;
  line-height: 1.55;
  opacity: 0.75;
  margin: 0;
}

/* ========== CTA BLOCK ========== */
.cta-block {
  background: var(--coral);
  color: var(--ink);
  border-radius: 32px;
  padding: 80px 60px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: end;
  gap: 60px;
}
@media (max-width: 900px) {
  .cta-block {
    grid-template-columns: 1fr;
    padding: 48px 32px;
  }
}
.cta-block h2 {
  font-size: clamp(40px, 6vw, 84px);
  margin: 0;
}
.cta-block p {
  margin: 24px 0 0;
  max-width: 520px;
  font-size: 17px;
  line-height: 1.5;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 80px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
@media (max-width: 1000px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
.footer h5 {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(247, 244, 238, 0.5);
  font-weight: 500;
  margin: 0 0 16px;
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer ul a {
  font-size: 14px;
  color: rgba(247, 244, 238, 0.85);
}
.footer ul a:hover {
  color: var(--coral);
}
.footer-tag {
  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-top: 18px;
  max-width: 340px;
  color: rgba(247, 244, 238, 0.9);
}
.footer-bottom {
  border-top: 1px solid rgba(247, 244, 238, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(247, 244, 238, 0.5);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a:hover {
  color: var(--paper);
}

/* ========== SECONDARY PAGE HEROES ========== */
.page-hero {
  padding: 120px 0 80px;
  border-bottom: 1px solid rgba(15, 17, 21, 0.08);
}
.page-hero h1 {
  font-size: clamp(56px, 8vw, 120px);
  margin: 24px 0 28px;
}
.page-hero p {
  font-size: 20px;
  max-width: 680px;
  line-height: 1.5;
  color: var(--mute);
  margin-bottom: 32px;
}

/* ========== SERVICE BLOCK (Page 2) ========== */
.svc-block {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  padding: 80px 0;
  border-bottom: 1px solid rgba(15, 17, 21, 0.08);
}
@media (max-width: 900px) {
  .svc-block {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.svc-block:last-child {
  border-bottom: 0;
}
.svc-block .svc-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 14px;
}
.svc-block h3 {
  font-size: 48px;
  margin: 0 0 14px;
  letter-spacing: -0.03em;
}
.svc-block .svc-sub {
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  color: var(--mute);
  font-weight: 400;
}
.svc-block p {
  font-size: 16px;
  line-height: 1.6;
}
.svc-block ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}
.svc-block li {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid rgba(15, 17, 21, 0.08);
  align-items: flex-start;
  font-size: 14.5px;
}
.svc-block li::before {
  content: "→";
  color: var(--coral);
  font-weight: 600;
  flex-shrink: 0;
}
.svc-block .svc-ideal {
  margin-top: 24px;
  padding: 16px;
  background: var(--paper-2);
  border-radius: 10px;
  font-size: 13px;
  font-family: "JetBrains Mono", monospace;
  letter-spacing: 0.04em;
}

/* ========== USE CASES (Page 3) ========== */
.usecase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
  padding: 48px 0;
  border-bottom: 1px solid rgba(15, 17, 21, 0.08);
}
@media (max-width: 900px) {
  .usecase {
    grid-template-columns: 1fr;
  }
}
.usecase:last-child {
  border-bottom: 0;
}
.usecase .uc-left h3 {
  font-size: 36px;
  margin: 14px 0 12px;
}
.usecase .uc-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid rgba(15, 17, 21, 0.15);
  border-radius: 999px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.usecase .uc-tag .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
}
.usecase .uc-impact {
  background: var(--ink);
  color: var(--paper);
  padding: 36px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.usecase .uc-impact .imet {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
}
.usecase .uc-impact .ibig {
  font-family: "Space Grotesk", sans-serif;
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.95;
}
.usecase .uc-impact .icap {
  font-size: 14px;
  opacity: 0.75;
  max-width: 340px;
}

/* ========== BUILD STEPS LINE ========== */
.bsteps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  background: var(--paper-2);
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 900px) {
  .bsteps {
    grid-template-columns: repeat(1, 1fr);
  }
}
.bstep {
  padding: 28px;
  border-right: 1px solid rgba(15, 17, 21, 0.08);
  min-height: 200px;
}
.bstep:last-child {
  border-right: 0;
}
.bstep .bn {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--coral);
}
.bstep h4 {
  font-size: 22px;
  margin: 8px 0 10px;
}
.bstep p {
  font-size: 13.5px;
  opacity: 0.78;
  margin: 0;
  line-height: 1.5;
}

/* ========== ABOUT VALUES ========== */
.values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 800px) {
  .values {
    grid-template-columns: 1fr;
  }
}
.value {
  padding: 36px;
  background: var(--paper-2);
  border-radius: 20px;
}
.value h4 {
  font-size: 24px;
  margin: 0 0 10px;
}
.value .vmono {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--coral);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.value p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  opacity: 0.85;
}

/* Mission options */
.missions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}
@media (max-width: 900px) {
  .missions {
    grid-template-columns: 1fr;
  }
}
.mission {
  padding: 32px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  cursor: pointer;
  position: relative;
  transition: transform 0.15s;
}
.mission:hover {
  transform: translateY(-4px);
}
.mission .mtag {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--coral);
  text-transform: uppercase;
}
.mission h4 {
  font-size: 24px;
  margin: 0;
  letter-spacing: -0.02em;
}
.mission p {
  font-size: 14.5px;
  opacity: 0.85;
  line-height: 1.55;
  margin: 0;
}
.mission .check {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid rgba(247, 244, 238, 0.3);
  display: grid;
  place-items: center;
  font-size: 11px;
}
.mission.selected {
  outline: 2px solid var(--coral);
}
.mission.selected .check {
  background: var(--coral);
  color: var(--ink);
  border-color: var(--coral);
}

/* ========== CITIES ========== */
.city-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
@media (max-width: 1000px) {
  .city-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .city-grid {
    grid-template-columns: 1fr;
  }
}
.city-pill {
  padding: 24px;
  background: var(--paper-2);
  border-radius: 14px;
  cursor: pointer;
  transition:
    background 0.15s,
    color 0.15s;
}
.city-pill:hover,
.city-pill.active {
  background: var(--ink);
  color: var(--paper);
}
.city-pill .cn {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  opacity: 0.6;
}
.city-pill h4 {
  font-size: 24px;
  margin: 8px 0 0;
  letter-spacing: -0.02em;
}

.local-callout {
  background: var(--paper-2);
  padding: 48px;
  border-radius: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin: 48px 0;
}
@media (max-width: 800px) {
  .local-callout {
    grid-template-columns: 1fr;
    padding: 32px;
  }
}
.local-callout h3 {
  font-size: 32px;
  margin: 0 0 16px;
}
.local-callout .neighborhoods {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.local-callout .neighborhoods span {
  padding: 6px 12px;
  background: #fff;
  border-radius: 999px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
}

/* ========== BLOG ========== */
.blog-hero-card {
  background: var(--ink);
  color: var(--paper);
  border-radius: 24px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 48px;
}
@media (max-width: 900px) {
  .blog-hero-card {
    grid-template-columns: 1fr;
    padding: 32px;
  }
}
.blog-hero-card h3 {
  font-size: 42px;
  margin: 14px 0 0;
  letter-spacing: -0.03em;
}
.blog-hero-card .bmeta {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
}
.subscribe-card {
  background: var(--paper-2);
  padding: 24px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--ink);
}
.subscribe-card input {
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgba(15, 17, 21, 0.15);
  background: #fff;
  font: inherit;
  font-size: 14px;
}
.subscribe-card button {
  background: var(--coral);
  color: var(--ink);
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
}
.subscribe-card button:hover {
  background: var(--ink);
  color: var(--paper);
}

.blog-cats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.blog-cats button {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(15, 17, 21, 0.15);
  font-size: 13px;
  font-family: "JetBrains Mono", monospace;
  letter-spacing: 0.04em;
  background: #fff;
}
.blog-cats button.active {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1000px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
.blog-card {
  background: var(--paper-2);
  padding: 28px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 280px;
  cursor: pointer;
  transition:
    transform 0.15s,
    background 0.15s;
}
.blog-card:hover {
  transform: translateY(-4px);
  background: var(--ink);
  color: var(--paper);
}
.blog-card .bcat {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
}
.blog-card h4 {
  font-size: 22px;
  margin: 0;
  line-height: 1.2;
  flex: 1;
}
.blog-card .bfoot {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  opacity: 0.6;
  display: flex;
  justify-content: space-between;
}

/* ========== CONTACT FORM ========== */
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}
.form-card {
  background: var(--paper-2);
  padding: 40px;
  border-radius: 24px;
  display: grid;
  gap: 18px;
}
.form-card label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
}
.form-card input,
.form-card select,
.form-card textarea {
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(15, 17, 21, 0.12);
  background: #fff;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
}
.form-card textarea {
  min-height: 120px;
  resize: vertical;
  font-family: inherit;
}
.form-card .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 600px) {
  .form-card .row {
    grid-template-columns: 1fr;
  }
}
.form-card button {
  background: var(--ink);
  color: var(--paper);
  padding: 16px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.form-card button:hover {
  background: var(--coral);
  color: var(--ink);
}
.form-success {
  padding: 18px;
  background: var(--lime);
  color: var(--ink);
  border-radius: 10px;
  font-size: 14px;
  font-family: "JetBrains Mono", monospace;
  letter-spacing: 0.04em;
  display: none;
}
.form-success.show {
  display: block;
}
.contact-side h3 {
  font-size: 24px;
  margin: 0 0 16px;
}
.contact-side .cline {
  padding: 18px 0;
  border-top: 1px solid rgba(15, 17, 21, 0.1);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-side .cline .cl-lbl {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
}
.contact-side .cline .cl-val {
  font-size: 16px;
}

/* FAQ */
.faq {
  margin-top: 48px;
}
.faq-item {
  border-top: 1px solid rgba(15, 17, 21, 0.12);
  padding: 20px 0;
  cursor: pointer;
}
.faq-item:last-child {
  border-bottom: 1px solid rgba(15, 17, 21, 0.12);
}
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  cursor: pointer;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  font-family: "JetBrains Mono", monospace;
  font-size: 24px;
  font-weight: 400;
  transition: transform 0.2s;
}
.faq-item[open] summary::after {
  content: "−";
}
.faq-item p {
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.85;
  max-width: 780px;
}

/* ========== MOBILE MENU ========== */
.nav-mobile-toggle {
  display: none;
}

/* Set up the overlay on the nav itself, projecting downwards */
.nav::before {
  content: "";
  position: absolute;
  top: 100%; /* Starts exactly at the bottom edge of the navbar */
  left: 0;
  right: 0;
  height: 100vh; /* Covers the rest of the screen below */
  background: rgba(15, 17, 21, 0.65);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s ease,
    visibility 0.4s;
  pointer-events: none; /* Ignores clicks when closed */
}

@media (max-width: 900px) {
  /* Animate the navbar background change */
  .nav {
    transition:
      background-color 0.3s ease,
      border-color 0.3s ease;
  }

  /* Show and position the hamburger icon */
  .nav-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none; /* Removes weird mobile tap border */
    outline: none; /* Removes focus outline */
    -webkit-tap-highlight-color: transparent; /* Removes iOS grey tap box */
    color: var(--coral);
    margin-left: auto;
    font-size: 38px;
    font-weight: 800;
    padding: 4px 8px;
    transition:
      transform 0.3s ease,
      color 0.2s ease;
    cursor: pointer;
  }

  /* Allow items to stack */
  .nav-inner {
    flex-wrap: wrap;
  }

  /* Hide links & CTA smoothly */
  .nav-links,
  .nav-cta {
    width: 100%;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    visibility: hidden;
    margin: 0;
    padding-top: 0;
    padding-bottom: 0;
    transition:
      max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
      opacity 0.3s ease,
      padding 0.3s ease,
      margin 0.3s ease,
      visibility 0.4s;
  }

  .nav-links {
    order: 3;
    flex-direction: column;
    align-items: stretch;
    display: flex;
    gap: 0;
  }

  .nav-cta {
    order: 4;
    display: flex;
    justify-content: center;
  }

  /* --- When the mobile menu is ACTIVE/OPEN --- */
  .nav.nav-open {
    background: var(--paper);
    border-bottom: 1px solid rgba(15, 17, 21, 0.1);
  }

  /* ACTIVATE THE OVERLAY */
  .nav.nav-open::before {
    opacity: 1;
    visibility: visible;
    pointer-events: auto; /* Capture clicks so the JS can close the menu */
  }

  /* Flip the toggle icon */
  .nav.nav-open .nav-mobile-toggle {
    transform: rotate(90deg);
  }

  /* Expand the link container smoothly */
  .nav.nav-open .nav-links {
    max-height: 600px;
    opacity: 1;
    visibility: visible;
    padding: 8px 0;
  }

  /* Expand the CTA button smoothly */
  .nav.nav-open .nav-cta {
    max-height: 100px;
    opacity: 1;
    visibility: visible;
    margin-bottom: 24px;
    padding: 11px 18px;
  }

  /* Reset dropdown wrappers so they don't break the uniform spacing */
  .nav.nav-open .nav-links .dropdown {
    display: block;
    margin: 0;
  }

  /* Uniform, even padding for all top-level mobile links */
  .nav.nav-open .nav-links > a,
  .nav.nav-open .nav-links .dropdown > a {
    display: block;
    padding: 16px;
    font-size: 17px;
    margin: 0;
  }

  /* --- Smooth nested dropdowns --- */
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    transform: none;
    padding-left: 24px;
    padding-top: 0;
    padding-bottom: 0;
    display: block;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    visibility: hidden;
    transition:
      max-height 0.35s ease,
      opacity 0.3s ease,
      padding 0.3s ease,
      visibility 0.35s;
  }

  /* Expand nested dropdowns on hover/tap */
  .dropdown:hover .dropdown-menu,
  .dropdown:focus-within .dropdown-menu {
    max-height: 400px;
    opacity: 1;
    visibility: visible;
    padding-top: 4px;
    padding-bottom: 8px;
  }
}

/* Misc */
.page {
  display: none;
}
.page.active {
  display: block;
  animation: fadein 0.3s ease;
}
@keyframes fadein {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.kbd {
  display: inline-block;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(15, 17, 21, 0.08);
  border: 1px solid rgba(15, 17, 21, 0.12);
}

/* ========== PAGE FAQ LAYOUT ========== */
.faq-page-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) {
  .faq-page-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.faq-page-nav {
  position: sticky;
  top: 100px;
}
.faq-nav-title {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 12px;
}
.faq-nav-link {
  display: block;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  padding: 8px 12px;
  border-radius: 8px;
  margin-bottom: 4px;
  transition: all 0.15s;
}
.faq-nav-link:hover,
.faq-nav-link.active {
  background: var(--paper-2);
  color: var(--coral);
  font-weight: 600;
}
.faq-page-groups {
  display: flex;
  flex-direction: column;
  gap: 52px;
}
.faq-group-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.faq-group-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(15, 17, 21, 0.08);
}
.faq-page-item {
  border: 1px solid rgba(15, 17, 21, 0.12);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
  transition: border-color 0.2s;
  background: #fff;
}
.faq-page-item.open {
  border-color: var(--coral);
}
.faq-page-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 600;
  gap: 16px;
  transition: background 0.15s;
}
.faq-page-q:hover {
  background: var(--paper-2);
}
.faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid rgba(15, 17, 21, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 300;
  color: var(--mute);
  flex-shrink: 0;
  transition: all 0.25s;
}
.faq-page-item.open .faq-icon {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--paper);
  transform: rotate(45deg);
}
.faq-page-a {
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a-inner {
  padding: 0 24px 24px;
  font-size: 15.5px;
  color: var(--mute);
  line-height: 1.7;
  border-top: 1px solid rgba(15, 17, 21, 0.08);
  padding-top: 16px;
  margin: 0 24px;
}
/* =========================================================
   LEADNIVA SUB-BRAND STYLES
   ========================================================= */
.leadniva-wrap {
  --ln-blue: #1b4fd8;
  --ln-blue-dark: #1240b5;
  --ln-blue-light: #eef3ff;
  --ln-teal: #00bfa5;
  --ln-teal-light: #e6faf8;
  --ln-dark: #0d1b33;
  --ln-dark2: #2c3b5a;
  --ln-muted: #6b7a99;
  --ln-border: #e2e8f4;
  --ln-cream: #f7f9fc;
  --ln-white: #ffffff;

  font-family: "Barlow", sans-serif;
  color: var(--ln-dark);
}

.leadniva-wrap section {
  /* padding: 0; */
}

/* ── HERO ── */
.ln-hero {
  background: var(--ln-dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.ln-hero::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -120px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(27, 79, 216, 0.35) 0%,
    transparent 70%
  );
}
.ln-hero::after {
  content: "";
  position: absolute;
  bottom: 60px;
  left: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 191, 165, 0.18) 0%,
    transparent 70%
  );
}
.ln-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) {
  .ln-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.ln-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 191, 165, 0.12);
  color: var(--ln-teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.ln-hero h1 {
  font-family: "Barlow", sans-serif;
  font-size: clamp(42px, 5vw, 54px);
  font-weight: 900;
  line-height: 1.06;
  color: var(--ln-white);
  margin-bottom: 20px;
  letter-spacing: 0;
}
.ln-hero h1 em {
  font-style: normal;
  color: var(--ln-teal);
}
.ln-hero-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 36px;
}
.ln-hero-btns {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 52px;
  flex-wrap: wrap;
}
.ln-btn-primary {
  background: var(--ln-blue);
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  display: inline-flex;
  gap: 6px;
  transition: opacity 0.2s;
}
.ln-btn-primary:hover {
  opacity: 0.88;
  color: white;
}
.ln-btn-ghost-light {
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  transition: all 0.2s;
}
.ln-btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.07);
  color: white;
}
.ln-hero-trust {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 52px;
}
.ln-trust-avatars {
  display: flex;
}
.ln-trust-avatars span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--ln-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: white;
  margin-left: -8px;
}
.ln-trust-avatars span:first-child {
  margin-left: 0;
}
.ln-trust-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}
.ln-trust-text strong {
  color: rgba(255, 255, 255, 0.8);
}

/* Form Card */
.ln-hero-form-card {
  background: var(--ln-white);
  border-radius: 20px;
  padding: 36px 32px;
}

.ln-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

/* Stack fields vertically on mobile */
@media (max-width: 600px) {
  .ln-form-row {
    grid-template-columns: 1fr;
  }
}

.ln-form-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--ln-dark);
  margin-bottom: 6px;
}
.ln-form-sub {
  font-size: 13px;
  color: var(--ln-muted);
  margin-bottom: 24px;
}
.ln-form-group {
  margin-bottom: 14px;
  text-align: left;
}
.ln-form-group label {
  display: block;
  font-family: "Barlow", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--ln-dark2);
  margin-bottom: 5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.ln-form-group input,
.ln-form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--ln-border);
  border-radius: 7px;
  font-family: "Barlow", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--ln-dark);
  outline: none;
  transition: border-color 0.2s;
  background: var(--ln-white);
}
.ln-form-group input:focus,
.ln-form-group select:focus {
  border-color: var(--ln-blue);
}
.ln-form-btn {
  width: 100%;
  background: var(--ln-blue);
  color: white;
  padding: 14px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  border: none;
  font-family: "Barlow", sans-serif;
  cursor: pointer;
  transition: opacity 0.2s;
  margin-top: 8px;
}
.ln-form-btn:hover {
  opacity: 0.88;
}
.ln-form-note {
  font-size: 11px;
  color: var(--ln-muted);
  text-align: center;
  margin-top: 10px;
}

/* ── STATS ── */
.ln-stats-bar {
  background: var(--ln-blue);
  padding: 40px 0;
}
.ln-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 768px) {
  .ln-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 0;
  }
  .ln-stat-item {
    border-right: none !important;
  }
}
.ln-stat-item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}
.ln-stat-item:last-child {
  border: none;
}
.ln-stat-num {
  font-size: 48px;
  font-weight: 900;
  color: var(--ln-white);
  line-height: 1;
  font-family: "Barlow", sans-serif;
}
.ln-stat-num span {
  color: var(--ln-teal);
}
.ln-stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  margin-top: 4px;
}

/* ── SERVICES ── */
.ln-services-section {
  padding: 88px 0;
  background: var(--ln-white);
}
.ln-section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ln-blue);
  margin-bottom: 10px;
}
.ln-section-title {
  font-size: clamp(32px, 4vw, 40px);
  font-family: "Barlow", sans-serif;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 14px;
  letter-spacing: 0;
}
.ln-section-sub {
  font-size: 17px;
  color: var(--ln-muted);
  max-width: 520px;
  margin-bottom: 52px;
  line-height: 1.65;
}
.ln-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .ln-services-grid {
    grid-template-columns: 1fr;
  }
}
.ln-service-card {
  border: 1.5px solid var(--ln-border);
  border-radius: 16px;
  padding: 36px 32px;
  transition: all 0.25s;
  background: var(--ln-white);
}
.ln-service-card:hover {
  border-color: var(--ln-blue);
  box-shadow: 0 8px 32px rgba(27, 79, 216, 0.1);
  transform: translateY(-3px);
}
.ln-service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.ln-si-blue {
  background: var(--ln-blue-light);
}
.ln-si-teal {
  background: var(--ln-teal-light);
}
.ln-si-dark {
  background: #edf0f7;
}
.ln-service-title {
  font-size: 20px;
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  margin-bottom: 10px;
}
.ln-service-desc {
  font-size: 14px;
  color: var(--ln-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.ln-service-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--ln-blue);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.ln-service-link:hover {
  gap: 8px;
}

/* ── DIFFERENTIATORS ── */
.ln-diff-section {
  background: var(--ln-dark);
  padding: 88px 0;
}
.ln-diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) {
  .ln-diff-grid {
    grid-template-columns: 1fr;
  }
}
.ln-diff-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ln-diff-item {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  text-align: left;
}
.ln-diff-item:last-child {
  border: none;
}
.ln-diff-num {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(27, 79, 216, 0.25);
  color: var(--ln-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
  border: 1px solid rgba(27, 79, 216, 0.4);
}
.ln-diff-item-title {
  font-size: 16px;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  color: var(--ln-white);
  margin-bottom: 5px;
}
.ln-diff-item-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
}
.ln-diff-visual {
  position: relative;
}
.ln-diff-card-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ln-diff-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 22px 24px;
}
.ln-diff-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.ln-diff-card-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.ln-diff-card-label {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.ln-diff-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.ln-diff-bar-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  width: 90px;
  flex-shrink: 0;
}
.ln-diff-bar-track {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  overflow: hidden;
}
.ln-diff-bar-fill {
  height: 100%;
  border-radius: 3px;
}
.ln-diff-bar-val {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  width: 36px;
  text-align: right;
  flex-shrink: 0;
}
.ln-diff-metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ln-diff-metric-val {
  font-size: 32px;
  font-family: "Barlow", sans-serif;
  font-weight: 900;
  color: var(--ln-white);
}
.ln-diff-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 191, 165, 0.15);
  color: var(--ln-teal);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  margin-top: 8px;
}

/* ── TESTIMONIALS ── */
.ln-testi-section {
  padding: 88px 0;
  background: var(--ln-cream);
}
.ln-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .ln-testi-grid {
    grid-template-columns: 1fr;
  }
}
.ln-testi-card {
  background: var(--ln-white);
  border: 1px solid var(--ln-border);
  border-radius: 14px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ln-stars {
  color: #f59e0b;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 4px;
}
.ln-testi-quote {
  font-size: 15px;
  color: #404050;
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}
.ln-testi-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  border-top: 1px solid var(--ln-border);
  padding-top: 20px;
}
.ln-testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
  color: white;
  flex-shrink: 0;
}
.ln-ta-blue {
  background: linear-gradient(135deg, #1b4fd8, #4f77e8);
}
.ln-ta-teal {
  background: linear-gradient(135deg, #00bfa5, #00977f);
}
.ln-ta-dark {
  background: linear-gradient(135deg, #0d1b33, #2c3b5a);
}
.ln-testi-name {
  font-size: 14px;
  font-weight: 700;
  font-family: "Barlow", sans-serif;
}
.ln-testi-role {
  font-size: 12px;
  color: var(--ln-muted);
}
.ln-testi-result {
  font-size: 12px;
  font-weight: 700;
  color: var(--ln-teal);
  margin-top: 2px;
}

/* ── CTA SECTION ── */
.ln-cta-section {
  background: var(--ln-blue);
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ln-cta-section::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
}
.ln-cta-section::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(0, 191, 165, 0.15);
}
.ln-cta-inner {
  position: relative;
}
.ln-cta-section h2 {
  font-size: clamp(32px, 5vw, 44px);
  font-family: "Barlow", sans-serif;
  font-weight: 900;
  color: var(--ln-white);
  margin-bottom: 14px;
  letter-spacing: 0;
}
.ln-cta-section p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.ln-cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.ln-btn-white {
  background: var(--ln-white);
  color: var(--ln-blue);
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  display: inline-flex;
  transition: opacity 0.2s;
}
.ln-btn-white:hover {
  opacity: 0.92;
  color: var(--ln-blue);
}
.ln-btn-ghost-white {
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.85);
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
}
.ln-btn-ghost-white:hover {
  background: rgba(255, 255, 255, 0.05);
  color: white;
}

/* ── STAFF AUGMENTATION HERO ── */
.ln-staff-hero {
  background: var(--ln-dark);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.ln-staff-hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(27, 79, 216, 0.3) 0%,
    transparent 70%
  );
}
.ln-staff-hero::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 191, 165, 0.15) 0%,
    transparent 70%
  );
}
.ln-staff-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 80px;
  align-items: center;
}
@media (max-width: 1000px) {
  .ln-staff-hero-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}
.ln-staff-hero-text {
  text-align: left;
}
.ln-staff-hero-note {
  display: inline-block;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 20px;
  border-radius: 20px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.ln-staff-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 191, 165, 0.12);
  color: var(--ln-teal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 8px;
}
.ln-staff-hero h1 {
  font-size: clamp(48px, 6vw, 68px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--ln-white);
  margin-top: 24px;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.ln-staff-hero h1 em {
  font-style: normal;
  color: var(--ln-teal);
}
.ln-staff-hero-sub {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 680px;
  margin-bottom: 48px;
  line-height: 1.6;
}
.ln-staff-hero-btns {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.ln-staff-hero-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.ln-staff-hero-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 10px;
}
.ln-pill-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── BENEFITS BAR ── */
.ln-benefits-bar {
  background: var(--ln-blue);
}
.ln-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) {
  .ln-benefits-grid {
    grid-template-columns: 1fr;
  }
  .ln-benefit-item {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
}
.ln-benefit-item {
  padding: 48px 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}
.ln-benefit-item:last-child {
  border: none;
}
.ln-benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ln-benefit-num {
  font-size: 36px;
  font-weight: 900;
  color: var(--ln-white);
  line-height: 1;
  font-family: "Barlow", sans-serif;
}
.ln-benefit-num span {
  color: var(--ln-teal);
}
.ln-benefit-label {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
  font-weight: 500;
  line-height: 1.4;
}

/* ── WHY LEADNIVA ── */
.ln-why-section {
  padding: 120px 0;
  background: var(--ln-white);
}
.ln-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 1000px) {
  .ln-why-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}
.ln-why-body {
  font-size: 17px;
  color: var(--ln-muted);
  line-height: 1.65;
  margin: 24px 0 40px;
}
.ln-why-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ln-why-point {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ln-dark2);
}
.ln-why-point-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ln-teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ln-why-point-dot svg {
  width: 16px;
  height: 16px;
}
.ln-why-visual {
  background: var(--ln-cream);
  border-radius: 24px;
  padding: 48px 40px;
  border: 1.5px solid var(--ln-border);
}
.ln-why-visual-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ln-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 32px;
}
.ln-why-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ln-why-step {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  position: relative;
}
.ln-why-step:first-child {
  padding-top: 0;
}
.ln-why-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: -8px;
  width: 2px;
  background: var(--ln-border);
}
.ln-step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ln-blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 900;
  flex-shrink: 0;
  z-index: 1;
}
.ln-step-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  font-family: "Barlow", sans-serif;
}
.ln-step-detail {
  font-size: 15px;
  color: var(--ln-muted);
  line-height: 1.5;
  margin-bottom: 8px;
}
.ln-step-badge {
  display: inline-flex;
  background: var(--ln-teal-light);
  color: var(--ln-teal);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 12px;
}

/* ── ROLES TABLE ── */
.ln-roles-section {
  background: var(--ln-cream);
  padding: 120px 0;
}
.ln-roles-table-wrap {
  margin-top: 60px;
  border: 1.5px solid var(--ln-border);
  border-radius: 20px;
  overflow: hidden;
  background: var(--ln-white);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  overflow-x: auto;
}
.ln-roles-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
}
.ln-roles-table thead tr {
  background: var(--ln-dark);
}
.ln-roles-table th {
  padding: 24px 32px;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
}
.ln-roles-table tbody tr {
  border-bottom: 1px solid var(--ln-border);
  transition: background 0.2s;
}
.ln-roles-table tbody tr:hover {
  background: var(--ln-blue-light);
}
.ln-roles-table td {
  padding: 24px 32px;
  font-size: 16px;
  vertical-align: middle;
}
.ln-role-name {
  font-weight: 800;
  font-family: "Barlow", sans-serif;
  color: var(--ln-dark);
  font-size: 17px;
}
.ln-role-tag {
  display: inline-flex;
  background: var(--ln-blue-light);
  color: var(--ln-blue);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  margin-left: 10px;
  vertical-align: middle;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ln-role-desc {
  font-size: 14.5px !important;
  color: var(--ln-muted);
}
.ln-role-price {
  font-size: 17px !important;
  font-weight: 800;
  color: var(--ln-dark);
  text-align: center;
}
.ln-role-price span {
  font-size: 13px;
  font-weight: 500;
  color: var(--ln-muted);
}
.ln-avail-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ln-teal-light);
  color: #009e86;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
}
.ln-avail-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ln-teal);
}

/* ── PLANS ── */
.ln-plans-section {
  padding: 120px 0;
  background: var(--ln-white);
}
.ln-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}
@media (max-width: 1000px) {
  .ln-plans-grid {
    grid-template-columns: 1fr;
  }
}
.ln-plan-card {
  border: 1.5px solid var(--ln-border);
  border-radius: 24px;
  padding: 48px 40px;
  position: relative;
  transition: all 0.3s;
  background: var(--ln-white);
}
.ln-plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.05);
}
.ln-plan-card.ln-featured {
  border-color: var(--ln-blue);
  border-width: 2px;
  box-shadow: 0 16px 40px rgba(27, 79, 216, 0.1);
}
.ln-plan-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ln-blue);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.ln-plan-name {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ln-muted);
  margin-bottom: 12px;
}
.ln-plan-price {
  font-size: 42px;
  font-weight: 900;
  font-family: "Barlow", sans-serif;
  color: var(--ln-dark);
  margin-bottom: 8px;
  line-height: 1.1;
}
.ln-plan-price span {
  font-size: 16px;
  font-weight: 500;
  color: var(--ln-muted);
}
.ln-plan-ideal {
  font-size: 15px;
  color: var(--ln-muted);
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--ln-border);
  line-height: 1.6;
}
.ln-plan-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}
.ln-plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ln-dark2);
  line-height: 1.4;
}
.ln-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--ln-teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ln-check svg {
  width: 12px;
  height: 12px;
}
.ln-plan-best {
  font-size: 13px;
  font-weight: 700;
  color: var(--ln-blue);
  background: var(--ln-blue-light);
  padding: 10px 16px;
  border-radius: 8px;
  margin-bottom: 24px;
  line-height: 1.4;
}
.ln-plan-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.2s;
  font-family: "Barlow", sans-serif;
  border: none;
  cursor: pointer;
}
.ln-plan-btn-primary {
  background: var(--ln-blue);
  color: white;
}
.ln-plan-btn-primary:hover {
  opacity: 0.9;
}
.ln-plan-btn-ghost {
  background: transparent;
  color: var(--ln-blue);
  border: 1.5px solid var(--ln-blue);
}
.ln-plan-btn-ghost:hover {
  background: var(--ln-blue-light);
}

/* ── CTA SECTION ── */
.ln-staff-cta-section {
  background: var(--ln-dark);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ln-staff-cta-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(27, 79, 216, 0.3) 0%,
    transparent 70%
  );
}
.ln-staff-cta-section::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 191, 165, 0.15) 0%,
    transparent 70%
  );
}
.ln-staff-cta-inner {
  position: relative;
  z-index: 2;
}
.ln-staff-cta-section h2 {
  font-size: clamp(36px, 5vw, 56px);
  font-family: "Barlow", sans-serif;
  font-weight: 900;
  color: var(--ln-white);
  margin-bottom: 20px;
  line-height: 1.1;
}
.ln-staff-cta-section p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 48px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.ln-staff-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.ln-btn-teal {
  background: var(--ln-teal);
  color: white;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  display: inline-flex;
  gap: 8px;
  transition: opacity 0.2s;
}
.ln-btn-teal:hover {
  opacity: 0.9;
  color: white;
}

/* =========================================================
   OUR CLIENTS PAGE
   ========================================================= */
.page-clients .cl-hero {
  background: var(--ink);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-clients .cl-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 80% 20%,
      rgba(70, 197, 229, 0.14) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 10% 80%,
      rgba(255, 107, 53, 0.12) 0%,
      transparent 50%
    );
}
.page-clients .cl-hero-inner {
  position: relative;
  text-align: center;
}
.page-clients .cl-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.page-clients .cl-hero h1 {
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--paper);
  margin-bottom: 20px;
}
.page-clients .cl-hero h1 em {
  font-style: normal;
  color: var(--coral);
}
.page-clients .cl-hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* STATS */
.page-clients .cl-stats-bar {
  background: var(--paper-2);
  padding: 60px 0;
}
.page-clients .cl-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
@media (max-width: 768px) {
  .page-clients .cl-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 0;
  }
  .page-clients .cl-stat-item {
    border-right: none !important;
  }
}
.page-clients .cl-stat-item {
  text-align: center;
  padding: 0 32px;
  border-right: 1px solid rgba(15, 17, 21, 0.1);
}
.page-clients .cl-stat-item:last-child {
  border: none;
}
.page-clients .cl-stat-num {
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
}
.page-clients .cl-stat-num span {
  color: var(--coral);
}
.page-clients .cl-stat-label {
  font-size: 14px;
  color: var(--mute);
  font-weight: 500;
  margin-top: 8px;
}

/* CLIENTS */
.page-clients .cl-clients-section {
  padding: 100px 0;
}
.page-clients .cl-section-header {
  margin-bottom: 48px;
}
.page-clients .cl-section-eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 12px;
}
.page-clients .cl-section-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.page-clients .cl-filter-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.page-clients .cl-filter-btn {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1.5px solid rgba(15, 17, 21, 0.12);
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--ink);
}
.page-clients .cl-filter-btn:hover {
  border-color: var(--ink);
}
.page-clients .cl-filter-btn.active {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.page-clients .cl-industry-group {
  margin-bottom: 64px;
}
.page-clients .cl-industry-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.page-clients .cl-industry-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(15, 17, 21, 0.08);
}
.page-clients .cl-client-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}
.page-clients .cl-logo-card {
  background: #fff;
  border: 1.5px solid rgba(15, 17, 21, 0.08);
  border-radius: 12px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.2s;
  cursor: default;
}
.page-clients .cl-logo-card:hover {
  border-color: var(--coral);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.08);
  transform: translateY(-3px);
}
.page-clients .cl-client-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.page-clients .cl-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}
.page-clients .cl-client-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  text-align: center;
  line-height: 1.4;
}

.page-clients .fade-in {
  animation: fadeIn 0.3s ease-in-out;
}

/* TESTIMONIALS */
.page-clients .cl-testimonials {
  background: var(--paper-2);
  padding: 100px 0;
}
.page-clients .cl-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .page-clients .cl-testi-grid {
    grid-template-columns: 1fr;
  }
}
.page-clients .cl-testi-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  border: 1px solid rgba(15, 17, 21, 0.08);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.page-clients .cl-testi-quote {
  font-size: 15.5px;
  color: #404040;
  line-height: 1.7;
  font-style: italic;
  flex: 1;
  margin: 0;
}
.page-clients .cl-testi-quote::before {
  content: "\201C";
  font-family: serif;
  font-size: 64px;
  line-height: 0;
  vertical-align: -22px;
  color: var(--coral);
  font-style: normal;
  margin-right: 4px;
}
.page-clients .cl-testi-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  border-top: 1px solid rgba(15, 17, 21, 0.08);
  padding-top: 24px;
}
.page-clients .cl-testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
  color: white;
  flex-shrink: 0;
}
.page-clients .cl-testi-name {
  font-size: 15px;
  font-weight: 700;
}
.page-clients .cl-testi-title {
  font-size: 13px;
  color: var(--mute);
  margin-top: 2px;
}
.page-clients .cl-testi-result {
  font-size: 12px;
  font-weight: 700;
  color: var(--coral);
  margin-top: 6px;
  display: inline-block;
  padding: 4px 10px;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 6px;
}

/* =========================================================
   OUR TEAM PAGE
   ========================================================= */
.page-team .tm-hero {
  background: var(--paper-2);
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-team .tm-hero::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 107, 53, 0.08) 0%,
    transparent 70%
  );
}
.page-team .tm-hero::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(70, 197, 229, 0.08) 0%,
    transparent 70%
  );
}
.page-team .tm-hero-inner {
  position: relative;
  z-index: 2;
}
.page-team .tm-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 107, 53, 0.1);
  color: var(--coral);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.page-team .tm-hero h1 {
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 20px;
}
.page-team .tm-hero h1 em {
  font-style: normal;
  color: var(--coral);
}
.page-team .tm-hero p {
  font-size: 18px;
  color: var(--mute);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* VALUES STRIP (with continuous scroll) */
.page-team .tm-values-strip {
  background: var(--ink);
  padding: 0;
  overflow: hidden;
  display: flex;
}
.page-team .tm-values-ticker {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: scrollMarquee 40s linear infinite;
}
@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.page-team .tm-values-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.page-team .tm-values-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* SECTIONS SHARED */
.page-team .tm-section-eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 12px;
}
.page-team .tm-section-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 48px;
  letter-spacing: -0.02em;
}

/* FOUNDERS */
.page-team .tm-founders-section {
  padding: 100px 0 60px;
}
.page-team .tm-founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 100px;
}
@media (max-width: 900px) {
  .page-team .tm-founders-grid {
    grid-template-columns: 1fr;
  }
  .page-team .tm-founder-photo {
    width: 120px !important;
    font-size: 32px !important;
  }
}
.page-team .tm-founder-card {
  border: 1.5px solid rgba(15, 17, 21, 0.08);
  border-radius: 20px;
  overflow: hidden;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  display: flex;
  background: #fff;
}
.page-team .tm-founder-card:hover {
  border-color: var(--coral);
  box-shadow: 0 12px 32px rgba(255, 107, 53, 0.08);
}
.page-team .tm-founder-photo {
  width: 180px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: white;
  letter-spacing: -1px;
}
.page-team .fp-coral {
  background: linear-gradient(160deg, var(--coral) 0%, #e05010 100%);
}
.page-team .fp-cyan {
  background: linear-gradient(160deg, var(--cyan) 0%, #1a9ec2 100%);
}
.page-team .tm-founder-info {
  padding: 36px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-team .tm-founder-name {
  font-family: "Space Grotesk", sans-serif;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--ink);
}
.page-team .tm-founder-role {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.page-team .tm-founder-bio {
  font-size: 14.5px;
  color: var(--mute);
  line-height: 1.6;
  margin-bottom: 24px;
}
.page-team .tm-founder-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.page-team .tm-founder-tag {
  background: var(--paper-2);
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
}

/* TEAM GRID */
.page-team .tm-team-section {
  background: var(--paper-2);
  padding: 100px 0;
}
.page-team .tm-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1000px) {
  .page-team .tm-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .page-team .tm-team-grid {
    grid-template-columns: 1fr;
  }
}
.page-team .tm-team-card {
  background: var(--white);
  border: 1px solid rgba(15, 17, 21, 0.05);
  border-radius: 16px;
  padding: 36px 24px;
  text-align: center;
  transition: all 0.2s;
}
.page-team .tm-team-card:hover {
  border-color: var(--coral);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.04);
}
.page-team .tm-team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: white;
}
.page-team .av-1 {
  background: linear-gradient(135deg, var(--coral), #ff8c5a);
}
.page-team .av-2 {
  background: linear-gradient(135deg, var(--cyan), #1aa0c2);
}
.page-team .av-3 {
  background: linear-gradient(135deg, var(--yellow), #e0a800);
  color: var(--ink);
}
.page-team .av-4 {
  background: linear-gradient(135deg, #8b5cf6, #6d3fdc);
}
.page-team .av-5 {
  background: linear-gradient(135deg, #10b981, #059669);
}
.page-team .av-6 {
  background: linear-gradient(135deg, #ec4899, #c2185b);
}
.page-team .av-7 {
  background: linear-gradient(135deg, #f97316, #c2440c);
}
.page-team .av-8 {
  background: linear-gradient(135deg, #6366f1, #4338ca);
}
.page-team .tm-team-name {
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--ink);
}
.page-team .tm-team-role {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}
.page-team .tm-team-bio {
  font-size: 14px;
  color: var(--mute);
  line-height: 1.6;
}
.page-team .tm-team-location {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--mute);
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.page-team .tm-team-location::before {
  content: "📍";
  font-size: 12px;
}

/* CULTURE */
.page-team .tm-culture-section {
  padding: 100px 0;
}
.page-team .tm-culture-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (max-width: 800px) {
  .page-team .tm-culture-grid {
    grid-template-columns: 1fr;
  }
}
.page-team .tm-culture-card {
  border-radius: 24px;
  padding: 48px;
}
.page-team .tm-culture-card.dark {
  background: var(--ink);
  color: white;
}
.page-team .tm-culture-card.cream {
  background: var(--paper-2);
  color: var(--ink);
}
.page-team .tm-culture-card.coral {
  background: var(--coral);
  color: var(--ink);
}
.page-team .tm-culture-card.border {
  background: #fff;
  border: 1.5px solid rgba(15, 17, 21, 0.1);
}
.page-team .tm-culture-icon {
  font-size: 32px;
  margin-bottom: 20px;
}
.page-team .tm-culture-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.page-team .tm-culture-card p {
  font-size: 15.5px;
  line-height: 1.6;
  opacity: 0.8;
  margin: 0;
}
.page-team .tm-culture-card.dark p {
  opacity: 0.7;
  color: white;
}

/* JOIN */
.page-team .tm-join-section {
  background: var(--ink);
  padding: 100px 0;
}
.page-team .tm-join-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) {
  .page-team .tm-join-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
.page-team .tm-join-text h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 900;
  color: white;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.page-team .tm-join-text p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 36px;
}
.page-team .tm-join-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.page-team .btn-ghost-dark {
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  background: transparent;
}
.page-team .btn-ghost-dark:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}
.page-team .tm-join-perks {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.page-team .tm-join-perk {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
}
.page-team .tm-perk-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.page-team .tm-perk-title {
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}
.page-team .tm-perk-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
}

/* =========================================================
   BLOG ARTICLE SPECIFIC STYLES
   ========================================================= */
.article-page-wrap {
  --article-cream: #f0ebe0;
  --article-orange-bg: #fff2eb;
  --article-cyan-bg: #eaf9fd;
}

/* BREADCRUMB */
.breadcrumb {
  padding: 14px 0;
  font-size: 13px;
  color: var(--mute);
  border-bottom: 1px solid rgba(15, 17, 21, 0.08);
}
.breadcrumb a {
  color: var(--mute);
}
.breadcrumb a:hover {
  color: var(--coral);
}
.breadcrumb span {
  margin: 0 6px;
}

/* ARTICLE HERO */
.article-hero {
  background: var(--ink);
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}
.article-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 70% 50%,
      rgba(255, 107, 53, 0.15) 0%,
      transparent 65%
    ),
    radial-gradient(
      ellipse at 20% 80%,
      rgba(70, 197, 229, 0.12) 0%,
      transparent 60%
    );
}
.article-hero-inner {
  position: relative;
  max-width: 780px;
}
.article-cat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 107, 53, 0.15);
  color: var(--coral);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 22px;
}
.article-hero h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(36px, 5vw, 46px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--paper);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.meta-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  color: white;
  flex-shrink: 0;
}
.meta-author {
  font-size: 14px;
  font-weight: 600;
  color: var(--paper);
}
.meta-role {
  font-size: 12px;
  color: rgba(247, 244, 238, 0.5);
}
.meta-sep {
  width: 1px;
  height: 28px;
  background: rgba(247, 244, 238, 0.15);
}
.meta-detail {
  font-size: 13px;
  color: rgba(247, 244, 238, 0.5);
}
.meta-tag {
  background: rgba(247, 244, 238, 0.08);
  color: rgba(247, 244, 238, 0.7);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
}

/* ARTICLE LAYOUT */
.article-wrap {
  padding: 64px 0 96px;
}
.article-grid {
  display: grid;
  grid-template-columns: 1fr 288px;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) {
  .article-grid {
    grid-template-columns: 1fr;
  }
}
.article-body h2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  margin: 40px 0 16px;
  color: var(--ink);
}
.article-body h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  margin: 28px 0 10px;
  color: var(--ink);
}
.article-body p {
  font-size: 16.5px;
  color: #303030;
  line-height: 1.75;
  margin-bottom: 18px;
}
.article-body ul,
.article-body ol {
  padding-left: 22px;
  margin-bottom: 24px;
}
.article-body li {
  font-size: 16px;
  color: #303030;
  line-height: 1.75;
  margin-bottom: 8px;
}
.article-body strong {
  font-weight: 600;
  color: var(--ink);
}

/* CALLOUTS & LISTS */
.callout {
  border-left: 4px solid var(--coral);
  background: var(--article-orange-bg);
  padding: 22px 24px;
  border-radius: 0 10px 10px 0;
  margin: 36px 0;
}
.callout p {
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  font-style: italic;
  margin: 0;
  line-height: 1.55;
}
.callout-cyan {
  border-color: var(--cyan);
  background: var(--article-cyan-bg);
}
.callout-cyan p {
  font-style: normal;
}
.numbered-item {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(15, 17, 21, 0.08);
}
.numbered-item:last-child {
  border: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.num-badge {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 3px;
  font-family: "Space Grotesk", sans-serif;
}
.num-badge.orange {
  background: var(--coral);
}
.num-badge.cyan {
  background: var(--cyan);
  color: var(--ink);
}
.num-badge.yellow {
  background: var(--yellow);
  color: var(--ink);
}
.num-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  font-family: "Space Grotesk", sans-serif;
}

/* TAGS & AUTHOR CARD */
.article-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 20px 0 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(15, 17, 21, 0.08);
}
.article-tag {
  background: var(--article-cream);
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
}
.author-card {
  background: var(--article-cream);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.author-avatar-lg {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
  color: white;
  flex-shrink: 0;
  font-family: "Space Grotesk", sans-serif;
}
.author-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 3px;
  font-family: "Space Grotesk", sans-serif;
}
.author-role {
  font-size: 13px;
  color: var(--coral);
  font-weight: 600;
  margin-bottom: 10px;
  font-family: "JetBrains Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.author-bio-text {
  font-size: 14.5px;
  color: var(--mute);
  line-height: 1.65;
  margin: 0;
}

/* SIDEBAR */
.article-sidebar {
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sidebar-box {
  border: 1px solid rgba(15, 17, 21, 0.1);
  border-radius: 12px;
  padding: 22px;
}
.sidebar-box h4 {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 4px;
  margin-top: 8px;
}
.toc-link {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--ink);
  padding: 7px 0;
  border-bottom: 1px solid rgba(15, 17, 21, 0.08);
  line-height: 1.4;
  transition: color 0.2s;
}
.toc-link:last-child {
  border: none;
  padding-bottom: 0;
}
.toc-link:hover {
  color: var(--coral);
}
.toc-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--mute);
  flex-shrink: 0;
  margin-top: 1px;
  font-family: "JetBrains Mono", monospace;
}
.sidebar-author {
  display: flex;
  gap: 12px;
  align-items: center;
}
.sidebar-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
  font-family: "Space Grotesk", sans-serif;
  color: white;
  flex-shrink: 0;
}
.sidebar-author-name {
  font-size: 15px;
  font-weight: 700;
}
.sidebar-author-role {
  font-size: 12px;
  color: var(--mute);
}
.sidebar-cta-box {
  background: var(--ink);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}
.sidebar-cta-box h4 {
  font-size: 18px;
  font-weight: 700;
  font-family: "Space Grotesk", sans-serif;
  color: var(--paper);
  letter-spacing: 0;
  text-transform: none;
  margin-block: 4px;
}
.sidebar-cta-box p {
  font-size: 13.5px;
  color: rgba(247, 244, 238, 0.6);
  margin-bottom: 18px;
  line-height: 1.5;
}
.btn-sm {
  display: block;
  background: var(--coral);
  color: var(--ink);
  padding: 11px 16px;
  border-radius: 7px;
  font-size: 13.5px;
  font-weight: 600;
  text-align: center;
  transition: background 0.2s;
}
.btn-sm:hover {
  background: var(--paper);
  color: var(--coral);
}

/* ARTICLE CTA BANNER */
.cta-banner {
  background: var(--ink);
  padding: 72px 0;
  text-align: center;
  margin-top: 40px;
}
.cta-banner h2 {
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 800;
  font-family: "Space Grotesk", sans-serif;
  color: var(--paper);
  margin-bottom: 12px;
}
.cta-banner p {
  font-size: 17px;
  color: rgba(247, 244, 238, 0.6);
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}
.cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ARTICLE FAQS */
/* .article-faqs {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 2px solid rgba(15, 17, 21, 0.08);
}
.article-faqs h2 {
  font-size: 28px;
  margin-bottom: 24px;
}
.faq-block {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(15, 17, 21, 0.05);
}
.faq-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.faq-block h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.faq-block h3::before {
  content: "Q.";
  color: var(--coral);
  font-family: "JetBrains Mono", monospace;
  font-size: 16px;
}
.faq-block p {
  margin: 0;
  font-size: 16px;
  color: #404040;
  padding-left: 28px;
} */
