:root {
  --bo-navy: #16325b;
  --bo-blue: #227b94;
  --bo-sky: #78b7d0;
  --bo-gold: #ffdc7f;
  --bo-ink: #0d1b2a;
  --bo-text: #19324d;
  --bo-text-soft: #5f7690;
  --bo-white: #ffffff;
  --bo-bg: #f7fbff;
  --bo-bg-soft: #eef6fb;
  --bo-line: rgba(22, 50, 91, 0.1);
  --bo-line-strong: rgba(22, 50, 91, 0.16);
  --bo-shadow-soft: 0 18px 50px rgba(9, 29, 56, 0.08);
  --bo-shadow-card: 0 16px 40px rgba(17, 39, 71, 0.08);
  --bo-shadow-strong: 0 28px 70px rgba(7, 22, 42, 0.16);
  --bo-radius-xl: 32px;
  --bo-radius-lg: 24px;
  --bo-radius-md: 18px;
  --bo-radius-sm: 14px;
  --bo-container: 1240px;
  --bo-transition: 240ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--bo-text);
  background:
    radial-gradient(circle at top left, rgba(120, 183, 208, 0.1), transparent 18%),
    linear-gradient(180deg, #fbfdff 0%, var(--bo-bg) 100%);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.bo-container {
  width: min(calc(100% - 24px), var(--bo-container));
  margin: 0 auto;
}

.bo-home {
  overflow: clip;
}

.bo-section-space {
  padding: 72px 0;
}

.bo-soft-bg {
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 220, 127, 0.12), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(238, 246, 251, 0.9) 100%);
}

.bo-section-head {
  max-width: 720px;
  margin-bottom: 28px;
}

.bo-section-head-center {
  margin-inline: auto;
  text-align: center;
}

.bo-section-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(34, 123, 148, 0.1);
  border: 1px solid rgba(34, 123, 148, 0.14);
  color: var(--bo-blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bo-section-tag-light {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.82);
}

.bo-section-head h2,
.bo-cta-box h2 {
  margin: 14px 0 12px;
  font-size: clamp(1.85rem, 4vw, 3.4rem);
  line-height: 1.28;
  letter-spacing: -0.015em;
  color: var(--bo-navy);
}

.bo-section-head p,
.bo-cta-box p {
  margin: 0;
  color: var(--bo-text-soft);
  font-size: 1rem;
  line-height: 1.8;
}

.bo-btn {
  min-height: 50px;
  padding: 12px 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  transition: var(--bo-transition);
  border: 1px solid transparent;
}

.bo-btn:hover {
  transform: translateY(-1px);
}

.bo-btn-primary {
  background: linear-gradient(135deg, var(--bo-gold), #ffd166);
  color: #12233f;
  box-shadow: 0 14px 32px rgba(255, 220, 127, 0.24);
}

.bo-btn-secondary {
  background: rgba(255, 255, 255, 0.88);
  color: var(--bo-navy);
  border-color: rgba(22, 50, 91, 0.12);
  box-shadow: 0 10px 24px rgba(18, 42, 74, 0.06);
}

.bo-btn-secondary-light {
  background: transparent;
  color: var(--bo-white);
  border-color: rgba(255, 255, 255, 0.18);
}

.bo-hero-section {
  position: relative;
  padding: 34px 0 78px;
  background:
    radial-gradient(circle at 0% 0%, rgba(120, 183, 208, 0.12), transparent 24%),
    radial-gradient(circle at 100% 12%, rgba(255, 220, 127, 0.12), transparent 18%),
    linear-gradient(180deg, rgba(247, 251, 255, 0.2) 0%, rgba(247, 251, 255, 0) 100%);
}

.bo-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: center;
}

.bo-hero-copy,
.bo-hero-visual {
  min-width: 0;
}

.bo-hero-copy h1 {
  margin: 18px 0 16px;
  font-size: clamp(2.4rem, 7vw, 5.8rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--bo-navy);
}

.bo-hero-copy h1 span {
  display: block;
  color: var(--bo-blue);
}

.bo-hero-copy p {
  margin: 0;
  max-width: 60ch;
  color: var(--bo-text-soft);
  font-size: 1rem;
  line-height: 1.9;
}

.bo-hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.bo-hero-actions .bo-btn {
  width: 100%;
}

.bo-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.bo-point-chip {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(22, 50, 91, 0.1);
  box-shadow: 0 8px 20px rgba(16, 37, 68, 0.05);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--bo-text);
}

.bo-hero-visual {
  display: grid;
  gap: 16px;
}

.bo-hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(22, 50, 91, 0.1);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--bo-shadow-soft);
}

.bo-hero-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(120, 183, 208, 0.45), rgba(255, 220, 127, 0.18), transparent);
}

.bo-card-lg {
  padding: 24px;
  background:
    radial-gradient(circle at top right, rgba(255, 220, 127, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 250, 255, 0.95) 100%);
}

.bo-card-label {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(34, 123, 148, 0.08);
  color: var(--bo-blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bo-card-lg h3,
.bo-card-sm p,
.bo-feature-row h3,
.bo-info-card h3,
.bo-solution-card h3,
.bo-process-card h3 {
  margin: 0;
}

.bo-card-lg h3 {
  margin-top: 16px;
  font-size: 1.35rem;
  line-height: 1.25;
  color: var(--bo-navy);
}

.bo-card-lg p {
  margin: 12px 0 0;
  color: var(--bo-text-soft);
  line-height: 1.8;
}

.bo-hero-mini-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.bo-card-sm {
  padding: 20px;
}

.bo-card-kpi {
  display: inline-flex;
  margin-bottom: 12px;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--bo-blue);
}

.bo-card-sm p {
  color: var(--bo-text-soft);
  line-height: 1.75;
}

.bo-trust-strip {
  padding: 0 0 14px;
}

.bo-trust-strip-inner {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 2px 8px;
  scrollbar-width: none;
}

.bo-trust-strip-inner::-webkit-scrollbar {
  display: none;
}

.bo-trust-strip-inner span {
  flex: 0 0 auto;
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(22, 50, 91, 0.08);
  color: var(--bo-text);
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 8px 22px rgba(14, 35, 64, 0.05);
}

.bo-overview-grid,
.bo-solutions-grid,
.bo-industries-grid,
.bo-process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.bo-info-card,
.bo-solution-card,
.bo-industry-card,
.bo-process-card,
.bo-feature-row {
  border-radius: 24px;
  border: 1px solid var(--bo-line);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--bo-shadow-card);
}

.bo-info-card,
.bo-solution-card,
.bo-process-card,
.bo-feature-row {
  padding: 22px;
}

.bo-info-card h3,
.bo-solution-card h3,
.bo-process-card h3,
.bo-feature-row h3 {
  font-size: 1.12rem;
  line-height: 1.25;
  color: var(--bo-navy);
}

.bo-info-card p,
.bo-solution-card p,
.bo-process-card p,
.bo-feature-row p {
  margin: 10px 0 0;
  color: var(--bo-text-soft);
  line-height: 1.8;
}

.bo-solution-card {
  position: relative;
  overflow: hidden;
}

.bo-solution-card::after {
  content: "";
  position: absolute;
  inset: auto -24px -42px auto;
  width: 90px;
  height: 90px;
  border-radius: 999px;
  background: rgba(120, 183, 208, 0.08);
}

.bo-solution-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(34, 123, 148, 0.14), rgba(255, 220, 127, 0.3));
  border: 1px solid rgba(34, 123, 148, 0.12);
  margin-bottom: 18px;
}

.bo-solution-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--bo-blue);
  font-weight: 700;
}

.bo-why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.bo-why-copy p {
  margin: 14px 0 0;
  color: var(--bo-text-soft);
  line-height: 1.9;
}

.bo-why-list {
  display: grid;
  gap: 14px;
}

.bo-feature-row {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(245, 250, 255, 0.92) 100%);
}

.bo-industries-grid {
  grid-template-columns: repeat(2, 1fr);
}

.bo-industry-card {
  min-height: 112px;
  padding: 20px 16px;
  display: flex;
  align-items: flex-end;
  font-weight: 700;
  color: var(--bo-navy);
  background:
    radial-gradient(circle at top right, rgba(255, 220, 127, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 250, 255, 0.92) 100%);
}

.bo-step-number {
  display: inline-flex;
  margin-bottom: 16px;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--bo-blue);
}

.bo-cta-section {
  padding: 20px 0 78px;
}

.bo-cta-box {
  display: grid;
  gap: 22px;
  padding: 26px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(255, 220, 127, 0.12), transparent 22%),
    linear-gradient(135deg, #0f2241 0%, #16325b 52%, #1e5d77 100%);
  color: var(--bo-white);
  box-shadow: var(--bo-shadow-strong);
}

.bo-cta-box h2 {
  color: var(--bo-white);
}

.bo-cta-box p {
  color: rgba(255, 255, 255, 0.74);
}

.bo-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bo-cta-actions .bo-btn {
  width: 100%;
}


/* Dark section rhythm */
.bo-section-dark {
  position: relative;
  background:
    radial-gradient(circle at 10% 0%, rgba(120, 183, 208, 0.18), transparent 24%),
    radial-gradient(circle at 88% 14%, rgba(255, 220, 127, 0.12), transparent 18%),
    linear-gradient(135deg, #0f2241 0%, #16325b 54%, #1e5d77 100%);
  color: var(--bo-white);
}

.bo-section-dark-alt {
  background:
    radial-gradient(circle at 8% 10%, rgba(255, 220, 127, 0.12), transparent 20%),
    radial-gradient(circle at 92% 0%, rgba(120, 183, 208, 0.16), transparent 22%),
    linear-gradient(135deg, #0d1b2a 0%, #16325b 58%, #17435d 100%);
}

.bo-section-dark .bo-section-head h2,
.bo-section-dark .bo-info-card h3,
.bo-section-dark .bo-solution-card h3,
.bo-section-dark .bo-process-card h3,
.bo-section-dark .bo-feature-row h3 {
  color: var(--bo-white);
}

.bo-section-dark .bo-section-head p,
.bo-section-dark .bo-solution-card p,
.bo-section-dark .bo-process-card p,
.bo-section-dark .bo-feature-row p {
  color: rgba(255, 255, 255, 0.72);
}

.bo-section-dark .bo-section-tag {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.84);
}

.bo-section-dark .bo-solution-card,
.bo-section-dark .bo-process-card,
.bo-section-dark .bo-feature-row {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
}

.bo-section-dark .bo-solution-icon {
  background: linear-gradient(135deg, rgba(120, 183, 208, 0.22), rgba(255, 220, 127, 0.34));
  border-color: rgba(255, 255, 255, 0.14);
}

.bo-section-dark .bo-solution-card a,
.bo-section-dark .bo-step-number {
  color: var(--bo-gold);
}

.bo-section-dark .bo-solution-card::after {
  background: rgba(255, 255, 255, 0.08);
}

.bo-cta-box h2 {
  line-height: 1.25;
}

body[dir="rtl"] .bo-section-head h2,
body[dir="rtl"] .bo-hero-copy h1,
body[dir="rtl"] .bo-cta-box h2 {
  letter-spacing: 0;
}

@media (min-width: 640px) {
  .bo-container {
    width: min(calc(100% - 36px), var(--bo-container));
  }

  .bo-section-space {
    padding: 84px 0;
  }

  .bo-hero-actions,
  .bo-cta-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .bo-hero-actions .bo-btn,
  .bo-cta-actions .bo-btn {
    width: auto;
    min-width: 190px;
  }

  .bo-hero-mini-grid,
  .bo-overview-grid,
  .bo-solutions-grid,
  .bo-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .bo-section-space {
    padding: 108px 0;
  }

  .bo-hero-section {
    padding: 54px 0 110px;
  }

  .bo-hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 26px;
  }

  .bo-card-lg {
    padding: 28px;
    min-height: 260px;
  }

  .bo-why-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 24px;
    align-items: start;
  }

  .bo-industries-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .bo-cta-box {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    padding: 34px;
  }
}

@media (min-width: 1180px) {
  .bo-hero-section {
    padding-top: 66px;
  }

  .bo-card-lg {
    padding: 32px;
  }

  .bo-overview-grid,
  .bo-solutions-grid,
  .bo-process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .bo-section-head {
    margin-bottom: 34px;
  }
}

@media (max-width: 380px) {
  .bo-hero-copy h1 {
    font-size: 2.15rem;
  }

  .bo-card-lg,
  .bo-card-sm,
  .bo-info-card,
  .bo-solution-card,
  .bo-process-card,
  .bo-feature-row,
  .bo-cta-box {
    padding-inline: 18px;
  }

  .bo-industries-grid {
    grid-template-columns: 1fr;
  }
}
