:root {
  --blue: #0052ff;
  --blue-h: #003ee0;
  --blue-glow: rgba(0, 82, 255, 0.36);
  --blue-pale: rgba(0, 82, 255, 0.06);
  --bg-dark: #08090f;
  --sur: rgba(255, 255, 255, 0.03);
  --sur2: rgba(255, 255, 255, 0.055);
  --bd: rgba(255, 255, 255, 0.08);
  --bd2: rgba(255, 255, 255, 0.15);
  --w: #fff;
  --t1: #eef0fa;
  --t2: #7e89b0;
  --t3: #3a4462;
  --lt: #ffffff;
  --cb: #dde3f2;
  --td: #0a0e28;
  --tm: #60688a;
  --fh: 'Sora', -apple-system, sans-serif;
  --fb: 'Plus Jakarta Sans', sans-serif;
}

body {
  background: var(--bg-dark);

}
.h-h1{
    color:#fff!important;
}

/* PAGE */
.page {
  min-height: 100vh;
  padding-top: 62px;
  display: flex;
}

/* LEFT */
.left {
  width: 50%;
  min-height: calc(100vh - 62px);
  position: sticky;
  top: 62px;
  height: calc(100vh - 62px);
  background: var(--bg-dark);
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--bd);
}
.left::-webkit-scrollbar {
  width: 0;
}
.lgrid {
  position: fixed;
  top: 62px;
  left: 0;
  width: 50%;
  height: calc(100vh - 62px);
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.019) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.019) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 85% 75% at 35% 50%, black 0%, transparent 70%);
}
.lglow {
  position: fixed;
  top: 62px;
  left: 0;
  width: 50%;
  height: calc(100vh - 62px);
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 65% 45% at 8% 15%, rgba(0, 82, 255, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 45% 35% at 92% 88%, rgba(0, 40, 200, 0.07) 0%, transparent 50%);
}
.lc {
  position: relative;
  z-index: 1;
  padding: 52px 56px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(0, 82, 255, 0.1);
  border: 1px solid rgba(0, 82, 255, 0.28);
  border-radius: 100px;
  padding: 6px 16px 6px 10px;
  margin-bottom: 26px;
  width: fit-content;
}
.bdot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 8px var(--blue);
  animation: blink 2.2s ease-in-out infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 8px var(--blue);
  }
  50% {
    opacity: 0.4;
    box-shadow: 0 0 18px var(--blue);
  }
}
.badge span {
  font-size: 10.5px;
  font-weight: 700;
  color: #6fa8ff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hl {
  font-family: var(--fh);
  font-size: clamp(26px, 2.6vw, 44px);
  font-weight: 900;
  line-height: 1.07;
  letter-spacing: -0.045em;
  color: var(--w);
  margin-bottom: 10px;
}
.hl em {
  font-style: normal;
  color: var(--blue);
}
.hl-sub {
  font-size: 14px;
  color: var(--t2);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 360px;
}

/* Metrics row */
.mrow {
  display: flex;
  gap: 10px;
  margin-bottom: 32px;
}
.met {
  flex: 1;
  padding: 14px 12px;
  background: var(--sur);
  border: 1px solid var(--bd);
  border-radius: 13px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  transition:
    border-color 0.25s,
    background 0.25s;
}
.met:hover {
  border-color: rgba(0, 82, 255, 0.22);
  background: rgba(0, 82, 255, 0.05);
}
.mv {
  font-family: var(--fh);
  font-size: 22px;
  font-weight: 800;
  color: var(--w);
  letter-spacing: -0.04em;
  line-height: 1;
}
.mv span {
  color: var(--blue);
}
.ml {
  font-size: 10.5px;
  font-weight: 500;
  color: var(--t2);
  line-height: 1.35;
  margin-top: 2px;
}

/* Diff cards */
.dcards {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 32px;
}
.dc {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 14px 16px;
  background: var(--sur);
  border: 1px solid var(--bd);
  border-radius: 13px;
  transition:
    border-color 0.3s,
    background 0.3s,
    transform 0.3s;
  cursor: default;
}
.dc:hover {
  border-color: rgba(0, 82, 255, 0.25);
  background: rgba(0, 82, 255, 0.04);
  transform: translateX(4px);
}
.dci {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  background: rgba(0, 82, 255, 0.1);
  border: 1px solid rgba(0, 82, 255, 0.22);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dci svg {
  width: 15px;
  height: 15px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.dcb {
  flex: 1;
}
.dcbad {
  font-size: 11px;
  font-weight: 500;
  color: var(--t3);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}
.dcbad::before {
  content: '';
  width: 12px;
  height: 1.5px;
  background: var(--t3);
  flex-shrink: 0;
}
.dcgood {
  font-size: 13px;
  font-weight: 600;
  color: var(--t1);
  line-height: 1.4;
}
.dcgood b {
  color: #7ab8ff;
  font-weight: 700;
}

/* VS bars */
.vssec {
  position: relative;
  margin-bottom: 32px;
  background: var(--sur);
  border: 1px solid var(--bd);
  border-radius: 15px;
  overflow: hidden;
  padding: 20px 18px 18px;
}
.vstitle {
  font-size: 10px;
  font-weight: 700;
  color: var(--t3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.vsbars {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vsrow {
}
.vslr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}
.vslbl {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--t2);
}
.vsvals {
  display: flex;
  align-items: center;
  gap: 10px;
}
.vsthem {
  font-size: 11px;
  font-weight: 600;
  color: var(--t3);
}
.vsus {
  font-size: 11px;
  font-weight: 700;
  color: #7ab8ff;
}
.bt {
  height: 7px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  position: relative;
}
.bft {
  height: 100%;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.14);
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.bfu {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, #0052ff, #60a5fa);
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
  box-shadow: 0 0 10px rgba(0, 82, 255, 0.55);
}

/* Partners */
.pts {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
  padding-top: 22px;
  border-top: 1px solid var(--bd);
}
.ptlbl {
  font-size: 10px;
  font-weight: 700;
  color: var(--t3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-right: 2px;
}
.pb {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--bd);
  border-radius: 8px;
}
.pb svg {
  width: 14px;
  height: 14px;
}
.pb span {
  font-size: 11px;
  font-weight: 600;
  color: var(--t2);
}

/* RIGHT */
.right {
  width: 50%;
  min-height: calc(100vh - 62px);
  background: var(--lt);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.right::-webkit-scrollbar {
  width: 4px;
}
.right::-webkit-scrollbar-thumb {
  background: #c8d0ea;
  border-radius: 10px;
}
.accline {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--blue) 30%, var(--blue) 70%, transparent);
  flex-shrink: 0;
}
.fw {
  flex: 1;
  padding: 48px 52px;
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

/* Progress */
.ptrack {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.sdot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fh);
  font-size: 12px;
  font-weight: 700;
  border: 2px solid #cdd4ee;
  color: #9aa4c4;
  background: white;
  flex-shrink: 0;
  transition: all 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
}
.sdot.act {
  border-color: var(--blue);
  background: var(--blue);
  color: white;
  box-shadow:
    0 0 0 5px rgba(0, 82, 255, 0.12),
    0 4px 18px rgba(0, 82, 255, 0.32);
}
.sdot.dn {
  border-color: var(--blue);
  background: var(--blue);
  color: white;
}
.sln {
  flex: 1;
  height: 2px;
  background: #cdd4ee;
  transition: background 0.4s ease;
}
.sln.dn {
  background: var(--blue);
}
.slbls {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
.sl {
  font-size: 11px;
  font-weight: 500;
  color: #9aa4c4;
  font-family: var(--fb);
  transition: color 0.2s;
}
.sl.act {
  color: var(--blue);
  font-weight: 700;
}

/* Step panels */
.sp {
  display: none;
  flex-direction: column;
  gap: 25px;
  animation: sfin 0.3s ease;
}
.sp.on {
  display: flex;
}
@keyframes sfin {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.sttl {
  font-family: var(--fh);
  font-size: 21px;
  font-weight: 800;
  color: var(--td);
  letter-spacing: -0.035em;
  line-height: 1.22;
}
.ssub {
  font-size: 13.5px;
  color: var(--tm);
  line-height: 1.7;
  margin-top: 5px;
  font-family: var(--fb);
}
.flbl {
  font-size: 10.5px;
  font-weight: 700;
  color: #28326a;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 11px;
  font-family: var(--fb);
}

/* Svc grid */
.sgrid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
.svci {
  display: none;
}
.scard {
  position: relative;
  padding: 17px 15px 14px;
  background: white;
  border: 1.5px solid var(--cb);
  border-radius: 13px;
  cursor: pointer;
  user-select: none;
  transition:
    border-color 0.22s,
    transform 0.28s cubic-bezier(0.34, 1.4, 0.64, 1),
    box-shadow 0.22s,
    background 0.2s;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.scard:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0, 82, 255, 0.09);
}
.svci:checked + .scard {
  border-color: var(--blue);
  background: rgba(0, 82, 255, 0.03);
  transform: translateY(-3px);
  box-shadow:
    0 0 0 4px rgba(0, 82, 255, 0.09),
    0 10px 28px rgba(0, 82, 255, 0.12);
}
.sck {
  position: absolute!important;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.3);
  transition:
    opacity 0.22s,
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.svci:checked + .scard .sck {
  opacity: 1;
  transform: scale(1);
}
.sck svg {
  width: 10px;
  height: 10px;
  stroke: white;
  fill: none;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.sico {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(0, 82, 255, 0.07);
  border: 1px solid rgba(0, 82, 255, 0.13);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.svci:checked + .scard .sico {
  background: rgba(0, 82, 255, 0.14);
}
.sico i {
  width: 18px;
  height: 18px;
  color: var(--blue);

}
.snm {
  font-family: var(--fh);
  font-size: 13px;
  font-weight: 700;
  color: #141b45;
  line-height: 1.2;
}
.sds {
  font-size: 11.5px;
  color: #9aa4c4;
  line-height: 1.4;
  font-family: var(--fb);
}

/* Inputs */
.igrp {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.ifi {
  position: relative;
}
.ifi input {
  width: 100%;
  padding: 20px 16px 8px;
  font-family: var(--fb);
  font-size: 14px;
  font-weight: 500;
  color: var(--td);
  background: white;
  border: 1.5px solid var(--cb);
  border-radius: 12px;
  outline: none;
  -webkit-appearance: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    background 0.2s;
}
.ifi input::placeholder {
  color: transparent;
}
.ifi label {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  font-size: 14px;
  font-weight: 400;
  color: #9aa4c4;
  pointer-events: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: var(--fb);
}
.ifi input:focus ~ label,
.ifi input:not(:placeholder-shown) ~ label {
  top: 9px;
  transform: none;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
}
.ifi input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 82, 255, 0.08);
  background: #fafbff;
}
.ifi input.err {
  border-color: #e8394a;
  box-shadow: 0 0 0 4px rgba(232, 57, 74, 0.08);
}
.emsg {
  display: none;
  font-size: 11px;
  color: #e8394a;
  font-weight: 600;
  margin-top: 5px;
  font-family: var(--fb);
}
.ifi input.err ~ .emsg {
  display: block;
}

/* Textarea */
.taf {
  position: relative;
}
.taf textarea {
  width: 100%;
  padding: 20px 16px 12px;
  font-family: var(--fb);
  font-size: 14px;
  color: var(--td);
  line-height: 1.6;
  background: white;
  border: 1.5px solid var(--cb);
  border-radius: 12px;
  outline: none;
  resize: none;
  height: 100px;
  -webkit-appearance: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.taf textarea::placeholder {
  color: transparent;
}
.taf label {
  position: absolute;
  top: 20px;
  left: 16px;
  font-size: 14px;
  color: #9aa4c4;
  pointer-events: none;
  transition: all 0.2s;
  font-family: var(--fb);
}
.taf textarea:focus ~ label,
.taf textarea:not(:placeholder-shown) ~ label {
  top: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
}
.taf textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 82, 255, 0.08);
}

/* Budget pills */
.bpills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.bri {
  display: none;
}
.bpill {
  padding: 11px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--cb);
  background: white;
  font-family: var(--fb);
  font-size: 13px;
  font-weight: 600;
  color: #4a5278;
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
}
.bpill:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(0, 82, 255, 0.03);
}
.bri:checked + .bpill {
  border-color: var(--blue);
  background: var(--blue);
  color: white;
  box-shadow: 0 4px 18px rgba(0, 82, 255, 0.32);
}

.btnback {
  padding: 14px 20px;
  border-radius: 11px;
  border: 1.5px solid var(--cb);
  background: white;
  font-family: var(--fb);
  font-size: 13.5px;
  font-weight: 600;
  color: #4a5278;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}
.btnback:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.btnsub {
  width: 100%;
  padding: 18px 24px;
  border-radius: 13px;
  border: none;
  background: var(--blue);
  color: white;
  font-family: var(--fh);
  font-size: 15.5px;
  font-weight: 800;
  letter-spacing: -0.02em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: all 0.28s ease;
}
.btnsub::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.25s;
}
.btnsub:hover {
  background: var(--blue-h);
  transform: translateY(-2px);
  box-shadow: 0 10px 48px var(--blue-glow);
}
.btnsub:hover::before {
  opacity: 1;
}
.btnsub:active {
  transform: translateY(0);
}
.btnsub:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.spin {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  animation: sp 0.7s linear infinite;
  display: none;
}
@keyframes sp {
  to {
    transform: rotate(360deg);
  }
}
.snav {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 2px;
}
.bnote {
  text-align: center;
  font-size: 12px;
  color: #b0bace;
  margin-top: 11px;
  font-family: var(--fb);
}
.bnote strong {
  color: #7a84a8;
}

/* Summary box */
.sumbox {
  background: #f4f6fd;
  border: 1.5px solid #e0e6f6;
  border-radius: 12px;
  padding: 15px 17px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.srow {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}
.slbl2 {
  font-size: 11.5px;
  font-weight: 500;
  color: #8090b8;
  font-family: var(--fb);
}
.sval {
  font-size: 13px;
  font-weight: 700;
  color: var(--td);
  font-family: var(--fb);
  text-align: right;
}
.stags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: flex-end;
}
.stag {
  font-size: 11px;
  font-weight: 600;
  color: var(--blue);
  background: rgba(0, 82, 255, 0.08);
  padding: 3px 10px;
  border-radius: 100px;
  font-family: var(--fb);
}

/* Error hints */
.ehint {
  display: none;
  font-size: 12px;
  color: #e8394a;
  font-weight: 600;
  margin-top: 6px;
  font-family: var(--fb);
}
.ehint.on {
  display: block;
}

/* Success */
#succ {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px 40px;
  gap: 20px;
  flex: 1;
  animation: sfin 0.5s ease;
}
.sring {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0052ff, #4d8fff);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 60px rgba(0, 82, 255, 0.45);
  animation: pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes pop {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.sring svg {
  width: 36px;
  height: 36px;
  stroke: white;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.sttlg {
  font-family: var(--fh);
  font-size: 26px;
  font-weight: 800;
  color: var(--td);
  letter-spacing: -0.035em;
}
.ssucc {
  font-size: 14.5px;
  color: #6a74a0;
  line-height: 1.8;
  max-width: 340px;
  font-family: var(--fb);
}
.ssucc b {
  color: var(--td);
}
.smeta {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.sm {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 16px;
  background: #f4f6fd;
  border: 1px solid #e0e6f6;
  border-radius: 10px;
}
.sm svg {
  width: 14px;
  height: 14px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.sm span {
  font-size: 12.5px;
  font-weight: 600;
  color: #4a5278;
  font-family: var(--fb);
}
.sbtn {
  margin-top: 6px;
  padding: 13px 28px;
  border-radius: 10px;
  border: 1.5px solid var(--cb);
  background: white;
  font-family: var(--fb);
  font-size: 13px;
  font-weight: 600;
  color: #4a5278;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}
.sbtn:hover {
  border-color: var(--blue);
  color: var(--blue);
}

/* ══ TRUST SECTION ══ */
.tsec {
  width: 100%;
  background: var(--bg-dark);
  border-top: 1px solid var(--bd);
  position: relative;
  overflow: hidden;
  padding: 88px 0 100px;
}
.tsec::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 55% at 50% 0%, rgba(0, 82, 255, 0.11) 0%, transparent 58%);
}
.tsec::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.016) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.016) 1px, transparent 1px);
  background-size: 56px 56px;
}

.tin {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0;
}

.thead {
  text-align: center;
  margin-bottom: 64px;
}
.tbadge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(0, 82, 255, 0.1);
  border: 1px solid rgba(0, 82, 255, 0.28);
  border-radius: 100px;
  padding: 6px 16px 6px 10px;
  margin-bottom: 20px;
}
.tbadge span {
  font-size: 10.5px;
  font-weight: 700;
  color: #6fa8ff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.ttl {
  font-family: var(--fh);
  font-size: clamp(28px, 3vw, 50px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--w);
  line-height: 1.07;
  margin-bottom: 14px;
}
.ttl em {
  font-style: normal;
  color: var(--blue);
}
.tdesc {
  font-size: 15px;
  color: var(--t2);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto;
}

/* Counter grid */
.cgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 68px;
}
.mc {
  padding: 26px 20px;
  background: var(--sur);
  border: 1px solid var(--bd);
  border-radius: 18px;
  text-align: center;
  transition:
    border-color 0.3s,
    background 0.3s,
    transform 0.3s;
}
.mc:hover {
  border-color: rgba(0, 82, 255, 0.3);
  background: rgba(0, 82, 255, 0.05);
  transform: translateY(-4px);
}
.mcn {
  font-family: var(--fh);
  font-size: 36px;
  font-weight: 900;
  color: var(--w);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 6px;
}
.mcn span {
  color: var(--blue);
}
.mcl {
    width:100%!important;
  font-size: 12px;
  font-weight: 500;
  color: var(--t2);
  line-height: 1.4;
}

/* Bar comparison */
.barsec {
  margin-bottom: 68px;
}
.bartitle {
  font-family: var(--fh);
  font-size: 19px;
  font-weight: 700;
  color: var(--w);
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  text-align: center;
}
.brows {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}
.brow-h {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.brow-lbl {
  font-size: 13px;
  font-weight: 600;
  color: var(--t1);
}
.brow-nums {
  display: flex;
  align-items: center;
  gap: 16px;
}
.brow-them {
  font-size: 12px;
  color: var(--t3);
  font-weight: 600;
}
.brow-us {
  font-size: 12px;
  color: #60a5fa;
  font-weight: 700;
}
.btrack {
  height: 10px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 100px;
  position: relative;
  overflow: hidden;
}
.bfbg {
  height: 100%;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.13);
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.bf {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, #0052ff, #60a5fa);
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
  box-shadow: 0 0 12px rgba(0, 82, 255, 0.6);
}

/* Compare table */
.cmpw {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 68px;
}
.ccol {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--bd);
}
.ccol.them {
  background: rgba(255, 255, 255, 0.015);
}
.ccol.us {
  background: rgba(0, 82, 255, 0.06);
  border-color: rgba(0, 82, 255, 0.3);
  box-shadow:
    0 0 40px rgba(0, 82, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.chdr {
  padding: 20px 22px;
  border-bottom: 1px solid var(--bd);
  display: flex;
  align-items: center;
  gap: 12px;
}
.ccol.us .chdr {
  border-bottom-color: rgba(0, 82, 255, 0.2);
}
.chico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ccol.them .chico {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.ccol.us .chico {
  background: rgba(0, 82, 255, 0.2);
  border: 1px solid rgba(0, 82, 255, 0.3);
}
.chico svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ccol.them .chico svg {
  stroke: var(--t2);
}
.ccol.us .chico svg {
  stroke: var(--blue);
}
.chname {
  font-family: var(--fh);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}
.ccol.them .chname {
  color: var(--t2);
}
.ccol.us .chname {
  color: var(--w);
}
.chsub {
  font-size: 11px;
  color: var(--t3);
  margin-top: 2px;
}
.ccol.us .chsub {
  color: #6fa8ff;
}
.citems {
  padding: 6px 0;
}
.ci {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.2s;
}
.ccol.us .ci {
  border-bottom-color: rgba(0, 82, 255, 0.1);
}
.ci:last-child {
  border-bottom: none;
}
.ci:hover {
  background: rgba(255, 255, 255, 0.025);
}
.ccol.us .ci:hover {
  background: rgba(0, 82, 255, 0.04);
}
.cico {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ccol.them .cico {
  background: rgba(255, 59, 92, 0.1);
}
.ccol.us .cico {
  background: rgba(0, 82, 255, 0.15);
}
.cico svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ccol.them .cico svg {
  stroke: #e8394a;
}
.ccol.us .cico svg {
  stroke: #60a5fa;
}
.citxt {
  font-size: 13px;
  font-weight: 500;
  color: var(--t2);
  line-height: 1.4;
}
.ccol.us .citxt {
  color: var(--t1);
}
.ccol.us .citxt b {
  color: var(--w);
}



/* Responsive */
@media (max-width: 1000px) {
  .page {
    flex-direction: column;
  }
  .left {
    width: 100%;
    position: relative;
    top: 0;
    height: auto;
    min-height: auto;
  }
  .lgrid,
  .lglow {
    display: none;
  }
  .right {
    width: 100%;
  }
  .cgrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cmpw {
    grid-template-columns: 1fr;
  }
  .tin {
    padding: 0 28px;
  }
}
@media (max-width: 660px) {
  .lc {
    padding: 36px 22px;
  }
  .fw {
    padding: 36px 18px;
  }
  .sgrid {
    grid-template-columns: 1fr;
  }
  .cgrid {
    grid-template-columns: repeat(2, 1fr);
  }
}
