@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;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900&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; }


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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:url("image/hero.bg.webp");
background-size:cover;
background-position: center;
background-repeat: no-repeat;
}


/* ════════════════════════════════════════════════
   SECTION 2 — THE NATURAL/ADABAS PROBLEM
════════════════════════════════════════════════ */
.pb {
  background: #FFFFFF;
  padding: 90px 40px;
}

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

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

.pb-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;
}

.pb-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;
}

.pb-caption {
  max-width: 900px;
  margin: 0 auto 46px;
  color: rgba(12, 2, 29, 0.60);
  font-family: Roboto;
  font-size: 14.5px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.2px;
}

.pb-sub {
  color: #0C021D;
  font-family: "FONTSPRING DEMO - Roc Grotesk";
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: -0.5px;
  margin-bottom: 30px;
}

/* ── 6-column track: 3 cards up top, 2 centred below ── */
.pb-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  text-align: left;
  align-items: start;
  margin-bottom: 40px;
}

.pb-card {
  grid-column: span 2;
  background: url("image/normal-image.webp") center center / cover no-repeat;
  /* border-radius: 10px; */
  padding: 30px 26px;
  min-height: 230px;
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}

/* second row — shifted one column right so the pair sits centred */
.pb-card:nth-child(4) { grid-column: 2 / span 2; }
.pb-card:nth-child(5) { grid-column: 4 / span 2; }

/* ── hover treatment (applies to every card) ── */
.pb-card:hover {
  transform: translateY(-6px);
    background: url("image/on-hover.webp") center center / cover no-repeat;
    box-shadow: 0 18px 40px rgba(30, 58, 5, .28);
}

.pb-card-title {
  color: #0C021D;
  font-family: "Roboto";
  font-size: 19px;
  font-weight: 700;
  line-height: 27px;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
  transition: color .3s ease;
}

.pb-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;
  transition: color .3s ease;
}

.pb-card:hover .pb-card-title { color: #BEFF00; }
.pb-card:hover .pb-card-body  { color: rgba(255, 255, 255, 0.78); }

.pb-note {
  color: rgba(12, 2, 29, 0.55);
  font-family: Roboto;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.2px;
}

/* ── responsive ── */
@media (max-width: 1000px) {
  .pb-grid { grid-template-columns: repeat(4, 1fr); }

  .pb-card { grid-column: span 2; min-height: 0; }

  /* reset the centring offsets — 2 per row from here down */
  .pb-card:nth-child(4) { grid-column: span 2; }
  .pb-card:nth-child(5) { grid-column: 2 / span 2; }
}

@media (max-width: 640px) {
  .pb { padding: 60px 18px; }

  .pb-title {
    font-size: 27px;
    line-height: 35px;
  }

  .pb-title br { display: none; }

  .pb-caption { margin-bottom: 32px; }

  .pb-sub { font-size: 19px; }

  .pb-grid { grid-template-columns: 1fr; }

  .pb-card,
  .pb-card:nth-child(4),
  .pb-card:nth-child(5) { grid-column: 1 / -1; padding: 26px 22px; }
}


/* ════════════════════════════════════════════════
   SECTION 3 — THE OUTPUT / MIGRATED STACK
════════════════════════════════════════════════ */
.ot {
  background: #FBFFF1;
  padding: 90px 40px;
}

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

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

.ot-badge span {
  display: inline-block;
  padding: 10px 24px;
  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: 12px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

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

.ot-caption {
  max-width: 780px;
  margin: 0 auto 50px;
  color: rgba(12, 2, 29, 0.60);
  font-family: Roboto;
  font-size: 14px;
  font-weight: 400;
  line-height: 23px;
  letter-spacing: -0.2px;
}

/* ── mapping rows ── */
.ot-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 26px;
  text-align: left;
}

/* continuous rail behind the arrow column */
.ot-list::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 24px;
  bottom: 24px;
  width: 1px;
  margin-left: -0.5px;
  background: #D8DED4;
  z-index: 0;
}

.ot-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 46px 1fr;
  align-items: center;
  gap: 0 18px;
  padding: 14px 0;
}

.ot-from { text-align: right; }
.ot-to   { text-align: left; }

.ot-label {
  color: #8A898A;
  font-family: Roboto;
  font-size: 10px;
  font-weight: 500;
  line-height: 14px;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.ot-label.is-target { color: #206393; }

.ot-source {
  color: #0C021D;
  font-family: "inter";
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
  letter-spacing: -0.4px;
}

.ot-target {
  color: #000D2F;
  font-family: "inter";
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
  letter-spacing: -0.4px;
}

/* ── arrow marker ── */
.ot-arrow {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #7FB808;
  color: #000;
  box-shadow: 0 0 0 5px #FAFAF7;
  transition: transform .25s ease, background .25s ease;
}

.ot-arrow svg {
  width: 15px;
  height: 15px;
}


/* ── closing strip ── */
.ot-strip {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  background: linear-gradient(120deg, #297907 0%, #1E5C05 100%);
  border-radius: 10px;
  padding: 24px 28px;
  margin-top: 50px;
  box-shadow: 0 16px 34px rgba(41, 121, 7, .22);
}

.ot-strip-icon {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #BEFF00;
  box-shadow: inset 0 0 0 5px #1E5C05;
}

.ot-strip p {
  color: #FFFFFF;
  font-family: inter;
  font-size: 18px;
  font-weight: 500;
  line-height: 23px;
  letter-spacing: -0.2px;
}

/* ── responsive ── */
@media (max-width: 780px) {
  .ot-list::before { display: none; }

  .ot-row {
    grid-template-columns: 1fr;
    gap: 10px;
    background: #FFFFFF;
    border: 1px solid #E8EBE5;
    border-radius: 10px;
    padding: 22px 20px;
  }

  .ot-from,
  .ot-to { text-align: left; }

  .ot-arrow {
    justify-self: start;
    width: 26px;
    height: 26px;
    box-shadow: none;
    transform: rotate(90deg);
  }

  .ot-row:hover .ot-arrow { transform: rotate(90deg) scale(1.12); }
}

@media (max-width: 640px) {
  .ot { padding: 60px 18px; }

  .ot-title {
    font-size: 27px;
    line-height: 35px;
  }

  .ot-list { gap: 14px; }

  .ot-source,
  .ot-target { font-size: 16px; }

  .ot-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 22px 20px;
  }
}


/* ════════════════════════════════════════════════
   SECTION 4 — APPROACH (TWO LAYERS)
════════════════════════════════════════════════ */
.ad {
  background: radial-gradient(circle at 50% 0%, #1B2A0A 0%, #131C07 45%, #0C1204 100%);
  padding: 80px 40px;
}

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

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

.ad-badge span {
  display: inline-block;
  padding: 9px 24px;
  border-radius: 50px;
  background: #4E9E1E;
  border: 1px solid rgba(190, 255, 0, 0.40);
  color: #FFF;
  font-family: Roboto;
  font-size: 11px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: .10em;
  text-transform: uppercase;
}

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

.ad-title .light  { color: #FFFFFF; }
.ad-title .accent { color: #BEFF00; }

.ad-caption {
  color: rgba(255, 255, 255, 0.66);
  font-family: Roboto;
  font-size: 14px;
  font-weight: 400;
  line-height: 23px;
  letter-spacing: -0.2px;
  margin-bottom: 44px;
}

/* ── two panels ── */
.ad-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  text-align: left;
  align-items: start;
}

.ad-card {
  background: #FFFFFF;
  border-radius: 14px;
  padding: 30px 32px;
  transition: transform .28s ease, box-shadow .28s ease;
}

.ad-card.is-accent {
  background: #F2FBD2;
}

.ad-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .30);
}

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

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

.ad-list li {
  position: relative;
  padding-left: 20px;
  color: rgba(12, 2, 29, 0.68);
  font-family: Roboto;
  font-size: 14px;
  font-weight: 400;
  line-height: 23px;
  letter-spacing: -0.2px;
}

.ad-list li + li { margin-top: 12px; }

.ad-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4E9E1E;
}

.ad-note {
  max-width: 10s00px;
  margin: 44px auto 0;
  color: rgba(255, 255, 255, 0.62);
  font-family: Roboto;
  font-size: 13.5px;
  font-weight: 400;
  line-height: 23px;
  letter-spacing: -0.2px;
}

/* ── responsive ── */
@media (max-width: 860px) {
  .ad-cols { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .ad { padding: 56px 18px; }

  .ad-title {
    font-size: 26px;
    line-height: 34px;
  }

  .ad-title .light,
  .ad-title .accent { display: block; }

  .ad-caption { margin-bottom: 30px; }

  .ad-card { padding: 26px 22px; }

  .ad-card-title { font-size: 19px; line-height: 27px; }

  .ad-note { margin-top: 32px; }
}


/* ════════════════════════════════════════════════
   SECTION 5 — NATURAL/ADABAS COVERAGE
════════════════════════════════════════════════ */
.cv {
  background: #FAFAF7;
  padding: 80px 40px;
}

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

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

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

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

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

.cv-sub {
  color: #000D2F;
  font-family: 'Roboto';
  font-size: 17px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 36px;
}

.cv-sub.is-spaced { margin-top: 70px; }

/* ════ versions rail ════ */
.cv-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-items: start;
}

.cv-rail::before {
  content: '';
  position: absolute;
  left: 10%;
  right: 10%;
  top: 53px;
  height: 0;
  border-top: 2px dashed #9DC97F;
  z-index: 0;
}

.cv-node {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.cv-node-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  /* background: #E6F4D8; */
  color: #297907;
  box-shadow: 0 0 0 6px #FAFAF7;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}

.cv-node-icon svg { width: 30px; height: 30px; }

/* .cv-node:hover .cv-node-icon {
  background: #297907;
  color: #FFFFFF;
  transform: translateY(-4px);
} */

.cv-node-text {
  color: rgba(12, 2, 29, 0.66);
  font-family: inter;
  font-size: 15px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: -0.1px;
  margin-top: 20px;
}

/* ════ constructs hub ════ */
.cv-hub {
  display: grid;
  grid-template-columns: 1fr 300px 1fr;
  grid-template-rows: auto auto auto;
  align-items: center;
  justify-items: center;
  gap: 26px 20px;
}

.cv-top    { grid-column: 2; grid-row: 1;width: 329px; }
.cv-left   { grid-column: 1; grid-row: 2; }
.cv-core   { grid-column: 2; grid-row: 2; }
.cv-right  { grid-column: 3; grid-row: 2; }
.cv-bottom { grid-column: 2; grid-row: 3;width: 340px; }

.cv-side {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

.cv-item {
  max-width: 400px;
  margin: 0 auto;
}

.cv-item-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #223500;
  color: #BEFF00;
  margin-bottom: 12px;
  transition: transform .25s ease, background .25s ease;
}

.cv-item-icon svg { width: 18px; height: 18px; }

.cv-item:hover .cv-item-icon {
  background: #1A4B05;
  transform: scale(1.1);
}

.cv-item-title {
  color: #0C021D;
  font-family: "Roboto";
  font-size: 17spx;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: -0.3px;
  margin-bottom: 8px;
}

.cv-item-body {
  color: #777677;
  font-family: 'Inter';
  font-size: 15px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: -0.1px;
}

/* ── core ── */
.cv-core-ring-1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1px solid #2063931A;
  background: #FAFAF7;
}
.cv-core-ring {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 1px solid #7FA9D9;
  background: #FAFAF7;
}

.cv-core-label {
  color: #7FA9D9;
  font-family: Roboto;
  font-size: 8px;
  font-weight: 500;
  line-height: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.cv-core-title {
  color: #0C021D;
  font-family: "FONTSPRING DEMO - Roc Grotesk";
  font-size: 13px;
  font-weight: 700;
  line-height: 19px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ════ footer strip ════ */
.cv-strip {
  background: linear-gradient(120deg, #1E3A05 0%, #14260A 100%);
  border-radius: 12px;
  padding: 28px 34px;
  margin-top: 70px;
}

.cv-strip p {
  color: rgba(255, 255, 255, 0.86);
  font-family: Roboto;
  font-size: 16px;
  font-weight: 400;
  line-height: 23px;
  letter-spacing: -0.2px;
}

.cv-strip a {
  color: #BEFF00;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cv-strip a:hover { color: #FFFFFF; }

/* ════ responsive ════ */
@media (max-width: 900px) {
  .cv-rail { grid-template-columns: repeat(2, 1fr); gap: 34px 16px; }
  .cv-rail::before { display: none; }
  .cv-node-icon { box-shadow: none; }

  .cv-hub {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .cv-top, .cv-left, .cv-core, .cv-right, .cv-bottom {
    grid-column: 1;
    grid-row: auto;
  }

  /* core first, then everything in reading order */
  .cv-core { order: -1; }

  .cv-side { gap: 34px; }
  .cv-item { max-width: 460px; }
}

@media (max-width: 640px) {
  .cv { padding: 60px 18px; }

  .cv-title {
    font-size: 26px;
    line-height: 34px;
    margin-bottom: 40px;
  }

  .cv-title br { display: none; }

  .cv-sub { font-size: 15px; }
  .cv-sub.is-spaced { margin-top: 50px; }

  .cv-rail { grid-template-columns: 1fr; }

  .cv-strip { padding: 22px 20px; margin-top: 50px; }
}


/* ════════════════════════════════════════════════
   SECTION 6 — AROUND THE DATA
════════════════════════════════════════════════ */
.sr {
  background: #EFEFEF;
  padding: 80px 40px;
}

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

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

.sr-badge span {
  display: inline-block;
  padding: 9px 26px;
  border-radius: 50px;
  background: #297907;
  color: #FFF;
  font-family: Roboto;
  font-size: 11px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: .10em;
  text-transform: uppercase;
}

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

.sr-caption {
  color: rgba(12, 2, 29, 0.60);
  font-family: Roboto;
  font-size: 13.5px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.2px;
  margin-bottom: 40px;
}

/* ── orbit grid ── */
.sr-orbit {
  display: grid;
  grid-template-columns: 1fr 0.55fr 1fr;
  grid-template-rows: auto auto auto;
  align-items: center;
  gap: 26px 30px;
}

.sr-a { grid-column: 1; grid-row: 1; }
.sr-b { grid-column: 3; grid-row: 1; }
.sr-c { grid-column: 1; grid-row: 2; }
.sr-d { grid-column: 3; grid-row: 2; }
.sr-e { grid-column: 1; grid-row: 3; }
.sr-f { grid-column: 3; grid-row: 3; }

.sr-core {
  grid-column: 2;
  grid-row: 1 / span 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* nudge the inner ring of items toward the core */
.sr-a, .sr-e { padding-left: 90px; }
.sr-b, .sr-f { padding-right: 90px; }

.sr-item { max-width: 340px; }

.sr-item.is-right { margin-left: auto; text-align: left; }
.sr-item.is-left  { margin-right: auto; text-align: right; }

.sr-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #FFFFFF;
  color: #1B4FD8;
  margin-bottom: 14px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .07);
  transition: transform .25s ease, color .25s ease, background .25s ease;
}

.sr-icon svg { width: 20px; height: 20px; }

.sr-item:hover .sr-icon {
  background: #1B4FD8;
  color: #FFFFFF;
  transform: translateY(-4px);
}

.sr-item-title {
  color: #0A1F4D;
  font-family: "inter";
  font-size: 17px;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: -0.3px;
  margin-bottom: 9px;
}

.sr-item-body {
  color: rgba(12, 2, 29, 0.60);
  font-family: "inter";
  font-size: 15px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: -0.1px;
}

/* ── core disc ── */
.sr-core-disc {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: #FFFFFF;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .10);
}

.sr-core-icon {
  display: inline-flex;
  color: #0A1F4D;
}

.sr-core-icon svg { width: 42px; height: 42px; }

.sr-core-label {
  color: rgba(12, 2, 29, 0.66);
  font-family: Roboto;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: -0.1px;
}

/* ── responsive ── */
@media (max-width: 940px) {
  .sr-orbit {
    grid-template-columns: 1fr 1fr;
    gap: 34px 24px;
  }

  .sr-a { grid-column: 1; grid-row: 2; }
  .sr-b { grid-column: 2; grid-row: 2; }
  .sr-c { grid-column: 1; grid-row: 3; }
  .sr-d { grid-column: 2; grid-row: 3; }
  .sr-e { grid-column: 1; grid-row: 4; }
  .sr-f { grid-column: 2; grid-row: 4; }

  .sr-core { grid-column: 1 / -1; grid-row: 1; }

  .sr-a, .sr-e { padding-left: 0; }
  .sr-b, .sr-f { padding-right: 0; }

  .sr-item,
  .sr-item.is-right,
  .sr-item.is-left {
    text-align: left;
    margin: 0;
    max-width: none;
  }
}

@media (max-width: 620px) {
  .sr { padding: 56px 18px; }

  .sr-title {
    font-size: 25px;
    line-height: 33px;
  }

  .sr-orbit { grid-template-columns: 1fr; }

  .sr-a, .sr-b, .sr-c, .sr-d, .sr-e, .sr-f {
    grid-column: 1;
    grid-row: auto;
  }

  .sr-core { grid-column: 1; grid-row: 1; }

  .sr-core-disc { width: 160px; height: 160px; }

  .sr-item-title br { display: none; }
}


/* ════════════════════════════════════════════════
   SECTION 7 — PROCESS / FOUR PHASES
════════════════════════════════════════════════ */
.ph {
  background: #FFFFFF;
  padding: 80px 40px;
}

.ph-inner {
  max-width: 1080px;
  margin: 0 auto;
}

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

.ph-badge span {
  display: inline-block;
  padding: 9px 26px;
  border-radius: 50px;
  background: #297907;
  color: #FFF;
  font-family: Roboto;
  font-size: 11px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.ph-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
  font-family: "FONTSPRING DEMO - Roc Grotesk";
  font-size: 34px;
  font-weight: 700;
  line-height: 44px;
  letter-spacing: -1.2px;
}

.ph-title .muted { color: #A5A5A5; }
.ph-title .dark  { color: #000000; }

/* ── timeline shell ── */
.ph-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
}

.ph-row {
  display: grid;
  grid-template-columns: 1fr 74px 1fr;
  align-items: center;
  gap: 0;
}

.ph-row + .ph-row { margin-top: -20px; }

/* the rail lives in the marker column and joins row to row */
.ph-marker {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ph-marker::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  margin-left: -0.5px;
  background: #DADDD6;
}

/* trim the rail at the very start and end */
.ph-row:first-child .ph-marker::before { top: 50%; }
.ph-row:last-child  .ph-marker::before { bottom: 50%; }

.ph-node {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 8px;
  background: linear-gradient(180deg, #223500 0%, #297907 100%);
  color: #fff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.10), 0 2px 4px -2px rgba(0, 0, 0, 0.10);
  transition: transform .25s ease, background .25s ease;
}

.ph-node svg { width: 27px; height: 27px; }


/* ── cards ── */
.ph-card {
  border: 1px solid #E4E6E1;
  border-radius: 4px;
  background: #FFFFFF;
  padding: 26px 28px;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.ph-card:hover {
  transform: translateY(-5px);
  border-color: #297907;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .08);
}

.ph-row.is-left  .ph-card { text-align: right; margin-right: 60px; }
.ph-row.is-right .ph-card { text-align: left;margin-left: 60px;}

.ph-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.ph-row.is-left .ph-meta { justify-content: flex-end; }

.ph-pill {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 24px;
  background: #297907;
  color: #FFFFFF;
  font-family: Roboto;
  font-size: 10px;
  font-weight: 700;
  line-height: 14px;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.ph-dur {
  color: #297907;
  font-family: Roboto;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
}

.ph-card-title {
  color: #297907;
  font-family: 'Roboto';
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: -0.6px;
  margin-bottom: 14px;
}

.ph-card-body {
  color: rgba(12, 2, 29, 0.62);
  font-family: 'inter';
  font-size: 13px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: -0.1px;
  padding-bottom: 22px;
  border-bottom: 1px solid #ECEEE9;
}

/* ── deliverable strip ── */
.ph-deliver {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-top: 18px;
}

.ph-row.is-left .ph-deliver { flex-direction: row-reverse; }

.ph-deliver-icon {
  flex: 0 0 auto;
  display: inline-flex;
  color: #297907;
  margin-top: 1px;
}

.ph-deliver-icon svg { width: 16px; height: 16px; }

.ph-deliver p {
  color:#191C1D;
  font-family: inter;
  font-size: 14px;
  font-weight: 6s00;
  line-height: 19px;
  letter-spacing: -0.1px;
}

.ph-deliver strong { font-weight: 700; }

/* ── responsive ── */
@media (max-width: 880px) {
  .ph-row {
    grid-template-columns: 54px 1fr;
    align-items: start;
  }

  .ph-row + .ph-row { margin-top: 0; }

  /* marker always first, card always second, spacers gone */
  .ph-row .ph-marker { grid-column: 1; grid-row: 1; align-self: stretch; }
  .ph-row .ph-card   { grid-column: 2; grid-row: 1; margin-bottom: 22px; }
  .ph-spacer { display: none; }

  .ph-marker { justify-content: flex-start; }
  .ph-marker::before { left: 17px; }
  .ph-node { margin-top: 26px; }

  .ph-row:first-child .ph-marker::before { top: 213px; }
  .ph-row:last-child  .ph-marker::before { bottom: auto; height: 42px; }

  .ph-row.is-left  .ph-card,
  .ph-row.is-right .ph-card { text-align: left; }

  .ph-row.is-left .ph-meta { justify-content: flex-start; }
  .ph-row.is-left .ph-deliver { flex-direction: row; }
}

@media (max-width: 600px) {
  .ph { padding: 56px 18px; }

  .ph-title {
    font-size: 24px;
    line-height: 33px;
    margin-bottom: 34px;
  }

  .ph-card { padding: 22px 20px; }
  .ph-card-title { font-size: 21px; line-height: 29px; }
}

@media (max-width: 767px) {
    .ph-row.is-left .ph-card {
        margin-left: 20px;
        margin-right: 20px;
    }
    .COBOL-cta-content {
    width: 100% !important;
}
}

/* ════════════════════════════════════════════════
   FLOATING CLOUD SVG
════════════════════════════════════════════════ */
@keyframes float {
  0%,100% { transform: translateY(0px);   }
  50%      { transform: translateY(-16px); }
}

/* ════════════════════════════════════════════════
   MAIN CONTENT GRID
════════════════════════════════════════════════ */
.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; /* 150% */
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; /* 102.778% */
letter-spacing: -1px;
  margin-bottom: clamp(14px, 2vh, 22px);
}

.body-copy {
 color: #FFF;
font-family: Manrope;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 26px; /* 150% */

  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; /* 133.333% */
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);
}
@media (min-width: 1025px) {
.cards .card:nth-child(2),
.cards .card:nth-child(4) {
    transform: translateX(-60px); /* Adjust the value as needed */
}
}

.stat-num {
  color: #BEFF00;
font-family: "FONTSPRING DEMO - Roc Grotesk";
font-size: 40px;
font-style: normal;
font-weight: 700;
line-height: 40px; /* 80% */
letter-spacing: -1px;
}
.stat-num sup { font-size: .55em; font-weight: 700; vertical-align: super; }

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

/* ════════════════════════════════════════════════
   TRUSTED BY + INFINITE SLIDER
════════════════════════════════════════════════ */
.trusted {
  position: relative;
  z-index: 2;

  padding: 40px 0px 60px;
}

.trusted-label {
color: #FFF;
text-align: center;
font-family: Helvetica;
font-size: 14.021px;
font-style: normal;
font-weight: 700;
line-height: 14.021px; /* 100% */
letter-spacing: 2.003px;
text-transform: uppercase;
  margin-bottom: clamp(16px, 2.4vh, 24px);
}

.slider-outer {
  position: relative;
  overflow: hidden;
}
.slider-outer::before,
.slider-outer::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: clamp(60px, 10vw, 140px);
  z-index: 4;
  pointer-events: none;
}
.slider-outer::before { left:  0; background: linear-gradient(90deg,  var(--bg), transparent); }
.slider-outer::after  { right: 0; background: linear-gradient(270deg, var(--bg), transparent); }

.slider-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 10s linear infinite;
  will-change: transform;
}
.slider-track:hover { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  flex-shrink: 0;
  opacity: 1;
  filter: grayscale(1) brightness(1.4);
  transition: opacity .25s, filter .25s;
  cursor: default;
}
.logo-item:hover { opacity: 1; filter: none; }
.logo-item svg { height: clamp(22px, 2.2vw, 30px); width: auto; display: block; }

/* ════════════════════════════════════════════════
   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: 85% !important; flex: none; }
  .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 {
        padding: 15px 20px !important;
    }
}

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

@media (prefers-reduced-motion: reduce) {
  .slider-track { animation: none; }
}
.tbl-more .lead {
  color: #BEFF00;
font-family: Roboto;
font-size: 22px;
font-style: normal;
font-weight: 600;
line-height: 35px; /* 134.615% */    width: 406px;
  margin-right: 6px;
}
.as-num.is-on { background: url("/services/Modernize_Natural_and_ADABAS/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/Modernize_Natural_and_ADABAS/image/Ellipse green.svg"); background-size:cover;background-position:center;background-repeat:no-repeat; border: 2px solid rgba(255,255,255,.35); color: #000; }

/* ════════════════════════════════════════════════
   SECTION 13 — 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:0.3;
  z-index: 0;
  background: url("image/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; /* 100% */
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; /* 100% */
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; /* 133.333% */
 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; /* 155.556% */
  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; /* 141.176% */
  cursor: pointer;
   transition: background .2s, border-color .2s;
}
.faq-more button:hover { background: #f5f6f3; border-color: #c9cfc4; }
.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; }

/* ════════════════════════════════════════════════
   FINAL CTA
════════════════════════════════════════════════ */

/* last Footer sec */

.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: 45px;
    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); }
}

/*  footer sec hide  */

.natural-adabas-page .footer-cta {
  display: none !important;
}


.natural-adabas-page .footer-section{
  border-radius: 0px !important;
}