@charset "UTF-8";

/* src/styles.scss */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --navy:#0B1D3A;
  --navy2:#162B55;
  --navy3:#1E3A6E;
  --blue:#1A52B0;
  --blue2:#2E6FD4;
  --blue3:#5B9CF5;
  --bp:#EBF3FF;
  --bp2:#D4E8FF;
  --bp3:#F0F7FF;
  --white:#FFFFFF;
  --gray0:#F8FAFF;
  --gray1:#F0F4FF;
  --gray2:#E2E8F5;
  --gray3:#C5D0E8;
  --gray4:#8A96B0;
  --gray5:#4A5672;
  --gray6:#1A2340;
  --gold:#C8921A;
  --gold2:#E6B040;
  --gold3:#FDF3E0;
  --green:#059669;
  --green2:#D1FAE5;
  --red:#DC2626;
  --red2:#FEE2E2;
  --fd:"Playfair Display",Georgia,serif;
  --fb:"Inter",system-ui,sans-serif;
  --ease:cubic-bezier(.22,1,.36,1);
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--fb);
  background: var(--white);
  color: var(--navy);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  font-family: var(--fb);
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes ring {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}
@keyframes draw {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes shimmer {
  0% {
    background-position: 200% center;
  }
  100% {
    background-position: -200% center;
  }
}
@keyframes countUp {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes morphBg {
  0%, 100% {
    border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  }
  50% {
    border-radius: 30% 60% 70% 40%/50% 60% 30% 60%;
  }
}
.a1 {
  animation: fadeUp 0.65s var(--ease) both;
}
.a2 {
  animation: fadeUp 0.65s var(--ease) 0.1s both;
}
.a3 {
  animation: fadeUp 0.65s var(--ease) 0.2s both;
}
.a4 {
  animation: fadeUp 0.65s var(--ease) 0.3s both;
}
.a5 {
  animation: fadeUp 0.65s var(--ease) 0.4s both;
}
.rv {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.rv.vis {
  opacity: 1;
  transform: translateY(0);
}
.rv.d1 {
  transition-delay: 0.08s;
}
.rv.d2 {
  transition-delay: 0.16s;
}
.rv.d3 {
  transition-delay: 0.24s;
}
.rv.d4 {
  transition-delay: 0.32s;
}
#chrome {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--navy);
  border-bottom: 1px solid rgba(91, 156, 245, 0.2);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 6px 16px;
  gap: 3px;
}
.cb {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--blue3);
  text-transform: uppercase;
  padding-right: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  margin-right: 6px;
  white-space: nowrap;
}
.ct {
  padding: 4px 11px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.45);
  background: transparent;
  border: none;
  transition: all 0.18s;
  white-space: nowrap;
  font-family: var(--fb);
}
.ct:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}
.ct.on {
  background: var(--blue2);
  color: var(--white);
  font-weight: 600;
}
.pg {
  display: none;
  padding-top: 38px;
}
.pg.on {
  display: block;
}
.snav {
  position: sticky;
  top: 38px;
  z-index: 500;
  height: 68px;
  padding: 0 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.97);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray2);
  box-shadow: 0 1px 12px rgba(11, 29, 58, 0.06);
}
.snav-logo img {
  height: 40px;
}
.nl {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nl > li {
  position: relative;
}
.nl a,
.nl > li > span {
  color: var(--gray5);
  font-size: 13.5px;
  font-weight: 500;
  padding: 6px 13px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  transition: color 0.18s, background 0.18s;
  white-space: nowrap;
}
.nl a:hover,
.nl > li > span:hover {
  color: var(--blue);
  background: var(--bp3);
}
.nl .arr {
  font-size: 9px;
  opacity: 0.5;
  transition: transform 0.2s;
}
.nl li:hover .arr {
  transform: rotate(180deg);
}
.dd {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray2);
  border-radius: 12px;
  min-width: 220px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.2s var(--ease);
  box-shadow: 0 12px 40px rgba(11, 29, 58, 0.12);
  z-index: 600;
}
.dd.wide {
  min-width: 280px;
  columns: 2;
  column-gap: 0;
}
.nl li:hover .dd {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dd a {
  display: block;
  padding: 9px 18px;
  font-size: 13px;
  color: var(--gray5);
  transition: color 0.15s, background 0.15s;
  break-inside: avoid;
}
.dd a:hover {
  color: var(--blue);
  background: var(--bp3);
}
.nr {
  display: flex;
  align-items: center;
  gap: 10px;
}
.n-phone {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gray4);
  padding: 0 14px;
  border-right: 1px solid var(--gray2);
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--fb);
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.btn-ghost {
  padding: 8px 18px;
  border: 1.5px solid var(--gray2);
  border-radius: 7px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray5);
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--blue2);
  color: var(--blue);
}
.btn-primary {
  padding: 9px 22px;
  background: var(--blue);
  border: none;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  box-shadow: 0 2px 12px rgba(26, 82, 176, 0.25);
}
.btn-primary:hover {
  background: var(--blue2);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(26, 82, 176, 0.35);
}
.btn-xl {
  padding: 16px 40px;
  background: var(--blue);
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  box-shadow: 0 4px 24px rgba(26, 82, 176, 0.3);
  letter-spacing: 0.01em;
}
.btn-xl:hover {
  background: var(--blue2);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(26, 82, 176, 0.4);
}
.btn-outline {
  padding: 15px 36px;
  border: 2px solid var(--navy);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  background: transparent;
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-white {
  padding: 15px 32px;
  background: var(--white);
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.btn-white-outline {
  padding: 15px 32px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  background: transparent;
}
.btn-white-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}
.ticker {
  background: var(--navy);
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 9px 0;
}
.ticker-t {
  display: inline-flex;
  animation: ticker 28s linear infinite;
}
.ti {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}
.ti-r {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue3);
}
.ti-up {
  font-size: 11px;
  color: var(--green);
}
.hero {
  background:
    linear-gradient(
      135deg,
      #F0F5FF 0%,
      #FAFCFF 40%,
      #E8F2FF 100%);
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero-orb1 {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(26, 82, 176, 0.08) 0%,
      transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}
.hero-orb2 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(26, 82, 176, 0.05) 0%,
      transparent 70%);
  bottom: -50px;
  left: 100px;
  pointer-events: none;
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 82, 176, 0.04) 1px, transparent 1px),
    linear-gradient(
      90deg,
      rgba(26, 82, 176, 0.04) 1px,
      transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-l {
  padding: 80px 56px 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.h-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bp);
  border: 1.5px solid var(--bp2);
  border-radius: 20px;
  padding: 5px 14px;
  margin-bottom: 28px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  width: fit-content;
}
.ldot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  position: relative;
  flex-shrink: 0;
}
.ldot::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid var(--green);
  animation: ring 1.8s ease-out infinite;
}
.hero h1 {
  font-family: var(--fd);
  font-size: 62px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.06;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}
.hero h1 .hl {
  display: block;
  overflow: hidden;
}
.hero h1 .hli {
  display: block;
  animation: fadeUp 0.75s var(--ease) both;
}
.hero h1 .hli:nth-child(1) {
  animation-delay: 0.05s;
}
.hero h1 .hli:nth-child(2) {
  animation-delay: 0.18s;
}
.hero h1 .hli:nth-child(3) {
  animation-delay: 0.3s;
}
.hero h1 em {
  font-style: italic;
  background:
    linear-gradient(
      135deg,
      var(--blue),
      var(--blue2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--gray5);
  max-width: 460px;
  margin-bottom: 36px;
}
.hero-btns {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--gray2);
}
.ht-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--gray4);
}
.ht-item strong {
  color: var(--navy);
  font-weight: 600;
}
.ht-div {
  width: 1px;
  height: 20px;
  background: var(--gray2);
}
.hero-r {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 60px 60px 40px;
  position: relative;
  z-index: 1;
}
.hcw {
  position: relative;
  width: 100%;
  max-width: 400px;
}
.rcard {
  background: var(--white);
  border: 1px solid var(--gray2);
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 20px 60px rgba(11, 29, 58, 0.1), 0 4px 16px rgba(11, 29, 58, 0.06);
  animation: fadeUp 0.75s var(--ease) 0.35s both;
  position: relative;
  z-index: 2;
}
.rc-lbl {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.rc-lbl::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}
.rc-big {
  display: flex;
  align-items: flex-start;
  gap: 2px;
  margin-bottom: 5px;
}
.rc-num {
  font-family: var(--fd);
  font-size: 72px;
  font-weight: 400;
  color: var(--navy);
  line-height: 0.95;
}
.rc-pct {
  font-family: var(--fd);
  font-size: 28px;
  color: var(--blue);
  margin-top: 14px;
  font-weight: 500;
}
.rc-desc {
  font-size: 12.5px;
  color: var(--gray4);
  margin-bottom: 24px;
}
.rc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 24px;
}
.rc-chip {
  background: var(--gray0);
  border: 1px solid var(--gray2);
  border-radius: 9px;
  padding: 11px 13px;
  transition: all 0.2s;
}
.rc-chip:hover {
  border-color: var(--blue2);
  background: var(--bp3);
}
.rc-ct {
  font-size: 10.5px;
  color: var(--gray4);
  margin-bottom: 3px;
}
.rc-cv {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}
.rc-btn {
  width: 100%;
  padding: 14px;
  background: var(--blue);
  border: none;
  border-radius: 10px;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(26, 82, 176, 0.3);
  transition: all 0.25s;
  letter-spacing: 0.01em;
}
.rc-btn:hover {
  background: var(--blue2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 82, 176, 0.4);
}
.fc {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--gray2);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(11, 29, 58, 0.1);
}
.fc1 {
  top: -22px;
  right: -32px;
  min-width: 170px;
  animation: float 4s ease-in-out infinite;
  z-index: 3;
}
.fc2 {
  bottom: -24px;
  left: -28px;
  min-width: 155px;
  animation: float 4s ease-in-out 1.5s infinite;
  z-index: 3;
}
.fc-l {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray4);
  margin-bottom: 4px;
}
.fc-v {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
}
.fc-v.g {
  color: var(--green);
}
.fc-v.b {
  color: var(--blue);
}
.fc-s {
  font-size: 10.5px;
  color: var(--gray4);
  margin-top: 2px;
}
.rbar {
  background: var(--navy);
  padding: 18px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.rbar-l {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  white-space: nowrap;
}
.rbar-items {
  display: flex;
  align-items: center;
  gap: 28px;
}
.ri {
  text-align: center;
}
.ri-t {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.ri-r {
  font-family: var(--fd);
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
}
.ri-a {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 1px;
}
.ri-div {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
}
.proc-sec {
  background: var(--gray0);
  padding: 72px 56px;
  border-top: 1px solid var(--gray2);
  border-bottom: 1px solid var(--gray2);
}
.proc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.proc-line {
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1.5px;
  background: var(--gray2);
}
.proc-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      var(--blue),
      var(--blue3));
  animation: draw 1.4s var(--ease) 0.6s both;
}
.ps {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.ps-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--blue2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-family: var(--fd);
  font-size: 20px;
  font-weight: 500;
  color: var(--blue);
  box-shadow: 0 4px 16px rgba(26, 82, 176, 0.15);
  transition: all 0.3s;
}
.ps:hover .ps-num {
  background: var(--blue);
  color: var(--white);
  transform: scale(1.08);
}
.ps-t {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.ps-d {
  font-size: 13px;
  color: var(--gray4);
  line-height: 1.6;
}
.sec {
  padding: 96px 56px;
}
.sec.bg-light {
  background: var(--gray0);
}
.sec.bg-blue {
  background: var(--navy);
}
.stag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.stag::before {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}
.sh1 {
  font-family: var(--fd);
  font-size: 46px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.sh1 em {
  font-style: italic;
  background:
    linear-gradient(
      135deg,
      var(--blue),
      var(--blue2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ssub {
  font-size: 16px;
  color: var(--gray5);
  line-height: 1.75;
  max-width: 540px;
  font-weight: 300;
}
.sh-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 56px;
}
.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--navy);
}
.stat-i {
  padding: 48px 36px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}
.stat-i:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.07);
}
.stat-n {
  font-family: var(--fd);
  font-size: 52px;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-n span {
  color: var(--blue3);
}
.stat-l {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.loans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gray2);
  border: 1px solid var(--gray2);
  border-radius: 20px;
  overflow: hidden;
}
.lc {
  background: var(--white);
  padding: 30px 24px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.22s;
}
.lc::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background:
    linear-gradient(
      90deg,
      var(--blue),
      var(--blue3));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.lc:hover {
  background: var(--bp3);
}
.lc:hover::before {
  transform: scaleX(1);
}
.lc-ico {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--bp);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  margin-bottom: 17px;
  transition: transform 0.25s, background 0.25s;
}
.lc:hover .lc-ico {
  transform: scale(1.08);
  background: var(--blue);
  filter: grayscale(0);
}
.lc h3 {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.35;
}
.lc p {
  font-size: 12.5px;
  color: var(--gray5);
  line-height: 1.6;
  margin-bottom: 16px;
}
.lc-link {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.lc-arr {
  transition: transform 0.2s;
}
.lc:hover .lc-arr {
  transform: translateX(4px);
}
.ceo-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.ceo-l {
  background:
    linear-gradient(
      145deg,
      var(--navy2),
      var(--navy));
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 44px 48px;
  position: relative;
  overflow: hidden;
}
.ceo-circ {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  top: 50%;
  left: 50%;
}
.ceo-circ.c1 {
  width: 380px;
  height: 380px;
  transform: translate(-50%, -58%);
}
.ceo-circ.c2 {
  width: 240px;
  height: 240px;
  transform: translate(-50%, -62%);
}
.ceo-av {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -63%);
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(91, 156, 245, 0.1);
  border: 2px solid rgba(91, 156, 245, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ceo-av svg {
  width: 48px;
  height: 48px;
  opacity: 0.3;
}
.ceo-np {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px 20px;
  position: relative;
  z-index: 1;
}
.ceo-nm {
  font-family: var(--fd);
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
}
.ceo-rl {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue3);
  margin-top: 3px;
}
.ceo-r {
  padding: 72px 64px;
  background: var(--gray0);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ceo-qm {
  font-family: var(--fd);
  font-size: 100px;
  line-height: 0.6;
  color: var(--blue2);
  opacity: 0.12;
  margin-bottom: 16px;
  display: block;
}
.ceo-q {
  font-family: var(--fd);
  font-size: 24px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 28px;
}
.ceo-bar {
  width: 40px;
  height: 3px;
  background: var(--blue);
  border-radius: 2px;
  margin-bottom: 14px;
}
.ceo-cr {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray4);
}
.rev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.rcard2 {
  background: var(--white);
  border: 1px solid var(--gray2);
  border-radius: 18px;
  padding: 28px 24px;
  transition:
    border-color 0.22s,
    transform 0.22s,
    box-shadow 0.22s;
  position: relative;
  overflow: hidden;
}
.rcard2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background:
    linear-gradient(
      90deg,
      var(--blue),
      var(--blue3));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.rcard2:hover {
  border-color: var(--bp2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26, 82, 176, 0.1);
}
.rcard2:hover::before {
  transform: scaleX(1);
}
.rv-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
}
.rv-stars span {
  font-size: 14px;
  color: var(--gold);
}
.rv-tx {
  font-size: 14px;
  color: var(--gray6);
  line-height: 1.72;
  margin-bottom: 20px;
  font-style: italic;
}
.rv-ft {
  display: flex;
  align-items: center;
  gap: 11px;
}
.rv-av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bp);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--blue);
  flex-shrink: 0;
}
.rv-nm {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
}
.rv-lc {
  font-size: 11.5px;
  color: var(--gray4);
}
.rv-badge {
  margin-left: auto;
  font-size: 9.5px;
  font-weight: 600;
  color: var(--gray4);
  border: 1px solid var(--gray2);
  border-radius: 10px;
  padding: 3px 9px;
  letter-spacing: 0.04em;
}
.cta-strip {
  background:
    linear-gradient(
      135deg,
      var(--blue) 0%,
      var(--navy2) 100%);
  padding: 80px 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.cta-strip::after {
  content: "";
  position: absolute;
  right: -20px;
  top: -20px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.cta-t {
  font-family: var(--fd);
  font-size: 44px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.1;
}
.cta-sb {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 10px;
  font-weight: 300;
}
.cta-btns {
  display: flex;
  gap: 12px;
  z-index: 1;
  flex-shrink: 0;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.bc {
  background: var(--white);
  border: 1px solid var(--gray2);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.22s;
  cursor: pointer;
}
.bc:hover {
  border-color: var(--bp2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26, 82, 176, 0.1);
}
.bc-img {
  height: 186px;
  background:
    linear-gradient(
      135deg,
      var(--bp) 0%,
      var(--bp2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  position: relative;
  overflow: hidden;
}
.bc-body {
  padding: 22px 20px;
}
.bc-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: var(--blue);
  background: var(--bp);
  border-radius: 12px;
  padding: 3px 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.bc h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 7px;
}
.bc p {
  font-size: 13px;
  color: var(--gray5);
  line-height: 1.65;
  margin-bottom: 13px;
}
.bc-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11.5px;
  color: var(--gray4);
}
.bc-auth {
  display: flex;
  align-items: center;
  gap: 6px;
}
.bc-avsm {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bp);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: var(--blue);
}
footer {
  background: var(--navy);
  padding: 80px 56px 36px;
}
.fg {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 60px;
}
.fl img {
  height: 42px;
  filter: brightness(0) invert(1);
  margin-bottom: 18px;
}
.fa {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.75;
  margin-bottom: 22px;
}
.ft-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.ft-tag {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 5px;
  padding: 4px 10px;
}
.fc3 h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue3);
  margin-bottom: 20px;
}
.fc3 li {
  margin-bottom: 10px;
}
.fc3 a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.38);
  transition: color 0.18s;
}
.fc3 a:hover {
  color: rgba(255, 255, 255, 0.75);
}
.fbot {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 26px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}
.f-legal {
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.18);
  line-height: 1.85;
  max-width: 680px;
}
.fsoc {
  display: flex;
  gap: 9px;
}
.soc {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s;
}
.soc:hover {
  border-color: var(--blue3);
  color: var(--blue3);
  background: rgba(91, 156, 245, 0.1);
}
.pg-hero {
  padding: 80px 56px;
  position: relative;
  overflow: hidden;
}
.pg-hero.light {
  background:
    linear-gradient(
      135deg,
      var(--bp3) 0%,
      var(--gray0) 60%,
      var(--white) 100%);
  border-bottom: 1px solid var(--gray2);
}
.pg-hero.navy {
  background: var(--navy);
}
.pg-hero.blue-grad {
  background:
    linear-gradient(
      135deg,
      var(--blue) 0%,
      var(--navy2) 100%);
}
.hero-blob {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(26, 82, 176, 0.07) 0%,
      transparent 70%);
  right: -100px;
  top: -100px;
  pointer-events: none;
}
.hero-blob2 {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(26, 82, 176, 0.05) 0%,
      transparent 70%);
  left: 10%;
  bottom: -80px;
  pointer-events: none;
}
.ph-tag {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.ph-tag.light-c {
  color: var(--blue3);
}
.ph-h1 {
  font-family: var(--fd);
  font-size: 52px;
  font-weight: 500;
  line-height: 1.09;
  letter-spacing: -0.02em;
}
.ph-h1.dark {
  color: var(--navy);
}
.ph-h1.white {
  color: var(--white);
}
.ph-h1 em {
  font-style: italic;
}
.ph-h1.dark em {
  background:
    linear-gradient(
      135deg,
      var(--blue),
      var(--blue2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ph-h1.white em {
  color: var(--blue3);
  -webkit-text-fill-color: var(--blue3);
}
.ph-sub {
  font-size: 17px;
  line-height: 1.75;
  font-weight: 300;
  margin-top: 14px;
  max-width: 560px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.ph-sub.dark-c {
  color: var(--gray5);
}
.ph-sub.light-c {
  color: rgba(255, 255, 255, 0.55);
}
.flabel {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
  display: block;
  margin-bottom: 6px;
}
.finput {
  padding: 12px 16px;
  border: 1.5px solid var(--gray2);
  border-radius: 10px;
  font-size: 14px;
  font-family: var(--fb);
  color: var(--navy);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.finput:focus {
  border-color: var(--blue2);
  box-shadow: 0 0 0 3px rgba(26, 82, 176, 0.1);
}
.finput::placeholder {
  color: var(--gray4);
}
select.finput {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
textarea.finput {
  resize: vertical;
}
.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.fgrp {
  margin-bottom: 14px;
}
.fsubmit {
  width: 100%;
  padding: 14px;
  background: var(--blue);
  border: none;
  border-radius: 10px;
  color: var(--white);
  font-family: var(--fb);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(26, 82, 176, 0.3);
  transition: all 0.25s;
  margin-top: 6px;
}
.fsubmit:hover {
  background: var(--blue2);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26, 82, 176, 0.4);
}
.fdiscl {
  font-size: 10.5px;
  color: var(--gray4);
  text-align: center;
  margin-top: 11px;
  line-height: 1.65;
}
.prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.pc {
  background: var(--white);
  border: 1px solid var(--gray2);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.25s;
  cursor: pointer;
}
.pc:hover {
  border-color: var(--blue2);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(26, 82, 176, 0.12);
}
.pc-top {
  padding: 28px 24px 22px;
  border-bottom: 1px solid var(--gray1);
}
.pc-ico {
  width: 52px;
  height: 52px;
  background: var(--bp);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
  transition: all 0.25s;
}
.pc:hover .pc-ico {
  background: var(--blue);
  transform: scale(1.06);
}
.pc-top h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
}
.pc-top p {
  font-size: 13px;
  color: var(--gray5);
  line-height: 1.65;
}
.pc-bot {
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pc-hl-l {
  font-size: 10px;
  color: var(--gray4);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.pc-hl-v {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy);
}
.pc-cta {
  padding: 8px 18px;
  background: var(--bp);
  border: none;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  cursor: pointer;
  font-family: var(--fb);
  transition: all 0.2s;
}
.pc:hover .pc-cta {
  background: var(--blue);
  color: var(--white);
}
.job-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.jcard {
  background: var(--white);
  border: 1px solid var(--gray2);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.22s;
}
.jcard:hover {
  border-color: var(--blue2);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(26, 82, 176, 0.09);
}
.j-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: var(--blue);
  background: var(--bp);
  border-radius: 12px;
  padding: 3px 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.jcard h3 {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
}
.jcard p {
  font-size: 13px;
  color: var(--gray5);
  line-height: 1.65;
  margin-bottom: 14px;
}
.j-loc {
  font-size: 12px;
  color: var(--gray4);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 16px;
}
.j-apply {
  padding: 9px 20px;
  background: var(--bp);
  border: none;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--blue);
  cursor: pointer;
  font-family: var(--fb);
  transition: all 0.2s;
}
.jcard:hover .j-apply {
  background: var(--blue);
  color: var(--white);
}
.calc-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  max-width: 1080px;
  margin: 0 auto;
}
.c-inputs {
  background: var(--white);
  border: 1px solid var(--gray2);
  border-radius: 20px;
  padding: 40px;
}
.c-inputs h2 {
  font-family: var(--fd);
  font-size: 28px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 30px;
}
.rg {
  margin-bottom: 26px;
}
.rl-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.rl {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray6);
}
.rv2 {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--blue);
  background: var(--bp);
  padding: 3px 11px;
  border-radius: 10px;
}
input[type=range].rng {
  width: 100%;
  height: 5px;
  appearance: none;
  -webkit-appearance: none;
  background: var(--gray2);
  border-radius: 3px;
  outline: none;
}
input[type=range].rng::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--blue);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 1.5px var(--blue);
  cursor: pointer;
  transition: transform 0.15s;
}
input[type=range].rng::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}
.c-result {
  background: var(--navy);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 48px rgba(11, 29, 58, 0.2);
}
.cr-lbl {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 8px;
}
.cr-main {
  font-family: var(--fd);
  font-size: 70px;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.cr-per {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 30px;
}
.cr-lines {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cr-line {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.cr-ll {
  color: rgba(255, 255, 255, 0.38);
}
.cr-lv {
  font-weight: 600;
  color: var(--white);
}
.cr-lv.hi {
  color: var(--blue3);
}
.calc-tip {
  margin-top: 24px;
  padding: 14px;
  background: rgba(91, 156, 245, 0.1);
  border: 1px solid rgba(91, 156, 245, 0.2);
  border-radius: 10px;
}
.ct-l {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue3);
  margin-bottom: 5px;
}
.ct-t {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.43);
  line-height: 1.65;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
}
.ci-side {
  background:
    linear-gradient(
      145deg,
      var(--navy2),
      var(--navy));
  padding: 80px 52px;
  position: relative;
  overflow: hidden;
}
.ci-side::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 60% at 0% 80%,
      rgba(91, 156, 245, 0.1) 0%,
      transparent 60%);
  pointer-events: none;
}
.ci-side h2 {
  font-family: var(--fd);
  font-size: 44px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 14px;
  position: relative;
}
.ci-side h2 em {
  font-style: italic;
  color: var(--blue3);
}
.ci-side > p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.75;
  margin-bottom: 48px;
  position: relative;
  font-weight: 300;
}
.ci-items {
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.ci-ico {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(91, 156, 245, 0.12);
  border: 1px solid rgba(91, 156, 245, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.ci-ll {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue3);
  margin-bottom: 4px;
}
.ci-vl {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
}
.ci-sl {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.28);
  margin-top: 2px;
}
.cf-side {
  background: var(--gray0);
  padding: 80px 52px;
}
.cf-side h3 {
  font-family: var(--fd);
  font-size: 32px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 6px;
}
.cf-side > p {
  font-size: 14px;
  color: var(--gray5);
  margin-bottom: 28px;
}
.svc-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-bottom: 20px;
}
.svc {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: var(--navy);
  background: var(--white);
  border: 1.5px solid var(--gray2);
  border-radius: 9px;
  padding: 10px 13px;
  cursor: pointer;
  transition: all 0.2s;
}
.svc:hover {
  border-color: var(--blue2);
  background: var(--bp3);
}
.svc input[type=checkbox] {
  accent-color: var(--blue);
  width: 14px;
  height: 14px;
}
.map-box {
  margin-top: 26px;
  border-radius: 14px;
  height: 155px;
  background:
    linear-gradient(
      135deg,
      var(--bp3) 0%,
      var(--bp) 100%);
  border: 1.5px solid var(--gray2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--gray5);
  gap: 8px;
}
.lic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.lc2 {
  background: var(--white);
  border: 1px solid var(--gray2);
  border-radius: 14px;
  padding: 26px 22px;
  transition: all 0.2s;
}
.lc2:hover {
  border-color: var(--blue2);
  box-shadow: 0 4px 16px rgba(26, 82, 176, 0.08);
}
.lc2-state {
  font-family: var(--fd);
  font-size: 30px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 5px;
}
.lc2-id {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
}
.lc2-name {
  font-size: 13px;
  color: var(--gray5);
  margin-top: 3px;
}
.states-viz {
  background: var(--navy);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 52px;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 10px;
}
.st-chip {
  background: rgba(91, 156, 245, 0.12);
  border: 1px solid rgba(91, 156, 245, 0.2);
  border-radius: 9px;
  padding: 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}
.st-chip:hover {
  background: rgba(91, 156, 245, 0.25);
  border-color: var(--blue3);
}
.st-ab {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}
.st-nm {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.04em;
  margin-top: 2px;
}
.fpill {
  padding: 8px 20px;
  border-radius: 20px;
  border: 1.5px solid var(--gray2);
  background: var(--white);
  color: var(--gray5);
  font-size: 13px;
  cursor: pointer;
  font-family: var(--fb);
  font-weight: 500;
  transition: all 0.2s;
}
.fpill:hover {
  border-color: var(--blue2);
  color: var(--blue);
}
.fpill.on {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  font-weight: 700;
}
.fpill-d {
  padding: 8px 20px;
  border-radius: 20px;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  cursor: pointer;
  font-family: var(--fb);
  font-weight: 500;
  transition: all 0.2s;
}
.fpill-d:hover {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}
.fpill-d.on {
  background: var(--blue2);
  border-color: var(--blue2);
  color: var(--white);
  font-weight: 700;
}
.tc {
  text-align: center;
}
.info-box {
  background: var(--bp3);
  border: 1.5px solid var(--bp2);
  border-radius: 14px;
  padding: 22px;
}
.info-box-t {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 9px;
}
.info-box p {
  font-size: 13.5px;
  color: var(--gray6);
  line-height: 1.7;
}
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--gray5);
}
.check-list li::before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bp);
  border: 1.5px solid var(--blue2);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 8l3 3 5-5' stroke='%231A52B0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
  min-width: 20px;
  margin-top: 1px;
}
.badge-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--gray2);
  border-radius: 8px;
  padding: 7px 13px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray5);
}
.badge .bi {
  font-size: 16px;
}
.divider {
  height: 1px;
  background: var(--gray2);
  margin: 8px 0;
}
.notice {
  background: var(--gold3);
  border: 1.5px solid rgba(200, 146, 26, 0.2);
  border-radius: 12px;
  padding: 16px 20px;
}
.notice-t {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 7px;
}
.notice p {
  font-size: 13px;
  color: var(--gray6);
  line-height: 1.65;
}
.hb {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0;
  background: transparent;
  border: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hb span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s;
}
.hb.on span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hb.on span:nth-child(2) {
  opacity: 0;
}
.hb.on span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mob-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 84%;
  max-width: 340px;
  height: 100vh;
  background: var(--white);
  z-index: 9998;
  transform: translateX(100%);
  transition: transform 0.32s var(--ease);
  flex-direction: column;
  padding: 88px 26px 30px;
  box-shadow: -12px 0 48px rgba(11, 29, 58, 0.18);
  overflow-y: auto;
}
.mob-menu.open {
  transform: translateX(0);
}
.mob-menu a {
  display: block;
  font-size: 15px;
  color: var(--navy);
  padding: 13px 0;
  border-bottom: 1px solid var(--gray2);
  font-weight: 500;
  text-decoration: none;
}
.mob-menu a:hover {
  color: var(--blue);
}
.mob-menu .mh-group {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray4);
  margin-top: 22px;
  margin-bottom: 4px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--gray2);
}
.mob-menu .mob-cta {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mob-menu .mob-cta .btn {
  justify-content: center;
  width: 100%;
}
.mob-menu .mob-phone {
  margin-top: 18px;
  font-size: 13px;
  color: var(--gray5);
  text-align: center;
}
.mob-menu .mob-phone strong {
  display: block;
  font-size: 18px;
  color: var(--navy);
  font-family: var(--fd);
  margin-top: 4px;
}
.mob-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11, 29, 58, 0.55);
  z-index: 9997;
}
.mob-overlay.on {
  display: block;
}
@media (max-width: 1024px) {
  .snav {
    padding: 0 24px;
    height: 62px;
  }
  .snav-logo img {
    height: 36px;
  }
  .nl a,
  .nl > li > span {
    font-size: 12.5px;
    padding: 6px 9px;
  }
  .n-phone {
    display: none;
  }
  .nr {
    gap: 8px;
  }
  .btn-ghost {
    padding: 7px 14px;
    font-size: 12px;
  }
  .btn-primary {
    padding: 8px 16px;
    font-size: 12px;
  }
  .rbar {
    padding: 14px 24px;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-start;
  }
  .rbar-items {
    gap: 18px;
    flex-wrap: wrap;
    flex: 1;
  }
  .ri-r {
    font-size: 18px;
  }
  .hero {
    min-height: auto;
  }
  .hero-l {
    padding: 60px 32px 40px;
  }
  .hero-r {
    padding: 0 32px 60px;
  }
  .hero h1 {
    font-size: 48px;
  }
  .hero-sub {
    font-size: 16px;
  }
  .rcard {
    padding: 30px;
    max-width: 100%;
  }
  .rc-num {
    font-size: 62px;
  }
  .fc1 {
    top: -16px;
    right: -12px;
    min-width: 140px;
    padding: 11px 14px;
  }
  .fc2 {
    bottom: -18px;
    left: -12px;
    min-width: 135px;
    padding: 11px 14px;
  }
  .fc-v {
    font-size: 15px;
  }
  .sec {
    padding: 72px 32px;
  }
  .proc-sec {
    padding: 60px 32px;
  }
  .sh1 {
    font-size: 38px;
  }
  .ph-h1 {
    font-size: 42px;
  }
  .pg-hero {
    padding: 64px 32px;
  }
  .cta-strip {
    padding: 60px 32px;
  }
  .cta-t {
    font-size: 34px;
  }
  footer {
    padding: 60px 32px 28px;
  }
  .rbar {
    padding-left: 32px;
    padding-right: 32px;
  }
  .stats-band {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-i {
    padding: 36px 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
  }
  .stat-i:nth-child(2) {
    border-right: none;
  }
  .stat-i:nth-child(3) {
    border-left: 1px solid rgba(255, 255, 255, 0.07);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
  }
  .stat-i:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
  }
  .stat-n {
    font-size: 42px;
  }
  .loans-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .rev-grid,
  .blog-grid,
  .prod-grid,
  .job-grid,
  .lic-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ceo-l {
    min-height: 380px;
    padding: 36px;
  }
  .ceo-r {
    padding: 56px 36px;
  }
  .ceo-q {
    font-size: 21px;
  }
  .ci-side,
  .cf-side {
    padding: 56px 36px;
  }
  .ci-side h2 {
    font-size: 36px;
  }
  .calc-layout {
    gap: 28px;
    padding: 0 8px;
  }
  .c-inputs,
  .c-result {
    padding: 32px;
  }
  .cr-main {
    font-size: 56px;
  }
  .fg {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .states-viz {
    grid-template-columns: repeat(6, 1fr);
    padding: 28px;
    gap: 8px;
  }
  [style*="grid-template-columns:repeat(4"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  [style*="grid-template-columns:repeat(5"] {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
@media (max-width: 768px) {
  #chrome {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 6px 12px;
    scrollbar-width: none;
  }
  #chrome::-webkit-scrollbar {
    display: none;
  }
  .ct {
    font-size: 10.5px;
    padding: 4px 9px;
  }
  .cb {
    font-size: 10px;
    padding-right: 10px;
    margin-right: 5px;
  }
  .pg {
    padding-top: 34px;
  }
  .snav {
    height: 56px;
    padding: 0 16px;
    top: 34px;
  }
  .snav-logo img {
    height: 30px;
  }
  .nl {
    display: none;
  }
  .nr .btn-ghost {
    display: none;
  }
  .nr {
    gap: 8px;
  }
  .btn-primary {
    padding: 7px 12px;
    font-size: 11px;
    border-radius: 6px;
  }
  .hb {
    display: flex;
  }
  .mob-menu {
    display: flex;
  }
  .ticker {
    padding: 8px 0;
  }
  .ti {
    padding: 0 18px;
    font-size: 11px;
    gap: 10px;
  }
  .ti-r {
    font-size: 11.5px;
  }
  .rbar {
    padding: 14px 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .rbar-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 12px;
    width: 100%;
  }
  .ri-div {
    display: none;
  }
  .ri {
    text-align: left;
  }
  .rbar-l {
    font-size: 10px;
    text-align: left;
  }
  .rbar button {
    align-self: flex-start;
  }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-l {
    padding: 44px 20px 0;
    text-align: left;
  }
  .hero h1 {
    font-size: 38px;
    line-height: 1.1;
  }
  .hero-sub {
    font-size: 15px;
    margin-bottom: 26px;
    max-width: none;
    line-height: 1.65;
  }
  .hero-btns {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
  }
  .hero-btns .btn {
    justify-content: center;
    width: 100%;
  }
  .hero-trust {
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
    padding-top: 22px;
  }
  .ht-div {
    display: none;
  }
  .ht-item {
    font-size: 12px;
  }
  .hero-r {
    padding: 44px 20px 56px;
  }
  .hcw {
    max-width: none;
  }
  .rcard {
    padding: 24px;
    border-radius: 18px;
  }
  .rc-num {
    font-size: 54px;
  }
  .rc-pct {
    font-size: 24px;
    margin-top: 11px;
  }
  .fc1 {
    top: -14px;
    right: 6px;
    min-width: auto;
    padding: 9px 13px;
    z-index: 3;
  }
  .fc2 {
    bottom: -14px;
    left: 6px;
    min-width: auto;
    padding: 9px 13px;
    z-index: 3;
  }
  .fc-v {
    font-size: 14px;
  }
  .fc-l {
    font-size: 9.5px;
  }
  .fc-s {
    font-size: 9.5px;
  }
  .proc-sec {
    padding: 48px 20px;
  }
  .proc-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 12px;
  }
  .proc-line {
    display: none;
  }
  .ps-num {
    width: 46px;
    height: 46px;
    font-size: 16px;
    margin-bottom: 12px;
  }
  .ps-t {
    font-size: 13.5px;
  }
  .ps-d {
    font-size: 12px;
  }
  .sec {
    padding: 48px 20px;
  }
  .sh-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 30px;
  }
  .sh1 {
    font-size: 30px;
    line-height: 1.15;
  }
  .ssub {
    font-size: 14.5px;
  }
  .ph-tag {
    font-size: 10px;
  }
  .ph-h1 {
    font-size: 32px;
    text-align: left;
    line-height: 1.12;
  }
  .pg-hero {
    padding: 48px 20px;
  }
  .ph-sub {
    font-size: 15px;
    line-height: 1.7;
  }
  .stag {
    font-size: 10.5px;
  }
  .stats-band {
    grid-template-columns: 1fr 1fr;
  }
  .stat-i {
    padding: 26px 14px;
  }
  .stat-n {
    font-size: 32px;
  }
  .stat-l {
    font-size: 10px;
    letter-spacing: 0.06em;
  }
  .loans-grid {
    grid-template-columns: 1fr;
  }
  .lc {
    padding: 24px 20px;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .tm-top {
    height: 128px;
  }
  .tm-init {
    width: 62px;
    height: 62px;
    font-size: 22px;
    border-width: 2.5px;
  }
  .tm-info {
    padding: 18px 14px;
  }
  .tm-nm {
    font-size: 14px;
  }
  .tm-rl {
    font-size: 10px;
  }
  .rev-grid,
  .blog-grid,
  .prod-grid,
  .job-grid,
  .lic-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .ceo-wrap {
    grid-template-columns: 1fr;
  }
  .ceo-l {
    min-height: 280px;
    padding: 32px 20px;
  }
  .ceo-circ.c1 {
    width: 240px;
    height: 240px;
    transform: translate(-50%, -50%);
  }
  .ceo-circ.c2 {
    width: 160px;
    height: 160px;
    transform: translate(-50%, -55%);
  }
  .ceo-av {
    width: 88px;
    height: 88px;
    transform: translate(-50%, -58%);
  }
  .ceo-av svg {
    width: 36px;
    height: 36px;
  }
  .ceo-r {
    padding: 44px 20px;
  }
  .ceo-qm {
    font-size: 72px;
    margin-bottom: 10px;
  }
  .ceo-q {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 22px;
  }
  .cta-strip {
    grid-template-columns: 1fr;
    padding: 48px 20px;
    text-align: left;
    gap: 24px;
  }
  .cta-strip::before,
  .cta-strip::after {
    display: none;
  }
  .cta-t {
    font-size: 28px;
    line-height: 1.15;
  }
  .cta-sb {
    font-size: 14px;
  }
  .cta-btns {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .cta-btns .btn {
    width: 100%;
    justify-content: center;
  }
  footer {
    padding: 48px 20px 26px;
  }
  .fg {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 34px;
  }
  .fl img {
    height: 36px;
  }
  .fbot {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    text-align: left;
  }
  .fsoc {
    align-self: flex-start;
  }
  .f-legal {
    font-size: 10px;
    text-align: left;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .ci-side,
  .cf-side {
    padding: 48px 20px;
  }
  .ci-side h2 {
    font-size: 28px;
  }
  .cf-side h3 {
    font-size: 24px;
  }
  .ci-side > p {
    font-size: 14px;
    margin-bottom: 32px;
  }
  .svc-checks {
    grid-template-columns: 1fr;
  }
  .map-box {
    height: 140px;
    font-size: 12.5px;
  }
  .calc-layout {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 0;
    max-width: 100%;
  }
  .c-inputs,
  .c-result {
    padding: 24px;
    border-radius: 16px;
  }
  .c-inputs h2 {
    font-size: 22px;
    margin-bottom: 22px;
  }
  .cr-main {
    font-size: 44px;
  }
  .cr-line {
    font-size: 12.5px;
  }
  .frow {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .frow .fgrp {
    margin-bottom: 14px;
  }
  .finput {
    padding: 11px 14px;
    font-size: 16px;
  }
  .fsubmit {
    padding: 13px;
    font-size: 14px;
  }
  .states-viz {
    grid-template-columns: repeat(3, 1fr);
    padding: 18px;
    gap: 8px;
    border-radius: 14px;
  }
  .st-chip {
    padding: 9px 6px;
  }
  .st-ab {
    font-size: 12px;
  }
  .st-nm {
    font-size: 8.5px;
  }
  .btn-xl {
    padding: 14px 22px;
    font-size: 14px;
  }
  .btn-outline {
    padding: 13px 20px;
    font-size: 14px;
  }
  .btn-white,
  .btn-white-outline {
    padding: 13px 22px;
    font-size: 13px;
  }
  [style*="grid-template-columns:repeat(4"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }
  [style*="grid-template-columns:repeat(5"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  [style*="grid-template-columns:repeat(3"] {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  [style*="grid-template-columns:repeat(2"] {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  [style*="grid-template-columns:1.5fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  [style*="grid-template-columns:1fr auto"] {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  [style*="grid-template-columns:auto 1fr auto"] {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  [style*="gap:60px"] {
    gap: 22px !important;
  }
  [style*="gap:64px"] {
    gap: 22px !important;
  }
  [style*="gap:56px"] {
    gap: 22px !important;
  }
  [style*="gap:48px"] {
    gap: 20px !important;
  }
  [style*="gap:44px"] {
    gap: 18px !important;
  }
  [style*="gap:40px"] {
    gap: 18px !important;
  }
  [style*="gap:36px"] {
    gap: 16px !important;
  }
  [style*="gap:32px"] {
    gap: 14px !important;
  }
  [style*="max-width:900px"],
  [style*="max-width:1080px"] {
    max-width: 100% !important;
  }
  input,
  textarea,
  select {
    font-size: 16px;
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .snav {
    padding: 0 14px;
    height: 54px;
  }
  .snav-logo img {
    height: 28px;
  }
  .pg {
    padding-top: 32px;
  }
  .sec,
  .proc-sec,
  .pg-hero,
  footer,
  .ci-side,
  .cf-side {
    padding-left: 16px;
    padding-right: 16px;
  }
  .hero-l {
    padding: 36px 16px 0;
  }
  .hero-r {
    padding: 36px 16px 44px;
  }
  .hero h1 {
    font-size: 32px;
  }
  .hero-sub {
    font-size: 14px;
  }
  .h-badge {
    font-size: 10px;
    padding: 4px 12px;
    margin-bottom: 22px;
  }
  .sh1 {
    font-size: 25px;
  }
  .ph-h1 {
    font-size: 26px;
  }
  .cta-t {
    font-size: 23px;
  }
  .ceo-q {
    font-size: 16px;
  }
  .rc-num {
    font-size: 46px;
  }
  .rc-pct {
    font-size: 22px;
    margin-top: 9px;
  }
  .stat-n {
    font-size: 28px;
  }
  .cr-main {
    font-size: 38px;
  }
  .ci-side h2 {
    font-size: 24px;
  }
  .cf-side h3 {
    font-size: 21px;
  }
  .btn-xl,
  .btn-outline {
    padding: 12px 18px;
    font-size: 13px;
  }
  .fc1,
  .fc2 {
    display: none;
  }
  .proc-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .tm-top {
    height: 140px;
  }
  .states-viz {
    grid-template-columns: repeat(2, 1fr);
    gap: 7px;
  }
  .stat-i {
    padding: 22px 12px;
  }
  .mob-menu {
    padding: 80px 22px 28px;
    width: 88%;
  }
  .mob-menu a {
    font-size: 14.5px;
    padding: 12px 0;
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
