@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900&family=Manrope:wght@400;500;600;700;800&family=Roboto:wght@400;500;600;700&display=swap');

@font-face {
  font-family: "FONTSPRING DEMO - Roc Grotesk";
  src: url('/assets/css/fonts/Fontspring-DEMO-rocgrotesk-thin.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "FONTSPRING DEMO - Roc Grotesk";
  src: url('/assets/css/fonts/Fontspring-DEMO-rocgrotesk-extralight.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "FONTSPRING DEMO - Roc Grotesk";
  src: url('/assets/css/fonts/Fontspring-DEMO-rocgrotesk-light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "FONTSPRING DEMO - Roc Grotesk";
  src: url('/assets/css/fonts/Fontspring-DEMO-rocgrotesk-regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "FONTSPRING DEMO - Roc Grotesk";
  src: url('/assets/css/fonts/Fontspring-DEMO-rocgrotesk-medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "FONTSPRING DEMO - Roc Grotesk";
  src: url('/assets/css/fonts/Fontspring-DEMO-rocgrotesk-bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "FONTSPRING DEMO - Roc Grotesk";
  src: url('/assets/css/fonts/Fontspring-DEMO-rocgrotesk-extrabold.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "FONTSPRING DEMO - Roc Grotesk";
  src: url('/assets/css/fonts/Fontspring-DEMO-rocgrotesk-black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "FONTSPRING DEMO - Roc Grotesk";
  src: url('/assets/css/fonts/Fontspring-DEMO-rocgrotesk-heavy.otf') format('opentype');
  font-weight: 950;
  font-style: normal;
  font-display: swap;
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:      #060d0a;
  --green:   #a8f23a;
  --white:   #ffffff;
  --muted:   #7a9688;
  --border:  rgba(168,242,58,0.14);
  --card-bg: rgba(8,20,12,0.88);
}

html { scroll-behavior: smooth; }


/* ════════════════════════════════════════════════
   SECTION 1 — HERO
════════════════════════════════════════════════ */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("/services/adabas-to-csharp-migration/image/Move Natural and ADABAS.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  align-items: center;
  gap: clamp(24px, 4vw, 60px);
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: clamp(64px, 9vh, 110px) clamp(20px, 6vw, 80px) clamp(40px, 6vh, 72px);
}

/* ── left : copy ── */
.copy { display: flex; flex-direction: column; }

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 10px;
  font-size: clamp(11px, 1.1vw, 13px);
  color: var(--muted);
  margin-bottom: clamp(16px, 2.5vh, 28px);
}
.breadcrumb .star { color: var(--green); }
.breadcrumb a {
  color: #FFF;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  text-decoration: none;
  font-weight: 500;
  line-height: 24px;
  text-transform: capitalize;
}
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .cur {
  color: #BEFF00;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  text-transform: capitalize;
}
.breadcrumb .sep { opacity: .4; }

.headline {
  color: #FFF;
  font-family: "FONTSPRING DEMO - Roc Grotesk";
  font-size: 62px;
  font-style: normal;
  font-weight: 700;
  line-height: 74px;
  letter-spacing: -1px;
  margin-bottom: clamp(14px, 2vh, 22px);
}
/* ════════════════════════════════════════════════
   RESPONSIVE — HERO
════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    padding-top: clamp(56px, 8vh, 80px);
    gap: 32px;
  }
  .cards {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: flex-start;
  }
  .card, .card-icon { width: auto; flex: 1 1 clamp(150px, 40%, 300px); }
  .headline { max-width: 100%; }
  .body-copy { max-width: 100%; }
}

@media (max-width: 480px) {
  .hero-content { padding: 56px 18px 32px; }
  .cards { flex-direction: column; align-items: stretch; }
  .card, .card-icon { width: 100% !important; flex: none; }
  .btns { flex-direction: column; }
  .btn  { justify-content: center; text-align: center; }
  .headline { font-size: clamp(28px, 8vw, 38px); line-height: 35px; }
  .trusted-label { padding: 0 16px; }
  .logo-item { padding: 0 20px; }
  .btn-secondary , .btn-primary {
padding: 15px !important;}
}

@media (min-width: 1400px) {
  .hero-content { padding: 120px 30px 80px; }
}

@media (prefers-reduced-motion: reduce) {
  .slider-track { animation: none; }
}
.body-copy {
  color: #FFF;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  margin-bottom: clamp(24px, 4vh, 40px);
}

.btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.btn {
  display: inline-flex;
  align-items: center;
  padding: clamp(10px,1.2vh,14px) clamp(16px,1.8vw,24px);
  border-radius: 50px;
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: background .22s, color .22s, border-color .22s, transform .15s;
}
.btn:active { transform: scale(.97); }

@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.btn-primary {
  display: inline-block;
  border-radius: 50px;
  border: 1px solid transparent;
  background:
    linear-gradient(#0D1100, #0D1100) padding-box,
    conic-gradient(
      from var(--angle),
      rgba(190, 255, 0, 0.25) 0deg,
      #BEFF00 50deg,
      rgba(190, 255, 0, 0.25) 100deg,
      rgba(190, 255, 0, 0.25) 360deg
    ) border-box;
  color: #BEFF00;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  padding: 15px 35px;
  text-transform: capitalize;
  text-decoration: none;
  box-shadow: 0 0 10px 0 rgba(190, 255, 0, 0.40);
  animation: spinAngle 2.5s linear infinite;
}

@keyframes spinAngle {
  to { --angle: 360deg; }
}
.btn-primary:hover { background: var(--green); color: #000; }

.btn-secondary {
  border-radius: 50px;
  border: 1px solid #000;
  background: #FFF;
  padding: 15px 35px;
  color: #000;
  font-family: Inter;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  text-transform: capitalize;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.40);
}
.btn-secondary:hover { border-color: rgba(255,255,255,.6); }

/* ── right : stat cards ── */
.cards {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.8vh, 20px);
  align-items: flex-end;
}

.card {
  border-radius: 130px;
  border: 1px solid rgba(190, 255, 0, 0.24);
  background: rgba(0, 0, 0, 0.67);
  padding: 30px 40px;
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  width: clamp(190px, 22vw, 270px);
}

.stat-num {
  color: #BEFF00;
  font-family: "FONTSPRING DEMO - Roc Grotesk";
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: -1px;
}

.stat-lbl {
  color: #FFF;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 25px;
  margin-top: 5px;
}

.card-accent {
  color: #FFF;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 25px;
}

/* ── responsive : hero ── */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    padding-top: clamp(56px, 8vh, 80px);
    gap: 32px;
  }
  .cards {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: flex-start;
  }
  .card { width: auto; flex: 1 1 clamp(150px, 40%, 300px); }
  .headline { max-width: 100%; }
  .body-copy { max-width: 100%; }
}

@media (max-width: 480px) {
  .hero-content { padding: 56px 18px 32px; }
  .cards { flex-direction: column; align-items: stretch; }
  .card { width: 100% !important; flex: none; }
  .btns { flex-direction: column; }
  .btn  { justify-content: center; text-align: center; }
  .headline { font-size: clamp(28px, 8vw, 38px); }
}

@media (min-width: 1400px) {
  .hero-content { padding: 120px 30px 80px; }
}


/* ════════════════════════════════════════════════
   SHARED — CTA BAND (reusable)
════════════════════════════════════════════════ */
.cta {
  position: relative;
  width: 89%;
  margin: 0 auto 50px;
  overflow: hidden;
  background: #0a2c0e;
  padding: clamp(48px, 8vh, 90px) clamp(20px, 6vw, 80px);
  text-align: center;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("/services/adabas-to-csharp-migration/image/Find out where your codebase falls before.webp");
  background-size: cover;
  background-repeat: no-repeat;
}
.cta-figures {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .18;
  pointer-events: none;
  mix-blend-mode: screen;
}
.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}
.cta-headline {
  color: #BEFF00;
  text-align: center;
  font-family: "FONTSPRING DEMO - Roc Grotesk";
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 45px;
  letter-spacing: -1.44px;
  margin-bottom: clamp(14px, 2.2vh, 22px);
}
.cta-body {
  color: rgba(255, 255, 255, 0.96);
  text-align: center;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.2px;
  max-width: 800px;
  margin: 0 auto clamp(22px, 3.5vh, 34px);
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #16201a;
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 600;
  font-family: inherit;
  padding: clamp(12px,1.4vh,15px) clamp(22px,2.4vw,30px);
  border-radius: 50px;
  border: 1px solid #000;
  background: #FFF;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.40);
  cursor: pointer;
  transition: transform .15s, box-shadow .25s;
}
.cta-btn:hover  { transform: translateY(-2px); box-shadow: 0 12px 34px rgba(0,0,0,.42); }
.cta-btn:active { transform: scale(.97); }

/* scoped button reset (was a global !important override) */
.btn, .cta-btn, .as-btn, .sc-strip-btn, .green-btn, .as-step-cta {
  font-family: Roboto;
}


/* ════════════════════════════════════════════════
   SECTION 2 / 10 — DESTINATION + RISK CONTROLS
════════════════════════════════════════════════ */
.rc {
  background: #FFFFFF;
  padding: 40px 40px;
}

.rc-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: center;
  gap: 50px;
}

.rc-image img {
  width: 100%;
  display: block;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .10);
}

.rc-badge {
  display: inline-block;
  padding: 11px 24px;
  border-radius: 50px;
  border: 1px solid #C7CBDB;
  background: #297907;
  box-shadow: 0 1px 4px 0 rgba(32, 41, 76, 0.10);
  margin-bottom: 22px;
}

.rc-badge span {
  color: #FFF;
  font-family: Roboto;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.rc-title {
color: #0C021D;
font-family: "FONTSPRING DEMO - Roc Grotesk";
font-size: 50px;
font-style: normal;
font-weight: 700;
line-height: 50px; /* 100% */
letter-spacing: -1.44px;
  margin-bottom: 24px;
}

.rc-content p {
color: rgba(12, 2, 29, 0.60);
font-family: Roboto;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 25px; /* 138.889% */
letter-spacing: -0.2px;
  margin-bottom: 22px;
}

.rc-content p:last-child { margin-bottom: 0; }

@media (max-width: 1100px) {
  .rc-container {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .rc-title br { display: none; }
}

@media (max-width: 640px) {
  .rc { padding: 60px 18px; }
  .rc-title { font-size: 28px; line-height: 36px; }
  .rc-content p { font-size: 15px; }
  .rc-image img { border-radius: 14px; }
}


/* ════════════════════════════════════════════════
   SECTION 3 — ARCHITECT QUESTIONS
════════════════════════════════════════════════ */
.aq {
  background: url("/services/adabas-to-csharp-migration/image/Five questions.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 90px 20px;
}

.aq-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}

.aq-badge {
  display: inline-block;
 border-radius: 50px;
border: 1px solid #C7CBDB;
background: #297907;
box-shadow: 0 1px 4px 0 rgba(32, 41, 76, 0.10);
  border-radius: 999px;
  padding: 10px 22px;
  margin-bottom: 22px;
}

.aq-badge span {
 color: #FFF;
font-family: Roboto;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 16px; /* 100% */
text-transform: capitalize;
  text-transform: uppercase;
}

.aq-title {
 color: #FFF;
font-family: "FONTSPRING DEMO - Roc Grotesk";
font-size: 50px;
font-style: normal;
font-weight: 700;
line-height: 50px; /* 100% */
letter-spacing: -1.44px;
  margin: 0 0 22px;
}

.aq-sub {
color: rgba(255, 255, 255, 0.70);
font-family: Roboto;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 25px; /* 138.889% */
letter-spacing: -0.2px;
  margin: 0;
}

.aq-card {
  background: #0a0d07;
  border: 1px solid #1e2717;
  border-radius: 18px;
  padding: 14px 34px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
}

.aq-item { border-bottom: 1px solid #232d1a; }
.aq-item:last-child { border-bottom: 0; }

.aq-q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: 0;
  padding: 26px 0;
  cursor: pointer;
  text-align: left;
}

.aq-num,
.aq-text {
  color: #FFF;
font-family: Roboto;
font-size: 24px;
font-style: normal;
font-weight: 600;
line-height: 50px; /* 208.333% */
letter-spacing: -1.44px;
  transition: color .25s ease;
}

.aq-num  { flex: 0 0 auto; }
.aq-text { flex: 1 1 auto; }

.aq-item.is-open .aq-num,
.aq-item.is-open .aq-text { color: #BEFF00; }

.aq-icon {
  flex: 0 0 auto;
  width: 14px;
  height: 9px;
  background: #ffffff;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  transition: transform .25s ease, background .25s ease;
}

.aq-item.is-open .aq-icon {
  background: #BEFF00;
  transform: rotate(180deg);
}

.aq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.aq-answer-inner { padding: 0 26px 26px 0; }

.aq-answer-inner p {
color: rgba(255, 255, 255, 0.70);
font-family: Roboto;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 28px; /* 155.556% */
letter-spacing: -0.2px;
  margin: 0;
}

.aq-item.is-open .aq-q { padding-bottom: 14px; }

@media (max-width: 1024px) {
  .aq-container { grid-template-columns: 1fr; gap: 40px; }
  .aq-title { font-size: 34px; }
  .aq-title br, .aq-sub br { display: none; }
}

@media (max-width: 600px) {
  .aq { padding: 60px 16px; }
  .aq-card { padding: 6px 20px; }
  .aq-title { font-size: 27px; }
  .aq-num, .aq-text { font-size: 15.5px; }
}


/* ════════════════════════════════════════════════
   SECTION 5 — CONSTRUCTS TABLE
════════════════════════════════════════════════ */
.tbl {
  background: #FFFFFF;
  color: #16201a;
  padding: 80px 40px;
}
.tbl-wrap {
  max-width: 1240px;
  margin: 0 auto;
  overflow: hidden;
 border-radius: 12px;
border: 1px solid #C5C6D1;
background: #FFF;
box-shadow: 0 4px 6px -1px rgba(0, 32, 91, 0.05), 0 2px 4px -1px rgba(0, 32, 91, 0.03);
  
}
.tbl-grid-cols {
  display: grid;
  grid-template-columns: 1.05fr 1.35fr 1.35fr;
}
/* two-column variant used by the ADABAS concept map */
.tbl-grid-cols.is-two {
  grid-template-columns: 1fr 1fr;
}
.tbl-head { padding: 0; background: #297907; }
.tbl-head .tbl-h {
  font-family: Roboto;
  font-size: 20px;
  font-style: normal;
  padding: 26px 34px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.4px;
  color: #FFFFFF;
}
.tbl-h.is-cobol   { color: #FFFFFF; }
.tbl-h.is-problem { color: #FFFFFF; }
.tbl-h.is-dms     { color: #FFFFFF; }
.tbl-row { padding: 0; border-top: 1px solid #C5C6D1; }
.tbl-row:first-child { border-top: none; }
.tbl-construct {
  background: #F3F8E7;
 color: #000D2F;
font-family: Inter;
font-size: 16px;
font-style: normal;
font-weight: 700;
line-height: 24px; /* 150% */
  font-style: normal;
  padding: 20px 34px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: -0.2px;
  display: flex;
  align-items: center;
}
.tbl-cell.col-problem {
  border-right: 1px solid rgba(0,0,0,.08);
  border-left: 1px solid rgba(0,0,0,.08);
}
.tbl-cell {
  background: #FFFFFF;
color: #444650;
font-family: Inter;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 24px; /* 150% */
  padding: 20px 34px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.2px;
  display: flex;
  align-items: center;
}
.tbl-cell-label { display: none; }

@media (max-width: 760px) {
  .tbl { padding: 60px 18px; }
  .tbl-wrap { border-radius: 18px; }
  .tbl-head { display: none; }
  .tbl-grid-cols, .tbl-grid-cols.is-two { display: block; }
  .tbl-row { padding: 22px 20px; background: #FFFFFF; }
  .tbl-construct {
    background: transparent;
    font-size: 16px;
    padding: 0 0 10px;
    line-height: 26px;
    color: #297907;
    display: block;
  }
  .tbl-cell, .tbl-grid-cols.is-two .tbl-cell { padding: 0; border: 0; display: block; }
  .tbl-cell-label { display: block; font-size: 11px; font-weight: 700; letter-spacing: .04em; margin-bottom: 4px; }
}


/* ════════════════════════════════════════════════
   SECTION 4 — APPROACH
════════════════════════════════════════════════ */
.ap {
  background: #192400;
  padding: 100px 40px;
}

.ap-inner {
  max-width: 1350px;
  margin: 0 auto;
  text-align: left;
}

.ap-badge {
  display: flex;
  justify-content: flex-start;
  margin-bottom: clamp(16px, 2.4vh, 24px);
}

.ap-badge span {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: #297907;
  box-shadow: 0 1px 4px 0 rgba(32, 41, 76, 0.10);
  color: #FFF;
  font-family: Roboto;
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.ap-title {
  font-family: "FONTSPRING DEMO - Roc Grotesk";
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  letter-spacing: -1.44px;
  margin-bottom: 56px;
}

.ap-title .lime  { color: #BEFF00; }
.ap-title .light { color: #FFFFFF; }

/* ── two-column layout ── */
.ap-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: start;
}

/* ── left : long-form block ── */
.ap-block {
  padding-right: 45px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.ap-block p {
color: #FFF;
font-family: Roboto;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 25px; /* 138.889% */
letter-spacing: -0.2px;
  margin-bottom: 24px;
}

.ap-block p:last-child { margin-bottom: 0; }

/* ── right : the two layers ── */
.ap-side {
  padding-left: 45px;
}

.ap-caption {
 color: #FFF;
font-family: Roboto;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 25px; /* 138.889% */
letter-spacing: -0.2px;
  margin-bottom: 22px;
}

.ap-panel {
  background: #F4F4F4;
  border-radius: 22px;
  padding: 32px 30px 34px;
  margin-bottom: 20px;
}

.ap-panel.is-genai {
  background: #F1FFD3;
}

.ap-panel-title {
color: #0C021D;
font-family: Roboto;
font-size: 26px;
font-style: normal;
font-weight: 600;
line-height: 50px; /* 192.308% */
letter-spacing: -1.44px;
  margin-bottom: 20px;
}

.ap-points {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ap-points li {
  position: relative;
  padding-left: 20px;
color: rgba(12, 2, 29, 0.60);
font-family: Roboto;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 28px; /* 155.556% */
letter-spacing: -0.2px;
  margin-bottom: 6px;
}

.ap-points li:last-child { margin-bottom: 0; }

.ap-points li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 10px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(12, 2, 29, 0.45);
}

.ap-note {
 color: #FFF;
font-family: Roboto;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 25px; /* 138.889% */
letter-spacing: -0.2px;
  margin-top: 14px;
  padding: 0 4px;
}

@media (max-width: 1000px) {
  .ap-grid { grid-template-columns: 1fr; }
  .ap-block { padding-right: 0; border-right: 0; padding-bottom: 40px; }
  .ap-side { padding-left: 0; }
}

@media (max-width: 600px) {
  .ap { padding: 60px 18px; }
  .ap-title { font-size: 28px; line-height: 36px; }
  .ap-title br { display: none; }
  .ap-panel { padding: 26px 22px 28px; border-radius: 18px; }
  .ap-panel-title { font-size: 19px; line-height: 28px; }
}


/* ════════════════════════════════════════════════
   SECTION 5 — SOURCE COVERAGE
════════════════════════════════════════════════ */
.sc {
  background: #FFFFFF;
  padding: 100px 40px;
}

.sc-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.sc-badge {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(16px, 2.4vh, 24px);
}

.sc-badge span {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 50px;
  border: 1px solid #C7CBDB;
  background: #297907;
  box-shadow: 0 1px 4px 0 rgba(32, 41, 76, 0.10);
  color: #FFF;
  font-family: Roboto;
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  text-transform: capitalize;
}

.sc-title {
  text-align: center;
  font-family: "FONTSPRING DEMO - Roc Grotesk";
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  letter-spacing: -1.44px;
  margin-bottom: 60px;
}

.sc-title .dark  { color: #000000; }
.sc-title .muted { color: #8A898A; }

.sc-cols {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 40px;
  align-items: start;
}

.sc-col-title {
  color: #297907;
  font-family: "FONTSPRING DEMO - Roc Grotesk";
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: -0.5px;
  margin-bottom: 22px;
}

.sc-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sc-row {
  background: #F6F6F6;
  border-radius: 8px;
  padding: 26px 24px;
  transition: background .25s, transform .25s;
}

.sc-row:hover {
  background: #EFF4EC;
  transform: translateX(4px);
}

.sc-row p {
  color: #0C021D;
  font-family: Roboto;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.2px;
}

.sc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.sc-card {
  border: 1px solid #E4E8E1;
  border-radius: 8px;
  background: #FFFFFF;
  padding: 24px 22px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}

.sc-card:hover {
  transform: translateY(-6px);
  border-color: #297907;
  box-shadow: 0 12px 26px rgba(0, 0, 0, .07);
}

.sc-card-label {
  color: #297907;
  font-family: Roboto;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.sc-card-body {
  color: rgba(12, 2, 29, 0.60);
  font-family: Roboto;
  font-size: 14px;
  font-weight: 400;
  line-height: 23px;
  letter-spacing: -0.2px;
}

.sc-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  background: #F6F6F6;
  border-radius: 8px;
  padding: 20px 26px;
  margin-top: 40px;
}

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

.sc-strip-icon {
  display: inline-flex;
  flex-shrink: 0;
}

.sc-strip-left p {
  color: #0C021D;
  font-family: Roboto;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.2px;
}

.sc-strip-btn {
  display: inline-block;
  border: none;
  border-radius: 50px;
  background: #297907;
  padding: 12px 26px;
  color: #FFFFFF;
  font-family: Roboto;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
}

.sc-strip-btn:hover  { background: #1A4B05; }
.sc-strip-btn:active { transform: scale(.97); }

@media (max-width: 1000px) {
  .sc-cols { grid-template-columns: 1fr; gap: 50px; }
}

@media (max-width: 640px) {
  .sc { padding: 60px 18px; }
  .sc-title { font-size: 28px; line-height: 36px; margin-bottom: 40px; }
  .sc-title br { display: none; }
  .sc-grid { grid-template-columns: 1fr; }
  .sc-col-title { font-size: 19px; }
  .sc-strip { flex-direction: column; align-items: flex-start; }
  .sc-strip-btn { width: 100%; text-align: center; }
}


/* ════════════════════════════════════════════════
   SECTION 6 — MIGRATION PATH (TIMELINE)
════════════════════════════════════════════════ */
.mp {
  background: #141F08;
  padding: 100px 40px;
}

.mp-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.mp-badge {
  display: flex;
  justify-content: center;
  margin-bottom: 22px;
}

.mp-badge span {
  display: inline-block;
  padding: 10px 26px;
  border-radius: 50px;
  background: #297907;
  border: 1px solid rgba(190, 255, 0, 0.35);
  color: #FFF;
  font-family: Roboto;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.mp-title {
  text-align: center;
  color: #FFFFFF;
  font-family: "FONTSPRING DEMO - Roc Grotesk";
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  letter-spacing: -1.44px;
  margin-bottom: 14px;
}

.mp-caption {
  text-align: center;
  color: rgba(255, 255, 255, 0.62);
  font-family: Roboto;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: -0.2px;
  margin-bottom: 46px;
}

.mp-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  padding: 0 6px;
  margin-bottom: 34px;
}

.mp-rail::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, rgba(168, 242, 58, .45), rgba(168, 242, 58, .12));
}

.mp-dot {
  position: relative;
  z-index: 1;
  justify-self: start;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #BEFF00;
  box-shadow: 0 0 10px rgba(190, 255, 0, .55);
}

.mp-dot.is-active {
  box-shadow: 0 0 0 6px rgba(190, 255, 0, .16), 0 0 14px rgba(190, 255, 0, .7);
}

.mp-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.mp-card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(190, 255, 0, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  padding: 26px 24px;
  transition: transform .28s, border-color .28s, background .28s;
}

.mp-card:hover {
  transform: translateY(-8px);
  border-color: rgba(190, 255, 0, 0.42);
  background: rgba(190, 255, 0, 0.05);
}

.mp-duration {
  color: #BEFF00;
  font-family: Roboto;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.mp-card-title {
  color: #FFFFFF;
  font-family: "FONTSPRING DEMO - Roc Grotesk";
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.mp-card-body {
  color: rgba(255, 255, 255, 0.60);
  font-family: Roboto;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.2px;
  margin-bottom: 30px;
}

.mp-phase {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: rgba(255, 255, 255, 0.55);
  font-family: Roboto;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.mp-phase-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #BEFF00;
}

@media (max-width: 1000px) {
  .mp-cards { grid-template-columns: 1fr 1fr; }
  .mp-rail  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .mp { padding: 60px 18px; }
  .mp-title { font-size: 28px; line-height: 36px; }
  .mp-cards { grid-template-columns: 1fr; }
  .mp-rail  { display: none; }
  .mp-card-body { margin-bottom: 22px; }
}


/* ════════════════════════════════════════════════
   SECTION 7 — FOUR WAYS / OPTION COMPARISON
════════════════════════════════════════════════ */
.fw {
  background: #FFFFFF;
  padding: 100px 40px;
}

.fw-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.fw-badge {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(16px, 2.4vh, 24px);
}

.fw-badge span {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 50px;
  border: 1px solid #C7CBDB;
  background: #297907;
  box-shadow: 0 1px 4px 0 rgba(32, 41, 76, 0.10);
  color: #FFF;
  font-family: Roboto;
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  text-transform: capitalize;
}

.fw-title {
  text-align: center;
  font-family: "FONTSPRING DEMO - Roc Grotesk";
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  letter-spacing: -1.44px;
  margin-bottom: 16px;
}

.fw-title .dark  { color: #000000; }
.fw-title .muted { color: #8A898A; }

.fw-caption {
  text-align: center;
  color: rgba(12, 2, 29, 0.60);
  font-family: Roboto;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: -0.2px;
  margin-bottom: 40px;
}

.fw-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: start;
}

.fw-card {
  border-radius: 10px;
  background: #F6F6F6;
  padding: 30px 26px;
  transition: transform .28s, box-shadow .28s;
}

.fw-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .08);
}

.fw-card-title {
  color: #0C021D;
  font-family: Roboto;
  font-size: 19px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: -0.4px;
  margin-bottom: 22px;
}

.fw-label {
  color: #297907;
  font-family: Roboto;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  margin-bottom: 10px;
}

.fw-label.is-fail { color: #CB0000; }

.fw-body {
  color: rgba(12, 2, 29, 0.60);
  font-family: Roboto;
  font-size: 14px;
  font-weight: 400;
  line-height: 23px;
  letter-spacing: -0.2px;
  margin-bottom: 24px;
}

.fw-body:last-child { margin-bottom: 0; }

.fw-card.is-picked {
  background: #297907;
  box-shadow: 0 14px 34px rgba(41, 121, 7, .28);
}

.fw-card.is-picked .fw-card-title { color: #FFFFFF; }
.fw-card.is-picked .fw-label      { color: #BEFF00; }
.fw-card.is-picked .fw-body       { color: rgba(255, 255, 255, 0.88); }

.fw-card.is-picked:hover { box-shadow: 0 20px 44px rgba(41, 121, 7, .36); }

@media (max-width: 1100px) {
  .fw-cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .fw { padding: 60px 18px; }
  .fw-title { font-size: 28px; line-height: 36px; }
  .fw-title br { display: none; }
  .fw-cards { grid-template-columns: 1fr; }
  .fw-card { padding: 26px 22px; }
}


/* ════════════════════════════════════════════════
   SECTION 8 — AFTER CUTOVER
════════════════════════════════════════════════ */
.ac {
  background: #FFFFFF;
  padding: 40px 40px;
}

.ac-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 47% 53%;
  align-items: center;
  gap: 50px;
}

.ac-badge {
  display: inline-block;
  padding: 11px 24px;
  border-radius: 50px;
  border: 1px solid #C7CBDB;
  background: #297907;
  box-shadow: 0 1px 4px 0 rgba(32, 41, 76, 0.10);
  margin-bottom: 22px;
}

.ac-badge span {
  color: #FFF;
  font-family: Roboto;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.ac-title {
  color: #0C021D;
  font-family: "FONTSPRING DEMO - Roc Grotesk";
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  letter-spacing: -1.44px;
  margin-bottom: 24px;
}

.ac-content p {
  color: rgba(12, 2, 29, 0.60);
  font-family: Roboto;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: -0.2px;
  margin-bottom: 22px;
}

.ac-content p:last-child { margin-bottom: 0; }

.ac-image img {
  width: 100%;
  display: block;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .10);
}

@media (max-width: 1100px) {
  .ac-container { grid-template-columns: 1fr; gap: 44px; }
  .ac-image { order: -1; }
  .ac-title br { display: none; }
}

@media (max-width: 640px) {
  .ac { padding: 60px 18px; }
  .ac-title { font-size: 28px; line-height: 36px; }
  .ac-content p { font-size: 15px; }
  .ac-image img { border-radius: 14px; }
}


/* ════════════════════════════════════════════════
   SECTION 9 — WHY US
════════════════════════════════════════════════ */
.wu {
  background: #FFFFFF;
  padding: 70px 40px;
}

.wu-panel {
  max-width: 1180px;
  margin: 0 auto;
  border: 1px solid #EAEAEA;
  border-radius: 18px;
  background: #FCFCFC;
  padding: 50px clamp(24px, 4vw, 60px) 55px;
}

.wu-badge {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.wu-badge span {
  display: inline-block;
  padding: 11px 26px;
  border-radius: 50px;
  border: 1px solid #C7CBDB;
  background: #297907;
  box-shadow: 0 1px 4px 0 rgba(32, 41, 76, 0.10);
  color: #FFF;
  font-family: Roboto;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.wu-title {
  text-align: center;
  font-family: "FONTSPRING DEMO - Roc Grotesk";
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  letter-spacing: -1.44px;
  margin-bottom: 46px;
}

.wu-title .muted { color: #8A898A; }
.wu-title .dark  { color: #000000; }

.wu-list {
  display: flex;
  flex-direction: column;
}

.wu-row {
  display: grid;
  grid-template-columns: 0.42fr 1px 1.58fr;
  align-items: center;
  gap: 0 26px;
  padding: 22px 0;
}

.wu-row-title {
  text-align: right;
  color: #0C021D;
  font-family: "FONTSPRING DEMO - Roc Grotesk";
  font-size: 19px;
  font-weight: 700;
  line-height: 27px;
  letter-spacing: -0.5px;
}

.wu-rail {
  position: relative;
  align-self: stretch;
  background: #E4E4E4;
}

.wu-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #297907;
  box-shadow: 0 0 0 4px #FCFCFC;
}

.wu-row-body {
  color: rgba(12, 2, 29, 0.72);
  font-family: Roboto;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.2px;
}

@media (max-width: 860px) {
  .wu-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px 0;
    border-bottom: 1px solid #EDEDED;
  }
  .wu-row:last-child { border-bottom: 0; }
  .wu-row-title { text-align: left; font-size: 18px; }
  .wu-rail { display: none; }
}

@media (max-width: 640px) {
  .wu { padding: 50px 18px; }
  .wu-panel { padding: 36px 22px 40px; }
  .wu-title { font-size: 27px; line-height: 35px; margin-bottom: 30px; }
}


/* ════════════════════════════════════════════════
   SECTION 11 — ENSURING FUNCTIONAL EQUIVALENCE
════════════════════════════════════════════════ */
.fe {
  background: #F6F6F6;
  padding: 40px 40px;
}

.fe-inner {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.fe-badge {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.fe-badge span {
  display: inline-block;
  padding: 11px 26px;
  border-radius: 50px;
  border: 1px solid #C7CBDB;
  background: #297907;
  box-shadow: 0 1px 4px 0 rgba(32, 41, 76, 0.10);
  color: #FFF;
  font-family: Roboto;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.fe-title {
  color: #000000;
  font-family: "FONTSPRING DEMO - Roc Grotesk";
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  letter-spacing: -1.44px;
  margin-bottom: 18px;
}

.fe-lead {
  max-width: 940px;
  margin: 0 auto 46px;
  color: rgba(12, 2, 29, 0.60);
  font-family: Roboto;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: -0.2px;
}

.fe-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  text-align: left;
  margin-bottom: 44px;
}

.fe-card {
  background: #FFFFFF;
  border: 1px solid #E4E8E1;
  border-radius: 10px;
  padding: 28px 24px;
  transition: transform .28s, box-shadow .28s, border-color .28s;
}

.fe-card:hover {
  transform: translateY(-6px);
  border-color: #297907;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .07);
}

.fe-dash {
  display: block;
  width: 30px;
  height: 3px;
  border-radius: 3px;
  background: #6FBF3A;
  margin-bottom: 18px;
}

.fe-card-title {
  color: #0C021D;
  font-family: "FONTSPRING DEMO - Roc Grotesk";
  font-size: 19px;
  font-weight: 700;
  line-height: 27px;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.fe-card-body {
  color: rgba(12, 2, 29, 0.62);
  font-family: Roboto;
  font-size: 14px;
  font-weight: 400;
  line-height: 23px;
  letter-spacing: -0.2px;
}

.fe-note {
  max-width: 980px;
  margin: 0 auto;
  color: rgba(12, 2, 29, 0.60);
  font-family: Roboto;
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: -0.2px;
}

@media (max-width: 1000px) {
  .fe-cards { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .fe { padding: 60px 18px; }
  .fe-title { font-size: 27px; line-height: 35px; }
  .fe-lead { font-size: 15px; margin-bottom: 32px; }
}


/* ════════════════════════════════════════════════
   SECTION 12 — WHAT YOU GET BACK (HUB)
════════════════════════════════════════════════ */
.wg {
  background: #FFFFFF;
  padding: 40px 40px;
}

.wg-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.wg-badge {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.wg-badge span {
  display: inline-block;
  padding: 11px 26px;
  border-radius: 50px;
  border: 1px solid #C7CBDB;
  background: #297907;
  box-shadow: 0 1px 4px 0 rgba(32, 41, 76, 0.10);
  color: #FFF;
  font-family: Roboto;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.wg-title {
  text-align: center;
  color: #000000;
  font-family: "FONTSPRING DEMO - Roc Grotesk";
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  letter-spacing: -1.44px;
  margin-bottom: 14px;
}

.wg-caption {
  text-align: center;
  color: rgba(12, 2, 29, 0.60);
  font-family: Roboto;
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: -0.2px;
  margin-bottom: 46px;
}

.wg-hub {
  display: grid;
  grid-template-columns: 1fr 250px 1fr;
  align-items: center;
  gap: 0 46px;
}

.wg-col {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.wg-card {
  position: relative;
  background: #F4F5F4;
  border-radius: 8px;
  padding: 26px 24px;
  transition: transform .28s, box-shadow .28s;
}

.wg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .08);
}

.wg-dash {
  display: block;
  width: 30px;
  height: 3px;
  border-radius: 3px;
  background: #6FBF3A;
  margin-bottom: 16px;
}

.wg-dash.is-teal { background: #2E7D7B; }
.wg-dash.is-red  { background: #CB0000; }

.wg-card-title {
  color: #0C021D;
  font-family: "FONTSPRING DEMO - Roc Grotesk";
  font-size: 19px;
  font-weight: 700;
  line-height: 27px;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.wg-card-body {
  color: rgba(12, 2, 29, 0.62);
  font-family: Roboto;
  font-size: 14px;
  font-weight: 400;
  line-height: 23px;
  letter-spacing: -0.2px;
}

.wg-col-left  .wg-a { margin-left: 56px; }
.wg-col-left  .wg-c { margin-left: 56px; }
.wg-col-right .wg-d { margin-right: 56px; }
.wg-col-right .wg-f { margin-right: 56px; }

.wg-centre { text-align: center; }

.wg-core {
  background: #1E3A05;
  border-radius: 8px;
  padding: 42px 24px;
  box-shadow: 0 18px 40px rgba(30, 58, 5, .22);
}

.wg-core-label {
  color: rgba(255, 255, 255, 0.65);
  font-family: Roboto;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.wg-core-title {
  color: #FFFFFF;
  font-family: "FONTSPRING DEMO - Roc Grotesk";
  font-size: 21px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.5px;
}

.wg-core-note {
  color: rgba(12, 2, 29, 0.60);
  font-family: Roboto;
  font-size: 13px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: -0.2px;
  margin-top: 16px;
}

/* connector lines */
.wg-col-left .wg-card::after,
.wg-col-right .wg-card::before {
  content: '';
  position: absolute;
  top: 50%;
  width: 90px;
  height: 1px;
  background: #DDE0DC;
  pointer-events: none;
}

.wg-col-left .wg-card::after {
  left: 100%;
  transform-origin: left center;
}

.wg-col-right .wg-card::before {
  right: 100%;
  transform-origin: right center;
}

.wg-col-left  .wg-a::after  { transform: rotate(24deg); }
.wg-col-left  .wg-b::after  { transform: rotate(0deg); width: 148px; }
.wg-col-left  .wg-c::after  { transform: rotate(-24deg); }

.wg-col-right .wg-d::before { transform: rotate(-24deg); }
.wg-col-right .wg-e::before { transform: rotate(0deg); width: 148px; }
.wg-col-right .wg-f::before { transform: rotate(24deg); }

@media (max-width: 1080px) {
  .wg-hub { grid-template-columns: 1fr 1fr; gap: 26px; }
  .wg-centre {
    grid-column: 1 / -1;
    order: -1;
    max-width: 320px;
    margin: 0 auto 20px;
  }
  .wg-col { gap: 26px; }
  .wg-col-left  .wg-a,
  .wg-col-left  .wg-c { margin-left: 0; }
  .wg-col-right .wg-d,
  .wg-col-right .wg-f { margin-right: 0; }
  .wg-col-left  .wg-card::after,
  .wg-col-right .wg-card::before { display: none; }
}

@media (max-width: 700px) {
  .wg { padding: 60px 18px; }
  .wg-title { font-size: 27px; line-height: 35px; }
  .wg-caption { margin-bottom: 32px; }
  .wg-hub { grid-template-columns: 1fr; }
  .wg-centre { margin-bottom: 6px; }
}


/* ════════════════════════════════════════════════
   SECTION 13 — WHERE THIS WORK HAS SHIPPED
════════════════════════════════════════════════ */
.ws {
  background: #FFFFFF;
  padding: 80px 40px 0;
}

.ws-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.ws-badge {
  display: flex;
  justify-content: center;
  margin-bottom: 22px;
}

.ws-badge span {
  display: inline-block;
  padding: 11px 26px;
  border-radius: 50px;
  border: 1px solid #C7CBDB;
  background: #297907;
  box-shadow: 0 1px 4px 0 rgba(32, 41, 76, 0.10);
  color: #FFF;
  font-family: Roboto;
  font-size: 13px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.ws-title {
  text-align: center;
  color: #000000;
  font-family: "FONTSPRING DEMO - Roc Grotesk";
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  letter-spacing: -1.44px;
  margin-bottom: 24px;
}

.ws-body {
  text-align: center;
  color: rgba(12, 2, 29, 0.60);
  font-family: Roboto;
  font-size: 14.5px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.2px;
  margin: 0 auto 26px;
}

.ws-body.is-narrow {
  max-width: 880px;
  margin-bottom: 44px;
}

.ws-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.ws-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 130px;
  padding: 26px 20px;
  border-radius: 100px;
  background: #0A0A0A;
  transition: transform .28s, box-shadow .28s;
}

.ws-pill:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .22);
}

.ws-num {
  color: #BEFF00;
  font-family: "FONTSPRING DEMO - Roc Grotesk";
  font-size: 34px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: -1px;
}

.ws-lbl {
  color: #FFFFFF;
  font-family: Roboto;
  font-size: 11px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: center;
}

@media (max-width: 900px) {
  .ws-stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .ws { padding: 60px 18px 0; }
  .ws-title { font-size: 26px; line-height: 34px; }
  .ws-title br { display: none; }
  .ws-body { font-size: 14px; }
  .ws-stats { grid-template-columns: 1fr; }
  .ws-pill { min-height: 110px; border-radius: 70px; }
}


/* ════════════════════════════════════════════════
   SECTION 14 — START YOUR ASSESSMENT (STEPPER)
════════════════════════════════════════════════ */
.as {
  padding: clamp(24px, 4vh, 56px) clamp(20px, 5vw, 64px);
  background: url("/services/adabas-to-csharp-migration/image/Start Your.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 40px;
}

.as-card {
  position: relative;
  margin: 0 auto;
  border-radius: 26px;
  overflow: hidden;
  padding: clamp(36px, 4vw, 68px);
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.as-left, .as-right { position: relative; z-index: 1; }

.as-title {
  color: #FFF;
  font-family: "FONTSPRING DEMO - Roc Grotesk";
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 50px;
  letter-spacing: -1.44px;
  text-transform: capitalize;
  margin-bottom: clamp(18px, 2.6vh, 26px);
}

.as-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 35px;
  border-radius: 1000px;
  background: rgba(255, 255, 255, 0.20);
  color: #FFF;
  text-align: center;
  font-family: Roboto;
  border: none;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: -0.2px;
  cursor: pointer;
  margin-bottom: clamp(16px, 2.4vh, 22px);
  transition: background .2s, border-color .2s;
}

.as-steps { position: relative; }

.as-steps::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 20px;
  bottom: 20px;
  border-left: 3px dashed #FFFFFF33;
  width: 2px;
  background: none;
  z-index: 0;
}

.as-step {
  position: relative;
  z-index: 1;
  display: flex;
  gap: clamp(16px, 1.8vw, 24px);
}

.as-step + .as-step { margin-top: clamp(26px, 4vh, 42px); }

.as-num {
  flex-shrink: 0;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-family: Inter;
  font-size: 23px;
  font-style: normal;
  font-weight: 500;
  line-height: 40.669px;
}

.as-num.is-on {
  background: url("/services/adabas-to-csharp-migration/image/Ellipse white.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #0a2c10;
  box-shadow: 0 0 18px rgba(143,232,52,.5);
}

.as-num.is-off {
  background: url("/services/adabas-to-csharp-migration/image/Ellipse green.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 2px solid rgba(255,255,255,.35);
  color: #000;
}

.as-step-title {
  color: #FFF;
  font-family: Inter;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px;
  margin-bottom: 7px;
}

.as-step-body {
  color: #D2CFCF;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28.708px;
}

.as-step-cta {
  margin-top: 14px;
  padding: 10px 24px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 50px;
  background: transparent;
  color: #BEFF00;
  font-family: Roboto;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}

.as-step-cta:hover {
  background: #BEFF00;
  border-color: #BEFF00;
  color: #0D1100;
}

@media (max-width: 860px) {
  .as-card { grid-template-columns: 1fr; gap: 36px; }
  .as-title { font-size: 30px; line-height: 40px; }
}


/* ════════════════════════════════════════════════
   SECTION 15 — FAQ ACCORDION
════════════════════════════════════════════════ */
.faq {
  position: relative;
  background: #ffffff;
  color: #16201a;
  padding: clamp(56px, 9vh, 100px) clamp(20px, 6vw, 80px) clamp(64px, 10vh, 110px);
  overflow: hidden;
}

.faq::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: .3;
  z-index: 0;
  background: url("/services/hpe-nonstop-modernization/images/bg gradient SVG.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
}

.faq-inner { position: relative; z-index: 1; max-width: 840px; margin: 0 auto; }

.faq-badge { display: flex; justify-content: center; margin-bottom: clamp(16px, 2.4vh, 24px); }

.faq-badge span {
  display: inline-block;
  border-radius: 50px;
  border: 1px solid #C7CBDB;
  background: #297907;
  box-shadow: 0 1px 4px 0 rgba(32, 41, 76, 0.10);
  padding: 12px 25px;
  color: #FFF;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  text-transform: capitalize;
}

.faq-title {
  color: #000;
  text-align: center;
  font-family: "FONTSPRING DEMO - Roc Grotesk";
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 50px;
  letter-spacing: -1.44px;
  margin-bottom: clamp(26px, 4vh, 44px);
}

.faq-label {
  color: #676D79;
  font-family: Inter;
  font-size: 15px;
  font-style: normal;
  text-align: center;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: clamp(16px, 2.4vh, 22px);
}

.faq-list { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  border-radius: 12px;
  background: #FFF;
  box-shadow: 0 0 1px 0 rgba(31, 34, 41, 0.24), 0 2px 6px 0 rgba(31, 34, 41, 0.04);
  overflow: hidden;
}

.faq-item.is-extra { display: none; }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #1A1D23;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  padding: clamp(15px, 2vh, 19px) clamp(18px, 2vw, 24px);
}

.faq-icon { flex-shrink: 0; width: 18px; height: 18px; position: relative; transition: transform .3s ease; }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; background: #3a7afe; border-radius: 2px; }
.faq-icon::before { left: 0; top: 8px; width: 18px; height: 2px; }
.faq-icon::after  { left: 8px; top: 0; width: 2px; height: 18px; }
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }

.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .32s ease; }
.faq-q[aria-expanded="true"] + .faq-answer { grid-template-rows: 1fr; }
.faq-answer-inner { overflow: hidden; }
.faq-answer-inner p {
  padding: 0 clamp(18px, 2vw, 24px) clamp(16px, 2.2vh, 20px);
  font-size: 16px;
  line-height: 1.7;
  color: #6a766f;
  font-family: 'Inter';
}

.faq-more { display: flex; justify-content: center; margin-top: clamp(24px, 4vh, 38px); }

.faq-more button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: 48px;
  background: #FFF;
  box-shadow: 0 0 0 1px #E1E5EB inset, 0 1px 3px 0 rgba(31, 34, 41, 0.08);
  padding: 11px 22px;
  color: #2D3139;
  text-align: center;
  border: none;
  font-family: Inter;
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}

.faq-more button:hover { background: #f5f6f3; }
.faq-more button svg { width: 16px; height: 16px; color: #3a7afe; }

.faq-q:focus-visible,
.faq-more button:focus-visible { outline: 2px solid #2f9438; outline-offset: 2px; }

@media (max-width: 640px) {
  .faq-title { font-size: 28px; line-height: 36px; }
  .faq-title br { display: none; }
}


/* ════════════════════════════════════════════════
   SECTION 16 — FURTHER READING
════════════════════════════════════════════════ */
.fr {
  background: #FFFFFF;
  padding: 70px 40px 90px;
}

.fr-inner {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.fr-badge {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.fr-badge span {
  display: inline-block;
  padding: 11px 26px;
  border-radius: 50px;
  border: 1px solid #C7CBDB;
  background: #297907;
  box-shadow: 0 1px 4px 0 rgba(32, 41, 76, 0.10);
  color: #FFF;
  font-family: Roboto;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.fr-title {
  color: #000000;
  font-family: "FONTSPRING DEMO - Roc Grotesk";
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  letter-spacing: -1.44px;
  margin-bottom: 40px;
}

.fr-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  text-align: left;
}

.fr-card {
  display: block;
  background: #F6F6F6;
  border-radius: 10px;
  padding: 28px 26px;
  text-decoration: none;
  transition: transform .28s, box-shadow .28s, background .28s;
}

.fr-card:hover {
  transform: translateY(-6px);
  background: #EFF4EC;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .07);
}

.fr-card-body {
  color: rgba(12, 2, 29, 0.60);
  font-family: Roboto;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.2px;
  margin-bottom: 12px;
}

.fr-card-link {
  display: block;
  color: #297907;
  font-family: Roboto;
  font-size: 17px;
  font-weight: 600;
  line-height: 27px;
  letter-spacing: -0.3px;
}

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

@media (max-width: 640px) {
  .fr { padding: 50px 18px 70px; }
  .fr-title { font-size: 27px; line-height: 35px; }
}


/* ════════════════════════════════════════════════
   FINAL CTA
════════════════════════════════════════════════ */
.COBOL-cta {
  position: relative;
  overflow: hidden;
  border-radius: 34px 34px 0 0;
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 90px 20px;
  background: #020202;
}

.COBOL-cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.COBOL-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.38);
}

.COBOL-cta-content {
  position: relative;
  z-index: 2;
  width: 66%;
}

.COBOL-heading {
  color: #FFF;
  text-align: center;
  font-family: "FONTSPRING DEMO - Roc Grotesk", Arial, sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 58px;
  letter-spacing: -0.9px;
  margin-bottom: 20px;
}

.COBOL-description {
  font-family: Roboto;
  color: #FFF;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 40px;
}

.COBOL-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.green-btn {
    position: relative;
    overflow: hidden;
    isolation: isolate;

    border-radius: 50px;
    background: #0D1100;
    padding: 20px;
    font-family: Inter, sans-serif;
    color: #BEFF00;
    box-shadow: 0 0 10px 0 rgba(190, 255, 0, 0.40);
    font-size: 15px;
    font-weight: 500;
    line-height: 20px;
    text-transform: capitalize;
    cursor: pointer;
    border: none;
}

/* Rotating light — square, oversized, centered */
.green-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    aspect-ratio: 1;
    translate: -50% -50%;

    background: conic-gradient(
        from 0deg,
        rgba(190, 255, 0, 0) 0deg,
        #BEFF00 45deg,
        rgba(190, 255, 0, 0) 90deg,
        rgba(190, 255, 0, 0) 360deg
    );

    animation: rotateBorder 2.5s linear infinite;
    z-index: -2;
}

/* Inner fill — the gap left around it is your border */
.green-btn::after {
    content: "";
    position: absolute;
    inset: 2px;
    border-radius: 50px;
    background: #0D1100;
    z-index: -1;
}

@keyframes rotateBorder {
    to { transform: rotate(360deg); }
}

@media (max-width: 860px) {
  .COBOL-cta-content { width: 90%; }
  .COBOL-heading { font-size: 32px; line-height: 40px; }
  .COBOL-description { font-size: 16px; line-height: 27px; }
}


/* ════════════════════════════════════════════════
   PAGE-SCOPED FOOTER OVERRIDES
════════════════════════════════════════════════ */
.adabas-csharppage .footer-cta { display: none; }
.adabas-csharppage .footer-section { border-radius: 0 !important; }