@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;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-regular.otf') format('opentype');
  font-weight: 400;
  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-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-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-display: swap;
}

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

:root {
  --green:       #297907;
  --green-dark:  #1A4B05;
  --lime:        #BEFF00;
  --ink:         #0C021D;
  --muted:       #8A898A;
  --line:        #E4E6E1;
  --blue:        #1B4FD8;
  --display:     "FONTSPRING DEMO - Roc Grotesk", "Inter", Arial, sans-serif;
  --body:        Roboto, "Inter", Arial, sans-serif;
  --shell:       1280px;
}

html { scroll-behavior: smooth; }

body {
  background: #FFFFFF;
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

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


/* ════════════════════════════════════════════════
   SECTION 1 — HERO
════════════════════════════════════════════════ */
.hero {
  position: relative;
  overflow: hidden;
  background: #060A04;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("/services/coldfusion-to-java-migration/image/Move ColdFusion to Java.webp") center/cover no-repeat;
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* background: linear-gradient(90deg, rgba(4, 8, 3, .92) 0%, rgba(4, 8, 3, .72) 48%, rgba(4, 8, 3, .55) 100%); */
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 90px 0 40px;
  display: grid;
  grid-template-columns: 1.55fr 0.7fr;
  align-items: center;
  gap: 50px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
}

.breadcrumb .star { display: inline-flex; }

.breadcrumb a {
  color: #FFF;
  font-family: Manrope;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px; /* 150% */
  text-transform: capitalize;
  text-decoration: none;
}

.breadcrumb a:hover { color: #BEFF00; }
.breadcrumb .sep { color: rgba(255, 255, 255, .45); }

.breadcrumb .cur {
  color: var(--lime);
  font-family: Manrope, var(--body);
  font-size: 14px;
  font-weight: 500;
}

.hero-headline {
  color: #FFF;
  font-family: "FONTSPRING DEMO - Roc Grotesk";
  font-size: 72px;
  font-weight: 700;
  line-height: 74px; /* 102.778% */
  letter-spacing: -1px;
  margin-bottom: 22px;
}

.hero-body {
  max-width: 840px;
  color: #FFF;
  font-family: Manrope;
  font-size: 18px;
  font-weight: 500;
  line-height: 30px; /* 150% */
  margin-bottom: 32px;
}

.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; }

.btn {
  border-radius: 50px;
  cursor: pointer;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  padding: 15px 30px;
  transition: background .22s, 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(--lime); color: #0D1100; }

.btn-secondary {
  border: 1px solid #FFFFFF;
  background: #FFFFFF;
  color: #000000;
}

.btn-secondary:hover { background: transparent; color: #FFFFFF; }

/* stat pills */
.hero-stats {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.stat-pill {
  width: clamp(220px, 22vw, 270px);
  padding: 24px 34px;
  border-radius: 130px;
  border: 1px solid rgba(190, 255, 0, .20);
  background: rgba(0, 0, 0, .55);
  backdrop-filter: blur(2px);
  transition: transform .3s, border-color .3s;
}

.stat-pill:hover { transform: translateY(-4px); border-color: rgba(190, 255, 0, .5); }

.stat-num {
  color: var(--lime);
  font-family: var(--display);
  font-size: 34px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: -1px;
}

.stat-lbl {
  color: #FFFFFF;
  font-family: Manrope, var(--body);
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  margin-top: 4px;
}

/* trusted by */
.trusted {
  position: relative;
  z-index: 2;
  padding: 10px 0 44px;
}

.trusted-label {
  text-align: center;
  color: #FFFFFF;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.slider-outer {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.slider-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 8s linear infinite;
}

.slider-outer:hover .slider-track { animation-play-state: paused; }

.logo-item {
  flex: 0 0 auto;
  padding: 0 42px;
}

.logo-item img {
  height: 75px;
  width: auto;
  opacity: .85;
}

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

@media (max-width: 1000px) {
.hero-content { grid-template-columns: 1fr; padding: 60px 0 30px; gap: 36px; }
.hero-headline { font-size: 38px; line-height: 48px; }
.hero-stats { flex-direction: row; flex-wrap: wrap; align-items: stretch; }
.stat-pill { width: auto; flex: 1 1 100px; }
}

@media (max-width: 600px) {
.hero-content { padding: 44px 20px 26px; }
.hero-headline { font-size: 29px; line-height: 38px; }
.hero-headline br { display: none; }
.hero-body { font-size: 14px; line-height: 24px; }
.hero-btns { flex-direction: column; }
.btn { width: 100%; }
.hero-stats { flex-direction: column; }
.stat-pill { width: 100%; }
.logo-item { padding: 0 26px; }
}


/* ════════════════════════════════════════════════
   SECTION 2 — WHY NOW
════════════════════════════════════════════════ */
.wn { background: #FFFFFF; padding: 90px 0; }

.wn-inner {
  max-width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.wn-badge { margin-bottom: 22px; }

.wn-badge span {
  display: inline-block;
  padding: 9px 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: 16px;
  font-weight: 400;
  line-height: 16px; /* 100% */
  text-transform: uppercase;
}

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

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

.wn-copy p:last-child { margin-bottom: 0; }

/* date cards — offset masonry pair */
.wn-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.wn-card {
  position: relative;
  border-radius: 6px;
  background: #24450C;
  padding: 24px 22px 28px;
  box-shadow: 4px 4px 0 0 #7FBF2A;
  transition: transform .28s ease, box-shadow .28s ease;
}

.wn-card:nth-child(1),
.wn-card:nth-child(3) { margin-top: 34px; }

.wn-card:hover {
  transform: translateY(-5px);
  box-shadow: 6px 6px 0 0 var(--lime);
}

.wn-card-label {
  color: #FFF;
  font-family: Inter;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px; /* 142.857% */
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.wn-card-value {
  color: #FFF;
  font-family: Inter;
  font-size: 35px;
  font-weight: 500;
  line-height: 35px; /* 100% */
}

@media (max-width: 980px) {
.wn-inner { grid-template-columns: 1fr; gap: 44px; }
.wn-card:nth-child(1), .wn-card:nth-child(3) { margin-top: 0; }
}

@media (max-width: 600px) {
.wn { padding: 56px 20px; }
.wn-title { font-size: 26px; line-height: 35px; }
.wn-title br { display: none; }
.wn-cards { grid-template-columns: 1fr; }
.ct-inner , .cov-inner {
  padding: 0px 20px;
}
}


/* ════════════════════════════════════════════════
   SECTION 3 — CONSTRUCTS TABLE
════════════════════════════════════════════════ */
.ct { background: #FFFFFF; padding: 70px 0 90px; }

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

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

.ct-badge span {
  display: inline-block;
  padding: 9px 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: 16px;
  font-weight: 400;
  line-height: 16px; /* 100% */
  text-transform: uppercase;
}

.ct-title {
  color: #000;
  text-align: center;
  font-family: "FONTSPRING DEMO - Roc Grotesk";
  font-size: 50px;
  font-weight: 700;
  line-height: 50px; /* 100% */
  letter-spacing: -1.44px;
  margin-bottom: 12px;
}

.ct-caption {
  color: rgba(12, 2, 29, 0.60);
  text-align: center;
  font-family: Roboto;
  font-size: 18px;
  font-weight: 400;
  line-height: 25px; /* 138.889% */
  letter-spacing: -0.2px;
  margin-bottom: 34px;
}

.ct-wrap {
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  text-align: left;
}

.ct-row {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  border-top: 1px solid var(--line);
  transition: background .2s ease;
}

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

.ct-row.is-head {
  background: #297907;
  border-top: 0;
}

.ct-row.is-head .ct-c1,
.ct-row.is-head .ct-c2 {
  color: #FFF;
  font-family: Roboto;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px; /* 120% */
  padding: 18px 26px;
}

.ct-c1 {
  padding: 17px 26px;
  color: #000D2F;
  font-family: Inter;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px; /* 150% */
}

.ct-c2 {
  padding: 17px 26px;
  color: #444650;
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px; /* 150% */
}

.ct-row:not(.is-head):hover .ct-c1 { background: #E6F1CE; }
.ct-row:not(.is-head):hover .ct-c2 { background: #FAFCF4; }

.ct-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-align: left;
  margin-top: 26px;
  padding: 20px 24px;
  border-radius: 8px;
  border: 1px solid #206393;
  border-left: 4px solid #206393;
  background: rgba(127, 184, 8, 0.10);
}

.ct-note-icon { flex: 0 0 auto; color: var(--blue); margin-top: 1px; }
.ct-note-icon svg { width: 17px; height: 17px; }

.ct-note p {
  color: #444650;
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px; /* 150% */
}

@media (max-width: 700px) {
.ct { padding: 50px 0 60px; }
.ct-title { font-size: 25px; line-height: 34px; }
.ct-row { grid-template-columns: 1fr; }
.ct-row.is-head { display: none; }
.ct-c1 { padding: 14px 18px 6px; }
.ct-c2 { padding: 0 18px 14px; background: #F3F7E6; }
.ct-row:not(.is-head):hover .ct-c2 { background: #E6F1CE; }
}


/* ════════════════════════════════════════════════
   SECTION 4 — COVERAGE
════════════════════════════════════════════════ */
.cov { background: #FFFFFF; padding: 0 0 90px; }

.cov-inner { max-width: var(--shell); margin: 0 auto; text-align: center; }

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

.cov-badge span {
  display: inline-block;
  padding: 9px 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: 16px;
  font-weight: 400;
  line-height: 16px; /* 100% */
  text-transform: uppercase;
}

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

.cov-title .dark  { color: #777677; }
.cov-title .muted { color: var(--muted); }

.cov-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px 40px;
  text-align: left;
}

/* dashed rail above each row of three */
.cov-item {
  position: relative;
  padding-top: 26px;
}

.cov-item::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 0;
  right: -40px;
  height: 0;
  border-top: 1px solid #8FBF63;
}

.cov-item:nth-child(3n)::before { right: 0; }

.cov-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
}

.cov-item-title {
  color: #00205B;
  font-family: Roboto;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px; /* 133.333% */
  margin-bottom: 12px;
}

.cov-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }

.cov-tag {
  display: inline-block;
  padding: 4px 9px;
  border: 1px solid #C5C6D1;
  border-radius: 3px;
  color: #444650;
  font-family: Inter;
  font-size: 10px;
  font-weight: 600;
  line-height: 15px; /* 150% */
}

.cov-tag.is-dark {
  border: 1px solid #00205B;
  background: #00205B;
  color: #FFFFFF;
}

.cov-item-body {
  color: #444650;
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px; /* 162.5% */
}

@media (max-width: 900px) {
.cov-grid { grid-template-columns: 1fr 1fr; }
.cov-item:nth-child(2n)::before { right: 0; }
.cov-item:nth-child(3n)::before { right: -40px; }
}

@media (max-width: 600px) {
.cov { padding: 50px 0 60px; }
.cov-title { font-size: 25px; line-height: 34px; margin-bottom: 34px; }
.cov-title br { display: none; }
.cov-grid { grid-template-columns: 1fr; gap: 34px; }
.cov-item::before, .cov-item:nth-child(2n)::before, .cov-item:nth-child(3n)::before { right: 0; }
}


/* ════════════════════════════════════════════════
   SECTION 5 — THE HARD PARTS
════════════════════════════════════════════════ */
.hp { background: #192400; padding: 80px 0; }

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

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

.hp-badge span {
  display: inline-block;
  padding: 9px 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: 16px;
  font-weight: 400;
  line-height: 16px; /* 100% */
  text-transform: uppercase;
}

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

.hp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  text-align: left;
  align-items: start;
  margin-bottom: 18px;
}

.hp-card:hover {
border-radius: 20px;
border: 1px solid #C5C6D1;
background: #F2F8E6;

}
.hp-card {
    border-radius: 20px;
    border: 1px solid #C5C6D1;
    background: #FFF;
    padding: 20px;
    height: 380px;
}


.hp-icon {
  display: inline-flex;
  color: var(--blue);
  margin-bottom: 16px;
}

.hp-icon svg { width: 22px; height: 22px; }

.hp-card-title {
  color: #00205B;
  font-family: Roboto;
  font-size: 22px;
  font-weight: 600;
  line-height: 32px; /* 133.333% */
  margin-bottom: 14px;
}

.hp-card-body {
  color: #444650;
  font-family: Inter;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px; /* 150% */
}

.hp-card-body + .hp-card-body { margin-top: 14px; }

.hp-wide {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  text-align: left;
border-radius: 20px;
border: 1px solid #C5C6D1;
background: #fff;
  padding: 28px 30px;
}
.hp-wide:hover{
  border-radius: 20px;
border: 1px solid #C5C6D1;
background: #F2F8E6;

}
.hp-wide .hp-icon {
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #EAF1FB;
  margin-bottom: 0;
}

@media (max-width: 1080px) {
.hp-grid { grid-template-columns: 1fr 1fr; }
.hp-card { min-height: 0; }
}

@media (max-width: 640px) {
.hp { padding: 56px 20px    ; }
.hp-title { font-size: 25px; line-height: 34px; }
.hp-grid { grid-template-columns: 1fr; }
.hp-wide { flex-direction: column; gap: 16px; padding: 24px 20px; }
}


/* ════════════════════════════════════════════════
   SECTION 6 — TARGET ARCHITECTURE
════════════════════════════════════════════════ */
.ta { background: #FFFFFF; padding: 80px 0; }

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

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

.ta-badge span {
  display: inline-block;
  padding: 9px 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: 16px;
  font-weight: 400;
  line-height: 16px; /* 100% */
  text-transform: uppercase;
}

.ta-title {
  font-family: "FONTSPRING DEMO - Roc Grotesk";
  font-size: 50px;
  font-weight: 700;
  line-height: 50px; /* 100% */
  letter-spacing: -1.44px;
  margin-bottom: 38px;
}

.ta-title .muted { color: #777677; }
.ta-title .dark  { color: #000; }

.ta-stack {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
  text-align: left;
}

.ta-card {
  position: relative;
  border-radius: 12px;
  border: 1px solid #E2E8F0;
  background: #FFF;
  padding: 26px 30px;
  transition: border-color .26s ease, background .26s ease;
}

.ta-card.is-cross { background: #F7F8F9; }

.ta-card:hover {
  border: 1px dashed #E2E8F0;
  background: #F8FAFC;
}

/* connector stems between layers */
.ta-card::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -22px;
  width: 1px;
  height: 22px;
  background: var(--line);
}

.ta-card:last-child::before { display: none; }

.ta-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 12px;
}

.ta-layer {
  flex: 0 0 auto;
  color: rgba(15, 39, 71, 0.40);
  font-family: Inter;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px; /* 133.333% */
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.ta-card-title {
  color: #0F2747;
  font-family: Inter;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px; /* 133.333% */
}

.ta-card-body {
  color: rgba(15, 39, 71, 0.80);
  font-family: Inter;
  font-size: 18px;
  font-weight: 400;
  line-height: 29.25px; /* 162.5% */
}

.ta-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  max-width: 760px;
  margin: 34px auto 0;
  padding-top: 26px;
  border-top: 1px solid #E2E8F0;
}

.ta-note-icon { flex: 0 0 auto; color: var(--green); margin-top: 1px; }
.ta-note-icon svg { width: 16px; height: 16px; }

.ta-note p {
  color: rgba(15, 39, 71, 0.60);
  font-family: Inter;
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  line-height: 24px; /* 150% */
}

@media (max-width: 640px) {
.ta { padding: 56px 20px; }
.ta-title { font-size: 25px; line-height: 34px; }
.ta-card { padding: 22px 20px; }
.ta-head { flex-direction: column; gap: 6px; }
}


/* ════════════════════════════════════════════════
   SECTION 7 + 8 — APPROACH / COMPREHENSION PASS
════════════════════════════════════════════════ */
.ap {
  background: radial-gradient(circle at 50% 0%, #1F3009 0%, #16240A 45%, #0E1705 100%);
  padding: 80px 0;
}

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

.ap-badge { display: flex; justify-content: center; margin-bottom: 22px; }
.ap-badge.is-spaced { margin-top: 70px; }

.ap-badge span {
  display: inline-block;
  padding: 9px 24px;
  border-radius: 50px;
  border: 1px solid rgba(190, 255, 0, .35);
  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; /* 100% */
  text-transform: capitalize;
}

.ap-title {
  text-align: center;
  font-family: "FONTSPRING DEMO - Roc Grotesk";
  font-size: 50px;
  font-weight: 700;
  line-height: 50px; /* 100% */
  letter-spacing: -1.44px;
  margin-bottom: 32px;
}

.ap-title.is-sub  { color: #FFFFFF; }
.ap-title .light  { color: #FFFFFF; }
.ap-title .accent { color: #BEFF00; }

.ap-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  text-align: left;
  align-items: start;
}

.ap-card {
  border-radius: 20px;
  background: #F4F4F4;
  padding: 28px 30px;
  transition: background .28s ease;
}

.ap-card.is-accent { background: #EEF9D2; }

.ap-card:hover { background: #F1FFD3; }

.ap-card-title {
  color: #0C021D;
  font-family: Roboto;
  font-size: 26px;
  font-weight: 600;
  line-height: 50px; /* 192.308% */
  letter-spacing: -1.44px;
  margin-bottom: 18px;
}
.ap-card.upper-card {
    height: 325px;
}
.ap-card.lower-card {
    height: 370px;
}.stat-pill.moved-pill {
    transform: translateX(-70px);
}

.ap-list { list-style: none; }

.ap-list li {
  position: relative;
  padding-left: 16px !important;
  color: rgba(12, 2, 29, 0.60);
  font-family: Roboto;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
  letter-spacing: -0.2px;
}

.ap-list li + li { margin-top: 11px; }

.ap-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #7FA55E;
}

.ap-note {
  max-width: 1060px;
  margin: 42px auto 0;
  color: #FFF;
  text-align: center;
  font-family: Inter;
  font-size: 18px;
  font-weight: 400;
  line-height: 25px; /* 138.889% */
  letter-spacing: -0.2px;
}

@media (max-width: 860px) {
.ap-cols { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
.ap { padding: 56px 20px; }
.ap-title { font-size: 24px; line-height: 33px; }
.ap-title .light, .ap-title .accent { display: block; }
.ap-badge.is-spaced { margin-top: 50px; }
.ap-card { padding: 24px 20px; }
}


/* ════════════════════════════════════════════════
   SECTION 9 — VERIFICATION
════════════════════════════════════════════════ */
.vf { background: #FFFFFF; padding: 80px 0; }

.vf-inner { max-width: var(--shell); margin: 0 auto; text-align: center; }

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

.vf-badge span {
  display: inline-block;
  padding: 9px 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: 16px;
  font-weight: 400;
  line-height: 16px; /* 100% */
  text-transform: uppercase;
}

.vf-title {
  color: #000;
  font-family: "FONTSPRING DEMO - Roc Grotesk";
  font-size: 50px;
  font-weight: 700;
  line-height: 50px; /* 100% */
  letter-spacing: -1.44px;
  margin-bottom: 12px;
}

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

.vf-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  text-align: left;
  align-items: start;
}


.vf-step { position: relative; }

.vf-num {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 9999px;
  border: 1px solid #C5C6D1;
  background: #FFF;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  color: #206393;
  text-align: center;
  font-family: Inter;
  font-size: 18px;
  font-weight: 700;
  line-height: 32px; /* 133.333% */
  margin-bottom: 26px;
  transition: border-color .25s ease, background .25s ease, color .25s ease;
}

/* horizontal rail between the numbers */
.vf-step::before {
  content: '';
  position: absolute;
  top: 23px;
  left: 46px;
  right: -26px;
  height: 1px;
  background: #E4E6E1;
}

.vf-step:last-child::before { display: none; }

/* short vertical drop from the number to the title */
.vf-stem {
  position: absolute;
  top: 46px;
  left: 23px;
  width: 1px;
  height: 22px;
  background: #E4E6E1;
}

.vf-step:hover .vf-num {
  border-color: var(--green);
  background: var(--green);
  color: #FFFFFF;
}

.vf-step-title {
  color: #000D2F;
  font-family: Roboto;
  font-size: 22px;
  font-weight: 600;
  line-height: 30px; /* 136.364% */
  margin-bottom: 12px;
}

.vf-step-body {
  color: #444650;
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px; /* 150% */
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 14px;
}

.vf-tag {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #206393;
  font-family: Inter;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px; /* 133.333% */
  letter-spacing: 0.6px;
}

.vf-tag-icon { display: inline-flex; color: var(--green); }
.vf-tag-icon svg { width: 14px; height: 14px; }

.vf-foot {
  color: rgba(12, 2, 29, 0.60);
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px; /* 156.25% */
  letter-spacing: -0.2px;
  margin-top: 40px;
}

@media (max-width: 1000px) {
.vf-grid { grid-template-columns: 1fr 1fr; gap: 34px 26px; }
.vf-step:nth-child(2n)::before { display: none; }
}

@media (max-width: 640px) {
.vf { padding: 56px 20px; }
.vf-title { font-size: 25px; line-height: 34px; }
.vf-grid { grid-template-columns: 1fr; }
.vf-step::before { display: none; }
.vf-num { margin-bottom: 18px; }
.vf-stem { display: none; }
}


/* ════════════════════════════════════════════════
   SECTION 10 — DELIVERABLES
════════════════════════════════════════════════ */
.dl { background: #FFFFFF; padding: 40px 0 80px; }

.dl-panel {
  max-width: 1240px;
  padding: 40px;
  margin: 0 auto;
  border-radius: 20px;
  border: 1px solid rgba(41, 121, 7, 0.34);
  background: rgba(241, 255, 211, 0.31);
  text-align: center;
}

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

.dl-badge span {
  display: inline-block;
  padding: 9px 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: 16px;
  font-weight: 400;
  line-height: 16px; /* 100% */
  text-transform: uppercase;
}

.dl-title {
  color: #000;
  font-family: "FONTSPRING DEMO - Roc Grotesk";
  font-size: 50px;
  font-weight: 700;
  line-height: 50px; /* 100% */
  letter-spacing: -1.44px;
  margin-bottom: 10px;
}

.dl-caption {
  color: rgba(12, 2, 29, 0.60);
  text-align: center;
  font-family: Roboto;
  font-size: 18px;
  font-weight: 400;
  line-height: 25px; /* 138.889% */
  letter-spacing: -0.2px;
  margin-bottom: 34px;
}

.dl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: left;
  border-top: 1px solid #E4EBD3;
}

.dl-item {
  padding: 30px 26px;
  border-bottom: 1px solid #E4EBD3;
  border-right: 1px solid #E4EBD3;
}

.dl-item:nth-child(3n) { border-right: 0; }
.dl-item:nth-last-child(-n+3) { border-bottom: 0; }

.dl-item-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #000D2F;
  font-family: Roboto;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px; /* 133.333% */
  margin-bottom: 14px;
}

.dl-icon { display: inline-flex; flex: 0 0 auto; color: var(--green); }
.dl-icon svg { width: 18px; height: 18px; }

.dl-item ul { list-style: none; }

.dl-item li {
  position: relative;
  padding-left: 16px;
  color: #444650;
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px; /* 162.5% */
}

.dl-item li + li { margin-top: 10px; }

.dl-item li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #9AAE80;
}

@media (max-width: 900px) {
.dl-grid { grid-template-columns: 1fr 1fr; }
.dl-item:nth-child(3n) { border-right: 1px solid #E4EBD3; }
.dl-item:nth-child(2n) { border-right: 0; }
.dl-item:nth-last-child(-n+3) { border-bottom: 1px solid #E4EBD3; }
.dl-item:nth-last-child(-n+2) { border-bottom: 0; }
}

@media (max-width: 620px) {
.dl { padding: 30px 20px 56px; }
.dl-title { font-size: 25px; line-height: 34px; }
.dl-grid { grid-template-columns: 1fr; }
.dl-item { border-right: 0 !important; border-bottom: 1px solid #E4EBD3 !important; padding: 24px 0; }
.dl-item:last-child { border-bottom: 0 !important; }
}


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

.wu-inner { max-width: var(--shell); margin: 0 auto; }

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

.wu-badge span {
  display: inline-block;
  padding: 9px 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: 16px;
  font-weight: 400;
  line-height: 16px; /* 100% */
  text-transform: uppercase;
}

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

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

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

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

.wu-row-title {
  position: relative;
  text-align: right;
  padding-right: 44px;
  color: #0C021D;
  font-family: Roboto;
  font-size: 26px;
  font-weight: 600;
  line-height: 35px; /* 134.615% */
  letter-spacing: -1.44px;
}

/* shared divider rail */
.wu-row-title::after {
  content: '';
  position: absolute;
  right: 0;
  top: -22px;
  bottom: -22px;
  width: 1px;
  background: #E4E6E1;
}

.wu-row:first-child .wu-row-title::after { top: 0; }
.wu-row:last-child  .wu-row-title::after { bottom: 0; }

.wu-row-body {
  color: rgba(12, 2, 29, 0.60);
  font-family: Roboto;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
  letter-spacing: -0.2px;
}

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

@media (max-width: 640px) {
.wu { padding: 50px 20px; }
.wu-title { font-size: 25px; line-height: 34px; margin-bottom: 28px; }
}


/* ════════════════════════════════════════════════
   SECTION 12 — PROCESS
════════════════════════════════════════════════ */
.pr { background: #FFFFFF; padding: 30px 0 80px; }

.pr-panel {
  max-width: 1240px;
  margin: 0 auto;
  border-radius: 20px;
  background: rgba(217, 217, 217, 0.15);
  padding: 50px;
  text-align: center;
}

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

.pr-badge span {
  display: inline-block;
  padding: 9px 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: 16px;
  font-weight: 400;
  line-height: 16px; /* 100% */
  text-transform: uppercase;
}

.pr-title {
  color: #000;
  font-family: "FONTSPRING DEMO - Roc Grotesk";
  font-size: 50px;
  font-weight: 700;
  line-height: 50px; /* 100% */
  letter-spacing: -1.44px;
  margin-bottom: 10px;
}

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

.pr-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: left;
  align-items: start;
}

.pr-col { position: relative; display: flex; flex-direction: column; }

.pr-chip {
  align-self: flex-start;
  padding: 5px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0, 105, 112, 0.20);
  background: rgba(0, 105, 112, 0.05);
  color: #297907;
  font-family: Inter;
  font-size: 16px;
  font-weight: 600;
  line-height: 19.6px; /* 122.5% */
  letter-spacing: 0.28px;
  margin-bottom: 16px;
}

.pr-dot {
  position: relative;
  z-index: 1;
  width: 22px;
  height: 22px;
  border-radius: 12px;
  box-shadow: 0 0 0 4px rgba(0, 105, 112, 0.20);
  margin-bottom: 18px;
  transition: transform .25s ease, background .25s ease;
}

.pr-dot.is-active { box-shadow: 0 0 0 6px rgba(41, 121, 7, .12); }

.pr-col:hover .pr-dot { background: var(--green-dark); transform: scale(1.1); }

.pr-card {
  position: relative;
  flex: 1;
  border-radius: 8px;
  border: 1px solid rgba(197, 198, 209, 0.20);
  background: rgba(255, 255, 255, 0.70);
  box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.03);
  backdrop-filter: blur(6px);
  padding: 24px 22px;
}

/* rail joining the cards */
.pr-card::before {
  content: '';
  position: absolute;
  top: 34px;
  left: 100%;
  width: 20px;
  height: 1px;
  background: #C9DDB4;
}

.pr-col:last-child .pr-card::before { display: none; }

.pr-card-title {
  color: #000D2F;
  font-family: Roboto;
  font-size: 20px;
  font-weight: 500;
  line-height: 31.2px; /* 130% */
  margin-bottom: 12px;
}

.pr-card-body {
  color: #444650;
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px; /* 150% */
}

@media (max-width: 1000px) {
.pr-grid { grid-template-columns: 1fr 1fr; gap: 30px 20px; }
.pr-col:nth-child(2n) .pr-card::before { display: none; }
}

@media (max-width: 620px) {
.pr { padding: 20px 0 56px; }
.pr-panel { padding: 36px 20px 40px; }
.pr-title { font-size: 25px; line-height: 34px; }
.pr-grid { grid-template-columns: 1fr; }
.pr-card::before { display: none; }
}


/* ════════════════════════════════════════════════
   SECTION 13 — PROVEN AT SCALE
════════════════════════════════════════════════ */
.ps { background: #FFFFFF; padding: 60px 0 90px; }

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

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

.ps-badge span {
  display: inline-block;
  padding: 9px 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: 16px;
  font-weight: 400;
  line-height: 16px; /* 100% */
  text-transform: uppercase;
}

.ps-title {
  text-align: center;
  font-family: "FONTSPRING DEMO - Roc Grotesk";
  font-size: 50px;
  font-weight: 700;
  line-height: 50px; /* 100% */
  letter-spacing: -1.44px;
  margin-bottom: 22px;
}

.ps-title .dark  { color: #000000; }
.ps-title .muted { color: #777677; }

.ps-body {
  color: rgba(12, 2, 29, 0.60);
  text-align: center;
  font-family: Roboto;
  font-size: 18px;
  font-weight: 400;
  line-height: 25px; /* 138.889% */
  letter-spacing: -0.2px;
  margin-bottom: 34px;
}

.ps-body.is-narrow { max-width: 860px; margin: 30px auto 0; }

.ps-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.ps-stat { padding: 6px 10px; border-right: 1px solid var(--line); }
.ps-stat:last-child { border-right: 0; }

.ps-num {
  color: #297907;
  text-align: center;
  font-family: Roboto;
  font-size: 48px;
  font-weight: 700;
  line-height: 52.8px; /* 110% */
  letter-spacing: -0.96px;
  margin-bottom: 4px;
}

.ps-lbl {
  color: #000D2F;
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px; /* 150% */
  text-transform: uppercase;
}

@media (max-width: 800px) {
.ps-stats { grid-template-columns: 1fr 1fr; gap: 26px 0; }
.ps-stat:nth-child(2n) { border-right: 0; }
}

@media (max-width: 620px) {
.ps { padding: 50px 20px 60px; }
.ps-title { font-size: 25px; line-height: 34px; }
.ps-title br { display: none; }
.ps-stats { grid-template-columns: 1fr; }
.ps-stat { border-right: 0; border-bottom: 1px solid var(--line); padding-bottom: 18px; }
.ps-stat:last-child { border-bottom: 0; }
}


/* ════════════════════════════════════════════════
   SECTION 14 — HOW TO ENGAGE
════════════════════════════════════════════════ */
.eng { background: #FFFFFF; padding: 0 0 80px; }

.eng-panel {
  position: relative;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 38.4px;
  background:
  
    url("/services/coldfusion-to-java-migration/image/engage-bg.webp") center/cover no-repeat;
  padding: clamp(36px, 4vw, 68px);
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

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

.eng-badge { margin-bottom: clamp(16px, 2.4vh, 22px); }

.eng-badge span {
  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;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px; /* 138.889% */
  letter-spacing: -0.2px;
}

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

/* one continuous dashed rail behind all the numbers */
.eng-steps { position: relative; }

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

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

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

.eng-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-weight: 500;
  line-height: 40.669px; /* 101.673% */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.eng-num.is-white {
  background-image: url("/services/coldfusion-to-java-migration/image/ellipse-white.svg");
  color: #0a2c10;
  box-shadow: 0 0 18px rgba(143, 232, 52, .5);
}

.eng-num.is-lime {
  background-image: url("/services/coldfusion-to-java-migration/image/ellipse-green.svg");
  border: 2px solid rgba(255, 255, 255, .35);
}

.eng-step-title {
  color: #FFF;
  font-family: Inter;
  font-size: 22px;
  font-weight: 500;
  line-height: 40.669px; /* 184.86% */
  margin-bottom: 7px;
}

.eng-body p {
  color: #D2CFCF;
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  line-height: 28.708px; /* 179.423% */
  margin-bottom: 12px;
}

.eng-link {
  color: #BEFF00;
  font-family: Inter;
  font-size: 16px;
  font-weight: 600;
  line-height: 28.708px; /* 179.423% */
  text-decoration: none;
}

.eng-link:hover { text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 860px) {
.eng-panel { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 600px) {
.eng { padding: 0 0 56px; }
.eng-title { font-size: 31px; line-height: 40px; }
}


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

.faq::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.3;
  background: url("/services/coldfusion-to-java-migration/image/bg-gradient.svg") center/cover 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-weight: 400;
  line-height: 16px; /* 100% */
  text-transform: capitalize;
}

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

.faq-label {
  color: #676D79;
  text-align: center;
  font-family: Inter;
  font-size: 15px;
  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-weight: 500;
  line-height: 28px; /* 155.556% */
  padding: clamp(15px, 2vh, 19px) clamp(18px, 2vw, 24px);
}

.faq-icon {
  flex-shrink: 0;
  position: relative;
  width: 18px;
  height: 18px;
  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);
  color: #6a766f;
  font-family: Inter;
  font-size: 16px;
  line-height: 1.7;
}

.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: none;
  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;
  font-family: Inter;
  font-size: 17px;
  font-weight: 500;
  line-height: 24px; /* 141.176% */
  cursor: pointer;
  transition: background .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: 30px; line-height: 40px; }
.faq-title br { display: none; }
.faq { padding: 40px 20px;}
}


/* ════════════════════════════════════════════════
   SECTION 16 — FINAL CTA
════════════════════════════════════════════════ */
.cta {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 90px 0;
  background: #020202;
}

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

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

.cta-content { position: relative; z-index: 2; width: min(760px, 92%); }

.cta-heading {
  color: #FFFFFF;
  font-family: var(--display);
  font-size: 50px;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: -1.44px;
  margin-bottom: 16px;
}

.cta-desc {
  color: rgba(255, 255, 255, .88);
  font-family: Roboto;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 32px;
}

.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: 1px;
    border-radius: 50px;
    background: #0D1100;
    z-index: -1;
}

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


@media (max-width: 640px) {
  .stat-pill.moved-pill {
    transform: translateX(0px);
}
.cta { min-height: 300px; padding: 60px 0; }
.cta-heading { font-size: 28px; line-height: 37px; }
.cta-desc { font-size: 14px; }
.green-btn { width: 100%; padding: 16px 20px; }
}