#main{
  font-size: 14px;
}
.dis-f {
    display: flex;
    align-items: center;
    justify-content: flex-start
}

.dis-b {
    display: flex;
    align-items: center;
    justify-content: space-between
}

 .dis-c {
    display: flex;
    align-items: center;
    justify-content: center
}

.dis-e {
    display: flex;
    align-items: center;
    justify-content: flex-end
}
body{
  min-width:1340px;
}
body * {
  box-sizing: border-box;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #475569;
}

.feature-icon {
  height: 16px;
  width: 16px;
  flex-shrink: 0;
  color: #3b82f6;
}

.text-body {
  font-size: 0.875rem;
  line-height: 1.625;
}

.section-subtitle {
  margin-bottom: 8px;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 700;
  color: #1e293b;
}

.text-body-secondary {
  font-size: 0.875rem;
  line-height: 1.625;
  color: #64748b;
}

.container-custom {
  width: 100%;
  margin-inline: auto;
  /* padding-inline: 16px; */
  max-width: 1200px;
  padding-right: 67px;
}

.list-item-body {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.875rem;
  line-height: 1.625;
  color: #64748b;
}

.highlight-amber {
  color: #f59e0b;
}

.link-nav {
  font-size: 0.875rem;
  line-height: 1.25rem;
  --font-weight: 500;
  color: #475569;
  transition-property:
    color, background-color, border-color, outline-color, text-decoration-color,
    fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  font-weight: bold;
  cursor: pointer;
}

.section-header {
  margin-bottom: 48px;
  text-align: center;
}

.section-title {
  margin-bottom: 12px;
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 700;
  color: #0f172a;
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.text-intro {
  margin-inline: auto;
  max-width: 42rem;
  color: #64748b;
}

.card-feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  border-radius: 1rem;
  border-style: solid;
  border-width: 1px;
  border-color: #f1f5f9;
  background-color: #ffffff;
  padding: 24px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  translate: 0 0;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.1);
}


.card-image {
  overflow: hidden;
  border-radius: 1rem;
  background-color: #ffffff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  translate: 0 0;
  border: 1px solid #f6f6f6;
}
.card-image:hover{

  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.flex-center-gap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-circle-white {
  display: flex;
  height: 40px;
  width: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
}

.text-lg-bold {
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 700;
}

.text-white-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.card-padding {
  padding: 24px;
}

.text-white {
  color: #ffffff;
}

.icon-xs-primary {
  height: 20px;
  width: 20px;
}

.color-primary {
  color: #3b82f6;
}

.stat-number {
  display: flex;
  height: 40px;
  width: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border-style: solid;
  border-width: 2px;
  border-color: #ffffff;
  background-image: linear-gradient(
    to bottom right in oklab,
    #dbeafe 0%,
    #bfdbfe 100%
  );

  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 700;
  color: #3b82f6;
}

.grid-2-col {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pain-card {
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
  border-style: solid;
  border-width: 1px;
  border-color: #fef3c7;
  background-color: #ffffff;
  padding: 24px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition-property: box-shadow;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;

}

.pain-card:hover{
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.pain-card-icon {
  margin-bottom: 16px;
  display: flex;
  height: 48px;
  width: 48px;
  align-items: center;
  justify-content: center;
  border-radius: calc(0.5rem + 4px);
  background-color: #fef3c7;
  color: #d97706;
}

.pain-card-title {
  margin-bottom: 16px;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 700;
  line-height: 1.375;
  color: #1e293b;
}

.pain-card-list {
  margin-top: auto;
}

.badge-primary {
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 9999px;
  padding: 5px 17px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
  color: #3b82f6;
  background-color:#e4f0fb
}

.step-detail {
  flex: 1;
  text-align: right;
}

.step-label {
  margin-bottom: 8px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
  color: #3b82f6;
}

.step-divider-icon {
  position: relative;
  z-index: 10;
  display: flex;
  height: 64px;
  width: 64px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  color: #ffffff;
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);
    background: #0072d5;
}

.flex-grow {
  flex: 1;
}

.credibility-row {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #475569;
}

.credibility-icon {
  height: 20px;
  width: 20px;
  color: #3b82f6;
}

.header-brand {
  width: 200px;
  display: flex;
  align-items: center;
}
.header-brand img{
  width: 100%;
}


.hero-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.hero-btn-group2{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}
.hero-btn-group3{
  position: absolute;
  bottom: 20px;
  right: 20px;
}
.section-white {
  background-color: #ffffff;
  padding-block: 64px;
}

.pain-card-alt {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  border-radius: 1rem;
  border-style: solid;
  border-width: 1px;
  border-color: #f1f5f9;
  background-color: #ffffff;
  padding: 30px 24px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition-property: box-shadow;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.pain-card-alt:hover{
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.pain-card-alt-icon {
  display: flex;
  height: 48px;
  width: 48px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: calc(0.5rem + 4px);
  background-color: #dbeafe;
  color: #2563eb;
}

.pain-card-alt-title {
  margin-bottom: 0.25rem;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 700;
  color: #1e293b;
}

.pain-card-alt-desc {
  color: #64748b;
}

.icon-md-primary {
  height: 24px;
  width: 24px;
}

.section-light {
  background-color: #f8fafc;
  padding-block: 80px;
}

.container-wide {
  width: 100%;
  margin-inline: auto;
  max-width: 1200px;
  padding-inline: 16px;
}

.section-white-lg {
  background-color: #ffffff;
  padding-block: 80px;
}

.step-row {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex-direction: row;
}

.step-card {
  border-radius: 1rem;
  border-style: solid;
  border-width: 1px;
  border-color: #f1f5f9;
  background-color: #f8fafc;
  padding: 24px;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.grid-2-col-lg {
  display: grid;
  align-items: center;
  gap: 40px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-wrapper {
  min-height: 100vh;
  background-color: #ffffff;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  --transition-duration: 0.3s;
  transition-duration: 0.3s;
  background-color: #0000;
  display: none;
}

.site-header.nav-scrolled{
background: #ffffff;
display: block;
box-shadow: 0px 0px 20px 0px #d5d5d5;
}
.header-inner {
  width: 100%;
  margin-inline: auto;
  display: flex;
  height: 64px;
  align-items: center;
  justify-content: space-between;
  padding-inline: 16px;
  width: 1340px;
}

.brand-title {
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 700;
  color: #1e293b;
}

.header-nav {
  display: none;
  align-items: center;
  gap: 32px;
  display: flex;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  flex-shrink: 0;
  --outline-style: none;
  outline-style: none;
  height: 36px;
  padding-block: 8px;
  border-radius: 9999px;
  padding-inline: 20px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.1);
  background-color: #0073d5;
  cursor: pointer;
}

.hero-section {
  height: 800px;
  background: url(banner.jpg) no-repeat;
  background-position: top center;
  padding-bottom: 0;
  padding-top: 152px;
}

.hero-blob-tr {
  position: absolute;
  right: calc(0.25rem * -20);
  top: 80px;
  height: 384px;
  width: 384px;
  border-radius: 9999px;
  filter: blur(8px);
}

.hero-blob-bl {
  position: absolute;
  left: calc(0.25rem * -20);
  bottom: 80px;
  height: 320px;
  width: 320px;
  border-radius: 9999px;
  filter: blur(8px);
}

.dot-sm {
  position: absolute;
  height: 16px;
  width: 16px;
  border-radius: 9999px;
}

.dot-xs {
  position: absolute;
  height: 12px;
  width: 12px;
  border-radius: 9999px;
}

.dot-md {
  position: absolute;
  height: 20px;
  width: 20px;
  border-radius: 9999px;
}

.hero-grid {
  width: 1200px;
  margin: 0 auto;
  height: 467px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.hero-btn-primary {
  width: 154px;
  height: 45px;
  background-color: #0073d5;
  border: solid 1px #0073d5;
  border-radius: 23px;
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
  cursor: pointer;
  line-height: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
      transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.hero-btn-primary:hover{
  transform: translateY(-2px);
}
.hero-btn-arrow {
  margin-left: 0.25rem;
  height: 20px;
  width: 20px;
}

.hero-btn-secondary {
  width: 154px;
  height: 45px;
  border-radius: 23px;
  border: solid 1px #0073d5;
  font-size: 16px;
  font-weight: bold;
  color: #0073d5;
  background: none;
  cursor: pointer;
  line-height: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
      transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.hero-btn-secondary:hover{
  transform: translateY(-2px);
}
.hero-stats {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-stats-number {
  display: flex;
}

.hero-stats-label {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #64748b;
}

.hero-stats-highlight {
  font-weight: 700;
  color: #1e293b;
}

.hero-img-col {
  width: 768px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-end;
}

.hero-img-wrapper {
  position: relative;
  width: 100%;
  max-width: 36rem;
}

.hero-img-shadow {
  position: absolute;
  inset: 0;
  z-index: -10;
  translate: 0 0;
  background-image: linear-gradient(
    to bottom right in oklab,
    #dbeafe 0%,
    #bfdbfe 100%
  );
}
.hero-text-col {
  display: flex;
  align-items: flex-end;
}
.hero-img-card {
  position: relative;
  height: 100%;
}

.hero-tag-tl {
  position: absolute;
  z-index: 10;
  max-width: 134px;
  height: 40px;
  background-image: linear-gradient(0deg, #ffffff 0%, #e6f0ff 100%);
  box-shadow: 0px 10px 20px 0px rgba(2, 28, 188, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  overflow: hidden;
  transition:
    height 0.25s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.25s cubic-bezier(0.4, 0, 0.2, 1),
    max-width 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.18s,
    box-shadow 0.4s ease;
}

.hero-tag-tl .icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  background-image: linear-gradient(0deg, #3375fd 0%, #73e1fe 100%);
  box-shadow: 0px 10px 20px 0px rgba(2, 28, 188, 0.15);
  border-radius: 8px;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-tag-tl.active .icon {
  transform: scale(1.08);
}
.hero-tag-tl.active {
  max-width: 500px;
  height: 62px;
  padding: 8px;
  background-image: linear-gradient(0deg, #ffffff 0%, #e6f0ff 100%);
  box-shadow: 0px 10px 20px 0px rgba(2, 28, 188, 0.15);
  border-radius: 8px;
}
.hero-tag1 {
  top: 208px;
  left: 82px;
}
.hero-tag2 {
  top: 0;
  right: 3px;
}
.hero-tag3 {
  bottom: 73px;
  left: 103px;
}
.hero-tag4 {
  top: 356px;
  right: -68px;
}
.hero-tag-tl h4 {
  font-size: 16px;
  font-weight: bold;
  line-height: 16px;
  color: #0073d5;
  margin-left: 9px;
  flex-shrink: 0;
  margin-right: 10px;
}
.hero-tag-tl p {
  font-size: 14px;
  font-weight: normal;
  line-height: 20px;
  color: #2b5077;
  opacity: 0;
  transform: translateX(-8px);
  flex: 1;
  min-width: 0;
  overflow: hidden;
  transition:
    opacity 0.22s ease 0.25s,
    transform 0.22s ease 0.25s;
  white-space: nowrap;
}
.hero-tag-tl.active p {
  opacity: 1;
  transform: translateX(0);
}
.wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.wave-svg {
  width: 100%;
}

.container-lg {
  width: 100%;
  margin: 34px auto 0;
  max-width: 1340px;
  /* padding-inline: 16px; */
}

.icon-6 {
  height: 24px;
  width: 24px;
}

.info-icon-box {
  display: flex;
  height: 48px;
  width: 48px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: calc(0.5rem + 4px);
  background-color: #fef3c7;
  color: #d97706;
}

.section-badge {
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 9999px;
  background-color: #fef3c7;
  padding: 5px 17px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
  color: #b45309;
}

.section-badge-icon {
  height: 16px;
  width: 16px;
}

.grid-3-col {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.warning-icon-sm {
  height: 24px;
  width: 24px;
}

.warning-icon-md {
  height: 24px;
  width: 24px;
}

.section-icon {
  height: 16px;
  width: 16px;
}

.feature-icon-sm {
  height: 24px;
  width: 24px;
}

.feature-icon-circle-sky {
  display: flex;
  height: 48px;
  width: 48px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: calc(0.5rem + 4px);
  background-color: #e0f2fe;
  color: #0284c7;
}

.feature-icon-sm {
  height: 24px;
  width: 24px;
}

.feature-icon-circle-indigo {
  display: flex;
  height: 48px;
  width: 48px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: calc(0.5rem + 4px);
  background-color: #e0e7ff;
  color: #4f46e5;
}

.feature-icon-circle-teal {
  display: flex;
  height: 48px;
  width: 48px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: calc(0.5rem + 4px);
  background-color: #ccfbf1;
  color: #0d9488;
}

.section-icon-alt {
  height: 16px;
  width: 16px;
}

.service-card-blue {
  background-image: linear-gradient(135deg, #05295c 0%, #1d4ed8 100%);
  padding: 20px;
  color: #ffffff;
}

.service-card-sky {
  background-image: linear-gradient(135deg, #0ea5e9 0%, #7dd3fc 100%);
  padding: 20px;
  color: #ffffff;
}

.service-card-indigo {
  background-image: linear-gradient(135deg, #1e3a8a 0%, #4f46e5 100%);
  padding: 20px;
  color: #ffffff;
}

.service-card-teal {
  background-image: linear-gradient(135deg, #0e7490 0%, #22d3ee 100%);
  padding: 20px;
  color: #ffffff;
}

.service-card-icon {
  height: 20px;
  width: 20px;
}

.section-icon-calendar {
  height: 16px;
  width: 16px;
}

.process-timeline {
  position: relative;
}

.process-timeline-line {
  height: 100%;
  width: 1px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  background-image: linear-gradient(
    to right in oklab,
    #3b82f6 0%,
    #6366f1 50%,
    #2563eb 100%
  );
  display: block;
}

.step-icon-lg {
  height: 28px;
  width: 28px;
}

.step-row-alt {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex-direction: row;
  flex-direction: row-reverse;
}

.step-card-bordered {
  border-radius: 1rem;
  border-style: solid;
  border-width: 1px;
  border-color: #f1f5f9;
  background-color: #f8fafc;
  padding: 24px;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;

  text-align: left;
}
.step-card-bordered:hover{
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.1);
}
.step-icon-pin {
  height: 28px;
  width: 28px;
}

.step-icon-trend {
  height: 28px;
  width: 28px;
}

.advantage-section {
  background-image: linear-gradient(
    to bottom right in oklab,
    #fffbeb 0%,
    #fff7ed 100%
  );

  padding-block: 80px;
}

.advantage-badge-row {
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 9999px;
  padding-inline: 16px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
  color: #b45309;
}

.advantage-badge-icon {
  height: 16px;
  width: 16px;
}

.advantage-heading {
  margin-bottom: 16px;
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 700;
  color: #0f172a;
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.advantage-desc {
  margin-bottom: 24px;
  font-size: 1rem;
  line-height: 1.625;
  color: #475569;
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.advantage-card {
  position: relative;
  border-radius: 1.5rem;
  background-color: #ffffff;
  padding: 32px;
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.advantage-card-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.advantage-icon-circle {
  margin-bottom: 16px;
  display: flex;
  height: 80px;
  width: 80px;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
}

.advantage-icon {
  height: 40px;
  width: 40px;
  color: #3b82f6;
}

.advantage-title {
  margin-bottom: 8px;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
  color: #1e293b;
}

.advantage-text {
  margin-bottom: 24px;
  color: #64748b;
}

.cta-banner {
  width: 100%;
  border-radius: 1rem;
  background-image: linear-gradient(
    to right in oklab,
    #3b82f6 0%,
    #2563eb 100%
  );

  padding: 24px;
  color: #ffffff;
}

.cta-banner-label {
  font-size: 0.875rem;
  line-height: 1.25rem;
  opacity: 0.9;
}

.cta-banner-heading {
  margin-top: 8px;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 700;
}

.cta-section {
  background-color: #3b82f6;
  padding-block: 80px;
  color: #ffffff;
}

.cta-title {
  margin-bottom: 16px;
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.cta-subtitle {
  margin-bottom: 32px;
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: #dbeafe;
}

.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  flex-shrink: 0;
  --outline-style: none;
  outline-style: none;
  height: 40px;
  border-radius: 9999px;
  background-color: #ffffff;
  padding-inline: 32px;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 600;
  color: #3b82f6;
  border: none;
  cursor: pointer;
}

.cta-btn-icon {
  margin-right: 8px;
  height: 20px;
  width: 20px;
}

.cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  flex-shrink: 0;
  --outline-style: none;
  outline-style: none;
  height: 40px;
  border-radius: 9999px;
  border-style: solid;
  border-width: 1px;
  background-color: #0000;
  padding-inline: 32px;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
}

.cta-btn-secondary-icon {
  margin-right: 8px;
  height: 20px;
  width: 20px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 1.5rem;
  padding: 32px;
  text-align: center;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.testimonial-avatar {
  margin-bottom: 16px;
  display: flex;
  height: 192px;
  width: 192px;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background-color: #ffffff;
}

.testimonial-center {
  text-align: center;
}

.testimonial-avatar-img {
  margin-inline: auto;
  margin-bottom: 8px;
  height: 48px;
  width: 48px;
  color: #3b82f6;
}

.testimonial-name {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
  color: #334155;
}

.testimonial-role {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #dbeafe;
}

.site-footer {
  background-color: #0f172a;
  padding-block: 40px;
  color: #94a3b8;
}

.footer-inner {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-direction: row;
}

.footer-brand {
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 700;
  color: #ffffff;
}

.footer-links {
  display: flex;
  gap: 24px;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.footer-divider {
  border-top-style: solid;
  border-top-width: 1px;
  border-color: #1e293b;
  padding-top: 24px;
  text-align: center;
  font-size: 0.75rem;
  line-height: 1rem;
}

/* ========== Bonus 闁哄鐏濆ḿ锟� ========== */
.bonus-badge {
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 9999px;
  background-color: rgba(253, 230, 138, 0.5);
  padding: 6px 16px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #b45309;
}

.bonus-badge-icon {
  height: 16px;
  width: 16px;
}

.bonus-heading {
  margin-bottom: 16px;
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 700;
  color: #0f172a;
}

.bonus-desc {
  margin-bottom: 24px;
  font-size: 1rem;
  line-height: 1.625;
  color: #475569;
}

.bonus-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bonus-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #475569;
}

.bonus-list-icon {
  height: 20px;
  width: 20px;
  color: #3b82f6;
  flex-shrink: 0;
}

.bonus-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  background-image: linear-gradient(135deg, #3a6afe 0%, #638cfe 100%);
  padding: 48px 32px;
  color: #ffffff;
  box-shadow: 0 25px 50px -12px rgba(29, 78, 216, 0.25);
}

.bonus-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.bonus-card-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.bonus-card .cta-title {
  margin-bottom: 16px;
  font-size: 2rem;
  line-height: 1.25;
  font-weight: 700;
  color: #ffffff;
}

.bonus-card .cta-subtitle {
  margin-bottom: 32px;
  font-size: 1rem;
  line-height: 1.625;
  color: #dbeafe;
}

.bonus-card .cta-btn-primary {
  background-color: #ffffff;
  color: #1d4ed8;
}

.bonus-card .cta-btn-primary:hover {
  background-color: #eff6ff;
  transform: translateY(-2px);
}

.bonus-card .cta-btn-secondary {
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

.bonus-card .cta-btn-secondary:hover {
  transform: translateY(-2px);
  background-color: rgba(255, 255, 255, 0.15);
}

/* ========== CTA 闁哄鐏濆ḿ锛勬偘閵夈儱甯� ========== */
.cta-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.cta-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cta-qr-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 1.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 32px;
  text-align: center;
  backdrop-filter: blur(8px);
}

.cta-qr-box {
  margin-bottom: 16px;
  display: flex;
  height: 192px;
  width: 192px;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background-color: #ffffff;
}

.cta-qr-inner {
  text-align: center;
}

.cta-qr-icon {
  margin: 0 auto 8px;
  height: 48px;
  width: 48px;
  color: #3b82f6;
  display: block;
}

.cta-qr-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: #334155;
}

.cta-qr-desc {
  font-size: 0.875rem;
  color: #dbeafe;
}

/* ========== 鐎殿喖婀遍悰銉ф偘閵娿儱绀� lay-form ========== */
.lay-form {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.lay-form.show {
  display: flex;
}

.lay-form .ctaForm {
  position: relative;
  /* width: 90vw; */
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  background-color: #ffffff;
  border-radius: 1.25rem;
  padding: 20px 32px 32px;
  box-shadow: 0 25px 80px -12px rgba(0, 0, 0, 0.35);
  animation: layFormIn 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.lay-form .ctaForm h2{
  text-align:center;
  margin-bottom: 20px;
  font-size: 24px;
}
@keyframes layFormIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.lay-form-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background-color: #f1f5f9;
  color: #64748b;
  font-size: 18px;
  line-height: 32px;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}

.lay-form-close:hover {
  background-color: #e2e8f0;
  color: #0f172a;
}

.lay-form .form-group {
  margin-bottom: 16px;
}

.lay-form .form-row {
  display: flex;
  gap: 12px;
}

.lay-form .form-col {
  flex: 1;
  min-width: 0;
  position: relative;
}

.lay-form .form-input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.9375rem;
  color: #0f172a;
  background-color: #f8fafc;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.lay-form .form-input::placeholder {
  color: #94a3b8;
}

.lay-form .form-input:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
  background-color: #ffffff;
}

.lay-form .form-country {
  cursor: pointer;
  caret-color: transparent;
  user-select: none;
}

.lay-form .select-options {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 10;
  background-color: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  padding: 8px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.12);
}

.lay-form .form-col.open .select-options {
  display: block;
}

.lay-form .select-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  font-style: normal;
  cursor: pointer;
  transition: background-color 0.15s;
}

.lay-form .select-option:hover {
  background-color: #f1f5f9;
}

.lay-form .select-option em {
  font-style: normal;
  font-size: 0.9375rem;
  color: #334155;
}

.lay-form .check-box {
  width: 18px;
  height: 18px;
  border: 2px solid #cbd5e1;
  border-radius: 4px;
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.2s, background-color 0.2s;
}

.lay-form .select-option.selected .check-box {
  border-color: #3b82f6;
  background-color: #3b82f6;
}

.lay-form .select-option.selected .check-box::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 4px;
  width: 6px;
  height: 10px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.lay-form .select-option-other {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
}

.lay-form .select-option-other .check-box {
  width: 18px;
  height: 18px;
  border: 2px solid #cbd5e1;
  border-radius: 4px;
  flex-shrink: 0;
}

.lay-form .other-input {
  flex: 1;
  height: 36px;
  padding: 0 10px;
  border: 1.5px solid #e2e8f0;
  border-radius: 6px;
  font-size: 0.875rem;
  color: #0f172a;
  outline: none;
  background-color: #f8fafc;
  transition: border-color 0.2s;
}

.lay-form .other-input:focus {
  border-color: #3b82f6;
}

.lay-form .other-input::placeholder {
  color: #94a3b8;
}

.lay-form .confirm {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  margin-top: 8px;
  border-radius: 8px;
  background-image: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
}

.lay-form .confirm:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.lay-form .form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 52px;
  margin-top: 24px;
  border-radius: 12px;
  background-image: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
  color: #ffffff;
  font-size: 1.0625rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 24px -6px rgba(37, 99, 235, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.lay-form .form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -6px rgba(37, 99, 235, 0.45);
}

.lay-form .form-submit:active {
  transform: translateY(0);
}

/* 鐎殿喖婀遍悰銉╁礂閵夈儱缍撻柟绋款樀閹革拷 */
.lay-form-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 52px;
  padding: 0 32px;
  border: none;
  border-radius: 12px;
  background-image: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 20px -6px rgba(37, 99, 235, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}

.lay-form-trigger:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -6px rgba(37, 99, 235, 0.4);
}
