.bpa-page {
  --bpa-navy: #071b3b;
  --bpa-navy-2: #0c2f58;
  --bpa-red: #e3151e;
  --bpa-teal: #0d8f8f;
  --bpa-text: #26384a;
  --bpa-muted: #64748b;
  --bpa-soft: #f5f8fb;
  --bpa-line: #dfe7ef;
  --bpa-white: #fff;
  color: var(--bpa-text);
  background: #fff;
  overflow: hidden;
}
.bpa-page .bpa-section {
  padding: 86px 0;
}
.bpa-page .bpa-section--soft {
  background: var(--bpa-soft);
}
.bpa-page .bpa-section--navy {
  background: linear-gradient(135deg, var(--bpa-navy), #0a315b);
  color: #fff;
}
.bpa-page .bpa-heading {
  margin: 0;
  color: var(--bpa-navy);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}
.bpa-page .bpa-heading--light {
  color: #fff;
}
.bpa-page .bpa-lead {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--bpa-muted);
  font-size: 1.08rem;
  line-height: 1.75;
}
.bpa-page .bpa-lead--light {
  color: #cbd8e6;
}
.bpa-page .bpa-section-head {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 42px;
}
.bpa-page .bpa-section-head .bpa-lead {
  margin: 0;
}
.bpa-page .bpa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 40px;
  padding: 7px 21px;
  border: 2px solid var(--bpa-red);
  border-radius: 6px;
  background: var(--bpa-red);
  color: #fff;
  font-weight: 700;
  line-height: 1.15;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.bpa-page .bpa-btn:hover {
  transform: translateY(-2px);
  color: #fff;
  border-color: #bd1625;
  background: #bd1625;
}
.bpa-page .bpa-btn--outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}
.bpa-page .bpa-btn--outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.bpa-page .bpa-btn--navy {
  background: var(--bpa-navy);
  border-color: var(--bpa-navy);
}
.bpa-page .bpa-btn--navy:hover {
  background: var(--bpa-navy-2);
  border-color: var(--bpa-navy-2);
}
.bpa-page .bpa-btn.full {
  width: 100%;
}

.bpa-page .bpa-hero {
  position: relative;
  padding: 32px 0 62px;
  background:
    radial-gradient(
      circle at 18% 25%,
      rgba(13, 143, 143, 0.18),
      transparent 28%
    ),
    linear-gradient(135deg, #06172f 0%, #092a51 62%, #0b3b67 100%);
  color: #fff;
}
.bpa-page .bpa-hero:after {
  content: "";
  position: absolute;
  right: -130px;
  bottom: -150px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(255, 255, 255, 0.025),
    0 0 0 140px rgba(255, 255, 255, 0.018);
}
.bpa-page .bpa-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  font-size: 0.86rem;
  color: #b7c8dc;
}
.bpa-page .bpa-breadcrumb a {
  color: #fff;
}
.bpa-page .bpa-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.74fr);
  gap: 54px;
  align-items: center;
}
.bpa-page .bpa-hero h1 {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 0.99;
  letter-spacing: -0.045em;
}
.bpa-page .bpa-hero h1 span {
  color: #e3151e;
}
.bpa-page .bpa-hero__intro {
  max-width: 720px;
  margin: 23px 0 0;
  color: #d9e5f1;
  font-size: 1.12rem;
  line-height: 1.7;
}
.bpa-page .bpa-hero__points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px 20px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}
.bpa-page .bpa-hero__points li {
  position: relative;
  padding-left: 25px;
  color: #eef5fb;
  font-size: 0.96rem;
  line-height: 1.45;
}
.bpa-page .bpa-hero__points li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #e3151e;
  font-weight: 700;
}
.bpa-page .bpa-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.bpa-page .bpa-risk-grid,
.bpa-page .bpa-service-grid,
.bpa-page .bpa-benefit-grid,
.bpa-page .bpa-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.bpa-page .bpa-card {
  position: relative;
  padding: 26px;
  border: 1px solid var(--bpa-line);
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(10, 34, 60, 0.045);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.bpa-page .bpa-card:hover {
  transform: translateY(-4px);
  border-color: #c9d7e5;
  box-shadow: 0 16px 36px rgba(10, 34, 60, 0.09);
}
.bpa-page .bpa-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 9px;
  background: #edf4fa;
  color: var(--bpa-navy);
  font-size: 0.76rem;
  font-weight: 700;
}
.bpa-page .bpa-card h3 {
  margin: 0 0 10px;
  color: var(--bpa-navy);
  font-size: 1.08rem;
  line-height: 1.35;
}
.bpa-page .bpa-card p {
  margin: 0;
  color: #627386;
  font-size: 0.91rem;
  line-height: 1.68;
}
.bpa-page .bpa-card ul {
  margin: 15px 0 0;
  padding: 0;
  list-style: none;
}
.bpa-page .bpa-card li {
  position: relative;
  margin: 7px 0;
  padding-left: 18px;
  color: #53677b;
  font-size: 0.84rem;
  line-height: 1.5;
}
.bpa-page .bpa-card li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bpa-red);
}
.bpa-page .bpa-service-grid {
  grid-template-columns: repeat(4, 1fr);
}
.bpa-page .bpa-service-card {
  min-height: 100%;
}

.bpa-page .bpa-dept-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  margin-top: 35px;
}
.bpa-page .bpa-dept {
  min-height: 150px;
  padding: 20px 14px;
  border: 1px solid var(--bpa-line);
  border-radius: 9px;
  background: #fff;
}
.bpa-page .bpa-dept strong {
  display: block;
  margin-bottom: 9px;
  color: var(--bpa-navy);
  font-size: 0.97rem;
}
.bpa-page .bpa-dept p {
  margin: 0;
  color: #66788b;
  font-size: 0.78rem;
  line-height: 1.55;
}

.bpa-page .bpa-approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 38px;
}
.bpa-page .bpa-approach {
  padding: 25px;
  border: 1px solid var(--bpa-line);
  border-radius: 11px;
  background: #fff;
}
.bpa-page .bpa-approach__tag {
  display: inline-block;
  margin-bottom: 13px;
  padding: 5px 8px;
  border-radius: 4px;
  background: #edf4fa;
  color: #36536f;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.bpa-page .bpa-approach h3 {
  margin: 0 0 8px;
  color: var(--bpa-navy);
  font-size: 1.08rem;
}
.bpa-page .bpa-approach p {
  margin: 0 0 14px;
  color: #637589;
  font-size: 0.88rem;
  line-height: 1.62;
}
.bpa-page .bpa-approach a {
  color: #e3151e;
  font-size: 0.84rem;
  font-weight: 700;
}
.bpa-page .bpa-approach--featured {
  border-color: #e3151e;
  box-shadow: inset 0 3px 0 var(--bpa-red);
}

.bpa-page .bpa-arch {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 58px;
  align-items: center;
}
.bpa-page .bpa-arch-board {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.bpa-page .bpa-arch-board:before {
  content: "AUTOMATION CONTROL PLANE";
  display: block;
  margin-bottom: 21px;
  color: #8fb2ce;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.bpa-page .bpa-flow {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  align-items: stretch;
}
.bpa-page .bpa-flow__step {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 112px;
  padding: 12px 7px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.07);
  text-align: center;
}
.bpa-page .bpa-flow__step:not(:last-child):after {
  content: "→";
  position: absolute;
  right: -10px;
  top: 45%;
  z-index: 2;
  color: #e3151e;
  font-weight: 700;
}
.bpa-page .bpa-flow__step span {
  display: block;
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 700;
}
.bpa-page .bpa-flow__step strong {
  display: block;
  margin-top: 5px;
  color: #fff;
  font-size: 0.79rem;
  line-height: 1.25;
}
.bpa-page .bpa-flow-note {
  margin-top: 16px;
  color: #a9bfd3;
  font-size: 0.8rem;
  line-height: 1.55;
}

.bpa-page .bpa-process {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 0;
  margin-top: 42px;
}
.bpa-page .bpa-step {
  position: relative;
  padding: 27px 15px 20px;
  border-top: 2px solid #cfdae5;
}
.bpa-page .bpa-step:before {
  content: "";
  position: absolute;
  top: -7px;
  left: 15px;
  width: 12px;
  height: 12px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--bpa-red);
  box-shadow: 0 0 0 1px var(--bpa-red);
}
.bpa-page .bpa-step__number {
  color: #9badbe;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.bpa-page .bpa-step h3 {
  margin: 8px 0;
  color: var(--bpa-navy);
  font-size: 0.95rem;
}
.bpa-page .bpa-step p {
  margin: 0;
  color: #6b7d8e;
  font-size: 0.77rem;
  line-height: 1.55;
}

.bpa-page .bpa-governance {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: start;
}
.bpa-page .bpa-control-list {
  display: grid;
  gap: 12px;
}
.bpa-page .bpa-control {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 15px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}
.bpa-page .bpa-control span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(243, 111, 33, 0.15);
  color: #e3151e;
  font-size: 0.72rem;
  font-weight: 700;
}
.bpa-page .bpa-control h3 {
  margin: 0 0 4px;
  color: #fff;
  font-size: 0.98rem;
}
.bpa-page .bpa-control p {
  margin: 0;
  color: #b7c9da;
  font-size: 0.83rem;
  line-height: 1.55;
}

.bpa-page .bpa-industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 33px;
}
.bpa-page .bpa-industry {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 74px;
  padding: 16px 18px;
  border: 1px solid var(--bpa-line);
  border-radius: 8px;
  background: #fff;
  color: #334a61;
  font-weight: 700;
  font-size: 0.88rem;
}
.bpa-page .bpa-industry span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #edf4fa;
  color: #41627e;
  font-size: 0.68rem;
}

.bpa-page .bpa-contact {
  background: linear-gradient(135deg, var(--bpa-navy), var(--bpa-navy-2));
}
.bpa-page .bpa-contact__grid {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 58px;
  align-items: center;
}
.bpa-page .bpa-contact__copy h2 {
  margin: 10px 0 16px;
  color: var(--bpa-white);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.bpa-page .bpa-contact__copy > p {
  max-width: 640px;
  color: var(--bpa-white);
  font-size: 1.02rem;
  line-height: 1.72;
}

.bpa-page .bpa-faq-layout {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: 58px;
  align-items: start;
}
.bpa-page .bpa-faq-list {
  border-top: 1px solid var(--bpa-line);
}
.bpa-page .bpa-faq {
  border-bottom: 1px solid var(--bpa-line);
}
.bpa-page .bpa-faq summary {
  position: relative;
  padding: 20px 44px 20px 0;
  cursor: pointer;
  list-style: none;
  color: var(--bpa-navy);
  font-weight: 700;
  line-height: 1.45;
}
.bpa-page .bpa-faq summary::-webkit-details-marker {
  display: none;
}
.bpa-page .bpa-faq summary:after {
  content: "+";
  position: absolute;
  right: 5px;
  top: 17px;
  color: var(--bpa-red);
  font-size: 1.5rem;
  font-weight: 500;
}
.bpa-page .bpa-faq[open] summary:after {
  content: "–";
}
.bpa-page .bpa-faq__answer {
  padding: 0 36px 20px 0;
}
.bpa-page .bpa-faq__answer p {
  margin: 0;
  color: #65778a;
  font-size: 0.91rem;
  line-height: 1.7;
}

.bpa-page .bpa-motion .bpa-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
  transition-delay: var(--bpa-delay, 0ms);
}
.bpa-page .bpa-motion .bpa-reveal[data-reveal="left"] {
  transform: translateX(-22px);
}
.bpa-page .bpa-motion .bpa-reveal[data-reveal="right"] {
  transform: translateX(22px);
}
.bpa-page .bpa-motion .bpa-reveal.bpa-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .bpa-page .bpa-hero__grid {
    grid-template-columns: 1fr 0.82fr;
    gap: 34px;
  }
  .bpa-page .bpa-risk-grid,
  .bpa-page .bpa-service-grid,
  .bpa-page .bpa-benefit-grid,
  .bpa-page .bpa-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bpa-page .bpa-dept-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .bpa-page .bpa-process {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 18px;
  }
}
@media (max-width: 820px) {
  .bpa-page .bpa-section {
    padding: 62px 0;
  }
  .bpa-page .bpa-section-head,
  .bpa-page .bpa-hero__grid,
  .bpa-page .bpa-arch,
  .bpa-page .bpa-governance,
  .bpa-page .bpa-contact__grid,
  .bpa-page .bpa-faq-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .bpa-page .bpa-hero {
    padding-top: 24px;
  }
  .bpa-page .bpa-hero__points {
    grid-template-columns: 1fr;
  }
  .bpa-page .bpa-approach-grid,
  .bpa-page .bpa-industry-grid {
    grid-template-columns: 1fr;
  }
  .bpa-page .bpa-flow {
    grid-template-columns: 1fr;
  }
  .bpa-page .bpa-flow__step {
    min-height: auto;
  }
  .bpa-page .bpa-flow__step:not(:last-child):after {
    content: "↓";
    right: auto;
    left: 50%;
    top: auto;
    bottom: -16px;
  }
  .bpa-page .bpa-dept-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .bpa-page .bpa-hero h1 {
    font-size: 2.42rem;
  }
  .bpa-page .bpa-risk-grid,
  .bpa-page .bpa-service-grid,
  .bpa-page .bpa-benefit-grid,
  .bpa-page .bpa-why-grid,
  .bpa-page .bpa-dept-grid {
    grid-template-columns: 1fr;
  }
  .bpa-page .bpa-process {
    grid-template-columns: 1fr 1fr;
  }
  .bpa-page .bpa-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .bpa-page .bpa-btn {
    width: 100%;
  }
  .bpa-page .bpa-contact__grid {
    gap: 36px;
  }
}
