body.landing-page {
  background:
    radial-gradient(circle at top left, rgba(246, 147, 35, 0.14), transparent 30%),
    radial-gradient(circle at top right, rgba(1, 15, 116, 0.10), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
}

.landing-hero {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 2.5rem;
}

.landing-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.landing-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--background-color), transparent 28%);
  z-index: 1;
}

.landing-hero .container {
  position: relative;
  z-index: 2;
}

.landing-hero .row {
  align-items: stretch;
}

.landing-hero::before,
.landing-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  opacity: 0.9;
}

.landing-hero::before {
  width: 280px;
  height: 280px;
  background: rgba(246, 147, 35, 0.12);
  top: -120px;
  right: -80px;
}

.landing-hero::after {
  width: 180px;
  height: 180px;
  background: rgba(1, 15, 116, 0.10);
  bottom: -60px;
  left: -40px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  border-radius: 5px;
  background: rgba(246, 147, 35, 0.12);
  color: #010f74;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

.hero-card,
.process-step,
.faq-shell,
.contact-shell {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(1, 15, 116, 0.08);
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(12px);
}

.hero-card {
  border-radius: 5px;
  padding: 2rem;
  width: 100%;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  margin-right: 0.75rem;
  padding: 0.35rem 0.7rem;
  border-radius: 5px;
  background: rgba(246, 147, 35, 0.12);
  color: #010f74;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  vertical-align: middle;
}

.hero-lead {
  font-size: 1.08rem;
  line-height: 1.75;
  max-width: 42rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.btn-landing {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border-radius: 5px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: 0;
}

.btn-landing:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(1, 15, 116, 0.15);
}

.btn-landing-primary {
  background: #f69323;
  color: #fff;
}

.btn-landing-primary:hover {
  color: #fff;
  background: #eb8610;
}

.btn-landing-secondary {
  background: #fff;
  color: #010f74;
  border: 1px solid rgba(1, 15, 116, 0.12);
}

.btn-getstarted {
  border-radius: 5px;
}

.hero-panel {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  width: 100%;
  min-height: 100%;
}

.hero-panel picture {
  display: block;
  width: 100%;
}

.hero-panel img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

.hero-panel .overlay {
  position: absolute;
  inset: auto 1rem 1rem 1rem;
  padding: 1rem 1.1rem;
  border-radius: 5px;
  background: rgba(1, 15, 116, 0.92);
  color: #fff;
  max-width: calc(100% - 2rem);
}

.stat-strip {
  margin-top: 1.75rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.stat-chip {
  border-radius: 5px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(1, 15, 116, 0.08);
  text-align: center;
}

.stat-chip strong {
  display: block;
  font-size: 1.2rem;
  color: #010f74;
}

.section-block {
  padding: 60px 0;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.benefits-grid {
  margin-top: 2rem;
}

.benefits-grid .icon-box {
  background-color: var(--surface-color);
  padding: 10px 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
  height: 100%;
  width: 100%;
}

.benefits-grid .icon-box .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.benefits-grid .icon-box .description {
  font-size: 15px;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.benefits-grid .icon-box .icon {
  margin-bottom: 20px;
  padding-top: 10px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  font-size: 36px;
  line-height: 1;
  color: var(--accent-color);
}

@media (min-width: 640px) {
  .benefits-grid .icon-box:hover {
    transform: scale(1.08);
  }
}

.benefits-lead {
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.benefits-list {
  max-width: 52rem;
  margin: 1.5rem auto 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.benefits-list li {
  padding-bottom: 5px;
  display: flex;
  align-items: center;
}

.benefits-list i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.process-list {
  display: grid;
  gap: 0.95rem;
  margin-top: 1rem;
}

.process-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(1, 15, 116, 0.08);
}

.process-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.process-row .step-number {
  flex: 0 0 42px;
  margin-bottom: 0;
}

.process-step {
  border-radius: 5px;
  padding: 1.5rem;
  position: relative;
}

.process-step .step-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f69323;
  color: #fff;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-band {
  border-radius: 5px;
  padding: 2rem;
  background: linear-gradient(135deg, #010f74 0%, #1834a0 50%, #f69323 160%);
  color: #fff;
  box-shadow: 0 28px 60px rgba(1, 15, 116, 0.18);
}

.cta-band h2,
.cta-band p {
  color: #fff;
}

.faq-shell {
  border-radius: 5px;
  padding: 1rem;
}

.faq-visual {
  position: relative;
  overflow: hidden;
}

.faq-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/working-4.jpg") center center / cover no-repeat;
  filter: grayscale(15%);
  transform: scale(1.03);
  z-index: 0;
}

.faq-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.90), rgba(255, 255, 255, 0.95));
  z-index: 1;
}

.faq-visual > .container {
  position: relative;
  z-index: 2;
}

.faq-item {
  border: 1px solid rgba(1, 15, 116, 0.08);
  border-radius: 5px;
  background: #fff;
  margin-bottom: 0.85rem;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 1.2rem;
  font-weight: 700;
  color: #010f74;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item .faq-body {
  padding: 0 1.2rem 1.2rem;
  color: #444;
}

.contact-shell {
  border-radius: 5px;
  padding: 1.6rem;
}

.contact-points {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.contact-point {
  padding: 1rem 1.1rem;
  border-radius: 5px;
  background: #f7f9ff;
  border: 1px solid rgba(1, 15, 116, 0.08);
}

.contact-shell .form-control,
.contact-shell textarea,
.contact-shell input {
  border-radius: 5px;
}

.contact-point strong {
  display: block;
  margin-bottom: 0.25rem;
  color: #010f74;
}

#configcontent2 {
  display: none;
}

#configcontent2 h4 {
  color: #fff;
  text-align: left;
}

#configcontent2 p {
  text-align: left;
}

.benefits-grid .icon-box .icon-sky {
  color: #0dcaf0;
}

.benefits-grid .icon-box .icon-violet {
  color: #6610f2;
}

.benefits-grid .icon-box .icon-green {
  color: #20c997;
}

.benefits-grid .icon-box .icon-red {
  color: #df1529;
}

.benefits-grid .icon-box .pack-cyan {
  color: #0dcaf0;
}

.benefits-grid .icon-box .pack-blue {
  color: #0d6efd;
}

.benefits-grid .icon-box .pack-violet {
  color: #6610f2;
}

.benefits-grid .icon-box .pack-green {
  color: #20c997;
}

.benefits-grid .icon-box .pack-orange {
  color: #f69323;
}

.benefits-grid .icon-box .pack-red {
  color: #df1529;
}

@media (max-width: 991.98px) {
  .process-grid {
    grid-template-columns: 1fr;
  }

  .stat-strip {
    grid-template-columns: 1fr;
  }
}
