@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("/services/modernize-cobol/image/Modernize COBOL. Keep every business rule intact.webp");
background-size:cover;
background-position: center;
background-repeat: no-repeat;
}

/* ════════════════════════════════════════════════
   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); }

.btn-primary {
border-radius: 50px;
border: 1px solid #BEFF00;
background: #0D1100;
color: #BEFF00;
font-family: Roboto;
font-size: 15px;
padding:15px;
font-family: Roboto;
font-style: normal;
font-weight: 500;
line-height: 20px; /* 133.333% */
text-transform: capitalize;
box-shadow: 0 0 10px 0 rgba(190, 255, 0, 0.40);
}
.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: Roboto;
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);
}

.card.forward-card{
transform: translateX(-100px) !important;
}

.dollar-box {
  flex-shrink: 0;
  width: clamp(44px, 4vw, 56px);
  height: clamp(44px, 4vw, 56px);
  border: 1.5px solid var(--border);
  border-radius: 13px;
  background: rgba(168,242,58,.07);
  display: flex; align-items: center; justify-content: center;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--green);
}

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

.card-accent {
  color: #FFF;
font-family: Manrope;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 25px; /* 156.25% */
}
.card-accent strong { color: var(--white); font-weight: 600; }

/* ════════════════════════════════════════════════
   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-text {
  font-size: clamp(13px, 1.2vw, 16px);
  font-weight: 700;
  letter-spacing: .045em;
  color: var(--white);
  white-space: nowrap;
  line-height: 1.3;
}
.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, .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); }
  .trusted-label { padding: 0 16px; }
  .logo-item { padding: 0 20px; }
}

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

@media (prefers-reduced-motion: reduce) {
  .slider-track { animation: none; }
}

/* ════════════════════════════════════════════════
   SECTION 4 — OUR APPROACH / DMS
════════════════════════════════════════════════ */
.dms {
  position: relative;
  display: flex;
  overflow: hidden;
  width: 1300px;
  /* background: #192400; */
  margin: 0 auto;
padding: 0 0px;
gap:60px;
}
.DMS_image img{
  object-fit: cover;
}

.DMS_image {
    width: 45%;
}
.dms-copy {
  position: relative;
  z-index: 2;
  padding: 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  
  margin-left: auto;
}
.dms-badge {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 7px;
color: #FFF;
font-family: Roboto;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 16px; /* 100% */
text-transform: capitalize;
   text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 50px;
border: 1px solid #C7CBDB;
background: #297907;
box-shadow: 0 1px 4px 0 rgba(32, 41, 76, 0.10);
  margin-bottom: clamp(20px, 3vh, 32px);
}

.dms-headline {
  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: clamp(20px, 3vh, 32px);
}
.dms-headline .accent { color: #BEFF00;
font-family: "FONTSPRING DEMO - Roc Grotesk";
font-size: 40px;
font-style: normal;
font-weight: 700;
line-height: 50px; /* 100% */
letter-spacing: -1.44px; }
.dms-headline .plain  { color: #FFF;
font-family: "FONTSPRING DEMO - Roc Grotesk";
font-size: 40px;
font-style: normal;
font-weight: 700;
line-height: 50px;
letter-spacing: -1.44px; }
.dms-text p {
  color: rgba(12, 2, 29, 0.60);
font-family: Roboto;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 24px; /* 133.333% */
}
.dms-text p + p { margin-top: clamp(14px, 2vh, 20px); }
.dms-visual {
  position: relative;
  z-index: 1;
  min-height: 420px;
  background: #04140a;
}
.dms-visual svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 900px) {
  .dms { grid-template-columns: 1fr; }
  .dms-copy { max-width: 100%; margin-left: 0; order: 2; }
  .dms-visual { order: 1; min-height: 320px; }
}

/* ════════════════════════════════════════════════
   SECTION 7 — SELECTED WORK
════════════════════════════════════════════════ */
.work {
  background: #fff;
  color: #16201a;
  padding: 120px 10px 60px;
}
.work-inner { max-width: 1300px; margin: 0 auto; }
.work-badge { display: flex; justify-content: center; margin-bottom: clamp(18px, 2.6vh, 28px); }
.work-badge span {
  display: inline-block;
color: #FFF;
font-family: Roboto;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 16px; /* 100% */
  text-transform: uppercase;
  padding: 12px 22px;
border-radius: 50px;
border: 1px solid #C7CBDB;
background: #297907;
box-shadow: 0 1px 4px 0 rgba(32, 41, 76, 0.10);
}
.work-title {
  text-align: center;
 color: #0C021D;
text-align: center;
font-family: "FONTSPRING DEMO - Roc Grotesk";
font-size: 50px;
font-style: normal;
font-weight: 700;
line-height: 50px; /* 100% */
letter-spacing: -1.44px;
  margin: 12px 0 15px ;
}
.work-caption {
  color: rgba(12, 2, 29, 0.60);
text-align: center;
font-family: Roboto;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 25px; /* 138.889% */
letter-spacing: -0.2px;
  
  margin: 0 auto clamp(38px, 6vh, 64px);
  line-height: 1.6;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2vw, 30px);
}
.work-card {
 border-radius: 30px;
border: 1px solid #AEAEAE;
background:transparent;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
padding:10px;
  flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}
.work-card:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(0,0,0,.08); }
.work-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.work-thumb img { width: 100%; height: 100%; object-fit: cover; border-radius:18px 18px 0 0px }

.work-brand-name {
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 900;
  letter-spacing: .02em;
  line-height: 1;
}
.is-fujitsu .work-brand-name { color: #d60012; }
.is-cisco   .work-brand-name,
.is-anz     .work-brand-name { color: #fff; }
.work-bars { display: flex; align-items: flex-end; gap: 3px; height: 26px; }
.work-bars i { width: 3px; background: #fff; border-radius: 2px; opacity: .9; }
.work-bars i:nth-child(1){height:40%} .work-bars i:nth-child(2){height:70%}
.work-bars i:nth-child(3){height:100%} .work-bars i:nth-child(4){height:70%}
.work-bars i:nth-child(5){height:40%} .work-bars i:nth-child(6){height:70%}
.work-bars i:nth-child(7){height:100%} .work-bars i:nth-child(8){height:70%}
.work-bars i:nth-child(9){height:40%}
.work-anz-mark { width: 22px; height: 22px; border-radius: 50%; background: radial-gradient(circle at 35% 35%, #18c3ff, #0a73c9); display:inline-block; }
.work-chip {
  position: absolute;
  right: 12px;
  bottom: 12px;
  border-radius: 37.201px;
border: 0.744px solid #C7CBDB;
background: #000;
box-shadow: 0 0.744px 2.976px 0 rgba(32, 41, 76, 0.10);
  padding: 12px 18px;
color: #FFF;
font-family: Roboto;
font-size: 11.904px;
font-style: normal;
font-weight: 400;
line-height: 11.904px; /* 100% */
text-transform: capitalize;
 
}
.work-body { padding: 10px; }
.work-card-title {
  color: #000;
font-family: Roboto;
font-size: 26px;
font-style: normal;
font-weight: 600;
line-height: 32px; /* 123.077% */
letter-spacing: -1.44px;
  margin-bottom: clamp(10px, 1.4vh, 14px);
}
.work-card-text {
  color: rgba(0, 0, 0, 0.60);
font-family: Roboto;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 28px; /* 155.556% */
letter-spacing: -0.2px;
}

@media (max-width: 880px) {
  .work-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}

/* ════════════════════════════════════════════════
   SECTION 9 — BLOGS & INSIGHTS
════════════════════════════════════════════════ */
.blog {
  background: #ffffff;
  color: #16201a;
  padding: clamp(56px, 9vh, 100px) clamp(20px, 6vw, 80px) clamp(64px, 10vh, 110px);
}
.blog-inner { max-width: 1320px; margin: 0 auto; }
.blog-badge { display: flex; justify-content: center; margin-bottom: clamp(20px, 3vh, 32px); }
.blog-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-style: normal;
font-weight: 400;
line-height: 16px; /* 100% */
text-transform: capitalize;
}
.blog-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(16px, 2.4vh, 24px);
}
.blog-subtitle {
color: rgba(12, 2, 29, 0.60);
text-align: center;
font-family: Roboto;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 25px; /* 138.889% */
letter-spacing: -0.2px;
  max-width: 640px;
  margin: 0 auto clamp(40px, 6vh, 72px);
}
.blog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 1.6vw, 24px); }
.blog-card { display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.blog-media { position: relative; aspect-ratio: 5 / 7; border-radius: 18px; overflow: hidden; }
.blog-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-ph { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.blog-ph.t1 { background: linear-gradient(135deg, #8fbfe8 0%, #dCe8f1 100%); }
.blog-ph.t2 { background: linear-gradient(135deg, #8a9aa5 0%, #c9d3d8 100%); }
.blog-ph.t3 { background: linear-gradient(135deg, #0d1f3a 0%, #16315c 100%); }
.blog-ph.t4 { background: linear-gradient(135deg, #1a1f4a 0%, #3a2a6a 100%); }
.blog-ph svg { width: 38%; height: 38%; opacity: .28; }
.blog-ph.t1 svg, .blog-ph.t2 svg { stroke: #2a3b4a; }
.blog-ph.t3 svg, .blog-ph.t4 svg { stroke: #cfe0ff; opacity: .35; }
.blog-cap {
  position: absolute;
  left: 0px; right: 0px; bottom: 0px;
  background: #1a1a1a;
  border-radius: 14px;
  padding: clamp(14px, 1.4vw, 20px) clamp(16px, 1.4vw, 20px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: background .28s ease;
}
.blog-card:hover .blog-cap,
.blog-card:focus-within .blog-cap { background: #2f9e2f; }
.blog-cap-title { color: #FFF;
font-family: Roboto;
font-size: 15px;
font-style: normal;
font-weight: 500;
line-height: 23px; /* 164.555% */ }
.blog-arrow { flex-shrink: 0; width: 26px; height: 26px; color: #fff; display: flex; align-items: center; justify-content: center; transition: transform .28s ease; }
.blog-card:hover .blog-arrow { transform: translateY(-3px); }
.blog-arrow svg { width: 22px; height: 22px; }
.blog-meta { display: flex; align-items: center; justify-content: space-between; margin-top: clamp(14px, 1.6vh, 20px); padding: 0 4px; }
.blog-cat  { color: #1B1A1A;
font-family: Roboto;
font-size: 14px;
font-style: normal;
font-weight: 500;
line-height: 28px; /* 200% */}
.blog-date {color: #1B1A1A;
font-family: Roboto;
font-size: 14px;
font-style: normal;
font-weight: 500;
line-height: 28px; /* 200% */}

@media (max-width: 1000px) { .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (max-width: 520px)  { .blog-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; } }

/* ════════════════════════════════════════════════
   SECTION 10 — VENDOR QUESTIONS
════════════════════════════════════════════════ */
.qz {
  background: #ffffff;
  color: #16201a;
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  overflow: hidden;
  padding: clamp(50px, 8vh, 96px) 0 clamp(50px, 8vh, 96px) clamp(20px, 6vw, 80px);
}
.qz-copy { max-width: 540px; }
.qz-badge {
  display: inline-block;
    text-transform: uppercase;
  padding: 10px 26px;
  border-radius: 50px;
color: #FFF;
font-family: Roboto;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 16px; /* 100% */
text-transform: capitalize;
border: 1px solid #C7CBDB;
background: #297907;
box-shadow: 0 1px 4px 0 rgba(32, 41, 76, 0.10);
  margin-bottom: clamp(20px, 3vh, 30px);
}
.qz-title {
color: #8A898A;
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: clamp(18px, 2.6vh, 28px); }
.qz-title .num  { color: #297907; }
.qz-title .rest { color: #000; }
.qz-text p { color: rgba(12, 2, 29, 0.60);
font-family: Roboto;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 25px; /* 138.889% */
letter-spacing: -0.2px; }
.qz-text p + p { margin-top: clamp(12px, 1.8vh, 18px); }
.qz-btn {
  display: inline-flex;
  align-items: center;
  margin-top: clamp(24px, 4vh, 36px);
  padding: 16px 36px;
  border-radius: 50px;
border: 1px solid #BEFF00;color: #BEFF00;
font-family: Roboto;
font-size: 15px;
font-style: normal;
font-weight: 500;
line-height: 20px; /* 133.333% */
text-transform: capitalize;
background: #0D1100;
box-shadow: 0 0 10px 0 rgba(190, 255, 0, 0.40);
  cursor: pointer;
  transition: background .2s, color .2s;
}
.qz-btn:hover { background: #16201a; color: #fff; }
.qz-panel {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  border-radius: 30px 0 0 30px;
  overflow: hidden;
  background:url("/services/modernize-cobol/image/10 questions to ask.webp");
  background-position: center;
  background-size: cover;
  padding: clamp(34px, 4vw, 60px) clamp(30px, 5vw, 90px);
}
/* .qz-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .6;
  background:url("/services/modernize-cobol/image/10 questions to ask.webp");
  background-position: center;
  background-size: cover;
} */
.qz-list { position: relative; z-index: 1; list-style: none; counter-reset: qz; width: 100%; }
.qz-list li {
  counter-increment: qz;
  position: relative;
  padding-left: 42px;
  color: #FFF;
font-family: Roboto;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 25px; /* 225% */
margin-bottom: 20px;
}
.qz-list li + li { margin-top: 0; }
.qz-list li::before { content: counter(qz) "."; position: absolute; left: 0; top: 0; width: 28px; text-align: right; color: rgba(255,255,255,.85); font-variant-numeric: tabular-nums; }
.qz-hl { color: #6fd96f; font-weight: 600; }

@media (max-width: 880px) {
  .qz { grid-template-columns: 1fr; padding: clamp(48px, 7vh, 72px) clamp(20px, 6vw, 48px); gap: 36px; }
  .qz-panel { border-radius: 22px; box-shadow: 0 20px 50px rgba(6,24,9,.3); }
  .qz-copy, .qz-text { max-width: 100%; }
}

/* ════════════════════════════════════════════════
   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("/services/modernize-cobol/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: 50px;
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: Roboto;
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: Roboto;
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: Roboto;
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; }

/* ════════════════════════════════════════════════
   CAPACITY BANNER
════════════════════════════════════════════════ */
.cap { 
background: url("/services/modernize-cobol/image/Why deterministic translation fits COBOL specifically.webp");
background-size: cover;
background-possition:center;
background-repeat: no-repeat;
 padding: 80px 0 80px; }
.cap-band {
  position: relative;
   margin: 0 auto;
  border-radius: 22px; overflow: hidden;
    width: 1200px;
  text-align: center;
}

.cap-inner { position: relative; z-index: 1; }
.cap-title { color: #FFF;
text-align: center;
font-family: "FONTSPRING DEMO - Roc Grotesk";
font-size: 48px;
font-style: normal;
font-weight: 700;
line-height: 50px; /* 100% */
letter-spacing: -1.44px; margin: 13px 0 20px; }
.cap-body { color: #fff;
text-align: center;
font-family: Roboto;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 25px; /* 138.889% */
letter-spacing: -0.2px; margin: 0 auto clamp(22px, 3.4vh, 30px); }
.cap-btn {
  display: inline-flex; align-items: center;
  border-radius: 50px;
border: 1px solid #000;
background: #FFF;
box-shadow: 0 20px 20px 0 rgba(190, 255, 0, 0.20);
  color: #000;
font-family: Roboto;
font-size: 15px !important;
font-style: normal;
font-weight: 500;
padding:12px 35px;
line-height: 20px; /* 133.333% */
text-transform: capitalize; border-radius: 50px;
  font-size: clamp(12px, 1vw, 14px); font-weight: 600; font-family: inherit; cursor: pointer;
  transition: transform .15s, box-shadow .25s;
  
}

/* ════════════════════════════════════════════════
   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;
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: 20px;
}

.COBOL-description{
    color: rgba(255, 255, 255, 0.6);
font-family: Roboto;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 25px; /* 138.889% */
letter-spacing: -0.2px;
    margin-bottom:40px;
}

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

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

    border-radius: 50px;
    background: #0D1100;
    padding: 20px 20px;
font-family: Roboto;
    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;

    z-index: 1;
}

/* Smooth Animated Border */
.green-btn::before{
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 50px;

    background: conic-gradient(
        from 00deg,
        transparent,
        #BEFF00,
        transparent,
        transparent
    );

    animation: rotateBorder 2.5s linear infinite;

    z-index: -2;
}

/* Inner Background */
.green-btn::after{
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 50px;
    background: #0D1100;
    z-index: -1;
}

/* Smooth Rotation */
@keyframes rotateBorder{
    100%{
        transform: rotate(360deg);
    }
}

/*  footer sec hide  */

.COBOL-javapage .footer-cta {
  display: none;
}


.COBOL-javapage .footer-section{
  border-radius: 0px !important;
}

/* ════════════════════════════════════════════════
   SECTION — THE STATE OF COBOL TODAY
════════════════════════════════════════════════ */
.cst {
  background: #ffffff;
  color: #16201a;
  padding: clamp(60px, 9vh, 110px) clamp(20px, 4vw, 40px);
  overflow: hidden;
}

.cst-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(32px, 6vw, 90px);
}

/* ── Stat cards (staggered 2-column layout) ── */
.cst-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(14px, 1.6vw, 22px);
  align-items: start;
  padding-block: 30px;
}

.cst-col {
  display: grid;
  gap: clamp(14px, 1.6vw, 22px);
}

/* left column sits lower — stagger effect */
.cst-col-a { margin-top: 70px; }
.cst-col-b { margin-top: 0; }

.cst-card {
  position: relative;
  border-radius: 12px;
border-right: 8px solid #7FB808;
background: #223500;
box-shadow: 20px 20px 60px 0 rgba(0, 0, 0, 0.15);
  padding: clamp(22px, 2.6vw, 34px) clamp(20px, 2.4vw, 30px);
  min-height: clamp(160px, 18vw, 210px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1;
}

/* lime accent edge behind the card */
/* .cst-card::after {
  content: "";
  position: absolute;
  inset: 8px -8px -2px 8px;
  background: #7FB808;
  border-radius: 10px;
  z-index: -1;
} */

.cst-lbl {
  color: #FFF;
font-family: Roboto;
font-size: 14px;
font-style: normal;
font-weight: 600;
line-height: 20px; /* 142.857% */
letter-spacing: 0.5px;
text-transform: uppercase;
}

.cst-num {
  color: #FFF;
font-family: Roboto;
font-size: 48px;
font-style: normal;
font-weight: 500;
line-height: 48px; /* 100% */
  margin-top: clamp(18px, 3vh, 30px);
}

/* ── Copy side ── */
.cst-badge {
  display: inline-block;
  color: #FFF;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  text-transform: capitalize;
  padding: 10px 26px;
  border-radius: 50px;
  border: 1px solid #C7CBDB;
  background: #297907;
  box-shadow: 0 1px 4px 0 rgba(32, 41, 76, 0.10);
  margin-bottom: clamp(20px, 3vh, 30px);
}

.cst-title {
  color: #0C021D;
  font-family: "FONTSPRING DEMO - Roc Grotesk", Arial, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  letter-spacing: -1.44px;
  margin-bottom: clamp(18px, 2.6vh, 28px);
}

.cst-text p {
  color: rgba(12, 2, 29, 0.60);
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: -0.2px;
}

.cst-text p + p { margin-top: clamp(14px, 2vh, 20px); }

/* ── Responsive ── */
@media (max-width: 980px) {
  .cst-inner { grid-template-columns: 1fr; gap: 48px; }
  .cst-copy  { order: 1; }
  .cst-cards { order: 2; max-width: 560px; margin: 0 auto; width: 100%; }
}

@media (max-width: 520px) {
  .cst-col-a { margin-top: 0; }          /* drop the stagger on mobile */
  .cst-cards { grid-template-columns: 1fr; }
  .cst-card  { min-height: 140px; }
  .cst-title { font-size: 32px; line-height: 40px; letter-spacing: -1px; }
}

/* ════════════════════════════════════════════════
   SECTION — PROCESS FOR COBOL MODERNIZATION
════════════════════════════════════════════════ */
.proc {
  background: #ffffff;
  padding:80px 0 20px;
  overflow: hidden;
}

.proc-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.proc-head-block {
  text-align: center;
  margin-bottom: clamp(40px, 6vh, 64px);
}

.proc-title {
  color: #0C021D;
  font-family: "FONTSPRING DEMO - Roc Grotesk", Arial, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  letter-spacing: -1.44px;
  margin-bottom: 14px;
}

.proc-sub {
  color: rgba(12, 2, 29, 0.60);
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: -0.2px;
}

/* ── 5-column grid ── */
.proc-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.proc-col {
  position: relative;
  padding: 0 clamp(14px, 1.6vw, 24px);
}

/* vertical divider between columns (starts below the track line) */
.proc-col + .proc-col::before {
  content: "";
  position: absolute;
  left: 0;
  top: 78px;
  bottom: 0;
  width: 1px;
  background: #ECECEF;
}

/* ── Icon + ghost number row ── */
.proc-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  min-height: 56px;
}

.proc-icon {
  color: #00205B;
  display: inline-flex;
  padding-top: 4px;
}

.proc-ghost {
  color: #E6E7EB;
  font-family: roboto, sans-serif;
  font-size: clamp(44px, 4.2vw, 60px);
  font-weight: 700;
  line-height: 35px;
  user-select: none;
}

/* ── Track line + dot ── */
.proc-track {
  position: relative;
  height: 1px;
  background: #9FABC1;
  margin: 10px 0 clamp(22px, 3vh, 32px);
}

.proc-track::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00205B;
}

/* ── Column body ── */
.proc-phase {
  color: #000D2F;
font-family: Roboto;
font-size: 18px;
font-style: normal;
font-weight: 600;
line-height: 27px; /* 133.333% */
  margin-bottom: 12px;
}

.proc-time {
  color: #206393;
font-family: Inter;
font-size: 14px;
font-style: normal;
font-weight: 600;
line-height: 22px; /* 157.143% */
letter-spacing: 0.6px;
text-transform: uppercase;
  margin-bottom: clamp(18px, 2.6vh, 26px);
}

.proc-group + .proc-group { margin-top: clamp(16px, 2.4vh, 24px); }

.proc-lbl {
  color: #444650;
font-family: Roboto;
font-size: 16px;
font-style: normal;
font-weight: 600;
line-height: 16px; /* 114.286% */
letter-spacing: 0.6px;
  margin-bottom: 6px;
}
.proc-group {
    margin-bottom: 20px;
}
.proc-txt {
  color: #1A1B20;
font-family: Roboto;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 24px; /* 133.333% */
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .proc-grid { grid-template-columns: repeat(3, 1fr); row-gap: 48px; }
  /* kill divider on rows' first columns (4th item starts row 2) */
  .proc-col:nth-child(4)::before { display: none; }
}

@media (max-width: 760px) {
  .proc-grid { grid-template-columns: repeat(2, 1fr); }
  .proc-col:nth-child(4)::before { display: block; }
  .proc-col:nth-child(odd)::before { display: none; }
}

@media (max-width: 480px) {
  .proc-grid { grid-template-columns: 1fr; }
  .proc-col + .proc-col::before { display: none; }
  .proc-col { padding: 0; }
  .proc-title { font-size: 32px; line-height: 40px; letter-spacing: -1px; }
}


/* ════════════════════════════════════════════════
   SECTIONS — TARGET LANGUAGE / STACK UNDERNEATH
   (shared card layout, .pcs--green = green variant)
════════════════════════════════════════════════ */
.pcs {
  background: #ffffff;
  padding: clamp(60px, 9vh, 110px) clamp(20px, 4vw, 40px);
  overflow: hidden;
}

.pcs-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.pcs-badge-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(18px, 2.6vh, 26px);
}

.pcs-badge {
  display: inline-block;
  color: #FFF;
  font-family: Roboto, sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 50px;
  background: #438A26;
  box-shadow: 0 1px 4px 0 rgba(32, 41, 76, 0.10);
}

.pcs-title {
  text-align: center;
  color: #0C021D;
  font-family: "FONTSPRING DEMO - Roc Grotesk", Arial, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  letter-spacing: -1.44px;
  margin-bottom: clamp(12px, 1.8vh, 18px);
}

.pcs-sub {
  text-align: center;
  color: rgba(12, 2, 29, 0.60);
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: -0.2px;
  max-width: 760px;
  margin: 0 auto clamp(36px, 5.5vh, 56px);
}

/* ── Card grid ── */
.pcs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 30px);
}

.pcs-card {
  display: flex;
  flex-direction: column;
  background: #F5F5F5;
  border-radius: 14px;
  padding: clamp(26px, 3vw, 38px) clamp(22px, 2.6vw, 32px);
  min-height: clamp(240px, 26vw, 300px);
}

.pcs-dash {
  display: block;
  width: 30px;
  height: 3px;
  border-radius: 2px;
  background: #297907;
  margin-bottom: clamp(16px, 2.2vh, 22px);
}

.pcs-card-title {
  color: #000D2F;
font-family: Roboto;
font-size: 32px;
font-style: normal;
font-weight: 600;
line-height: 38.4px; /* 120% */
letter-spacing: -0.32px;
  margin-bottom: clamp(14px, 2vh, 18px);
}

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

.pcs-link {
  margin-top: auto;
  padding-top: clamp(80px, 3vh, 30px);
  color: #297907;
font-family: Roboto;
font-size: 18px;
font-style: normal;
font-weight: 600;
line-height: 19.6px; /* 108.889% */
letter-spacing: 0.28px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.pcs-link:hover { opacity: 0.75; }

.pcs-link span {
  display: inline-block;
  transition: transform 0.2s ease;
}

.pcs-link:hover span { transform: translateX(4px); }

/* ── Green variant ── */
.pcs--green .pcs-card       { background: #297907; }
.pcs--green .pcs-dash       { background: #BEFF00; }
.pcs--green .pcs-card-title { color: #FFF; }
.pcs--green .pcs-card-text  { color: rgba(255, 255, 255, 0.88); }
.pcs--green .pcs-link       { color: #FFF; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .pcs-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pcs-card { min-height: 0; }
  .pcs-title { font-size: 32px; line-height: 40px; letter-spacing: -1px; }
  .pcs-title br { display: none; }
}

/* ════════════════════════════════════════════════
   SECTION — EVERY MAJOR COBOL DIALECT, ONE TOOLKIT
════════════════════════════════════════════════ */
.dia {
  background: #ffffff;
  padding: 40px 40px 70px;
  overflow: hidden;
}

.dia-inner {
  max-width: 1200px;
  padding: 40px;
  margin: 0 auto;
  border-radius: 30px;
border: 1px solid #000;
}

.dia-badge-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(18px, 2.6vh, 26px);
}

.dia-badge {
  display: inline-block;
  color: #FFF;
  font-family: Roboto, sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 50px;
  background: #438A26;
  box-shadow: 0 1px 4px 0 rgba(32, 41, 76, 0.10);
}

.dia-title {
  text-align: center;
  color: #0C021D;
  font-family: "FONTSPRING DEMO - Roc Grotesk", Arial, sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 50px;
  letter-spacing: -1.44px;
  margin-bottom: clamp(12px, 1.8vh, 18px);
}

.dia-sub {
  text-align: center;
  color: rgba(12, 2, 29, 0.60);
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: -0.2px;
  max-width: 1100px;
  margin: 0 auto clamp(36px, 5.5vh, 56px);
}

/* ── Gradient engine panel ── */
.dia-panel {
  border-radius: 18px;
  background: linear-gradient(180deg, #348014 0%, #FFFFFF 62%);
  padding: 40px 0;
  text-align: center;
}

.dia-panel-title {
  color: #000;
text-align: center;
font-family: roboto;
font-size: 32px;
font-style: normal;
font-weight: 600;
line-height: 40px; /* 125% */
letter-spacing: -0.32px;
  margin-bottom: 8px;
}

.dia-panel-label {
  color: #000;
text-align: center;
font-family: roboto;
font-size: 14px;
font-style: normal;
font-weight: 500;
line-height: 20px; /* 142.857% */
letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: clamp(24px, 3.4vh, 36px);
}

/* ── Target language columns ── */
.dia-targets {
  display: flex;
  justify-content: center;
  gap: clamp(30px, 6vw, 90px);
  margin-bottom: clamp(36px, 5.5vh, 60px);
}

.dia-target-name {
  color: #0C021D;
  font-family: Roboto, sans-serif;
  font-size: clamp(24px, 1.5vw, 20px);
  font-weight: 700;
  line-height: 1.2;
}

.dia-target-line {
  display: block;
  width: clamp(90px, 9vw, 120px);
  height: 1px;
  background: rgba(12, 2, 29, 0.45);
  margin: 10px auto;
}

.dia-target-desc {
  color: rgba(12, 2, 29, 0.65);
  font-family: Roboto, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* ── Dialect pills ── */
.dia-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 15px;
}

.dia-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #223500;
  color: #FFF;
  font-family: Roboto, sans-serif;
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
  padding: 14px 22px;
  border-radius: 50px;
  min-width: clamp(130px, 13vw, 165px);
}

/* ── Bottom note ── */
.dia-note {
  border-top: 1px solid #E8E8EA;
  margin-top: clamp(32px, 5vh, 48px);
  padding-top: clamp(20px, 3vh, 28px);
  text-align: center;
  font-style: italic;
  color: #535458;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: -0.1px;
  max-width: 900px;
  margin-inline: auto;
}

/* ── Responsive ── */
@media (max-width: 760px) {
  .dia-title { font-size: 32px; line-height: 40px; letter-spacing: -1px; }
  .dia-targets { gap: 24px; flex-wrap: wrap; }
  .dia-pill { min-width: 0; padding: 12px 18px; }
}

/* ════════════════════════════════════════════════
   SECTION — PROOF / WHERE THIS WORK HAS SHIPPED
════════════════════════════════════════════════ */
.prf {
  background: #ffffff;
  padding: clamp(60px, 9vh, 110px) clamp(20px, 4vw, 40px);
  overflow: hidden;
}

.prf-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(32px, 5vw, 70px);
  align-items: start;
}

/* ── Left column ── */
.prf-badge {
  display: inline-block;
  color: #FFF;
  font-family: Roboto, sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 10px 26px;
  border-radius: 50px;
  background: #297907;
  box-shadow: 0 1px 4px 0 rgba(32, 41, 76, 0.10);
  margin-bottom: clamp(18px, 2.6vh, 26px);
}

.prf-title {
  color: #000;
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: clamp(16px, 2.4vh, 24px);
}

.prf-text p {
  color: rgba(12, 2, 29, 0.60);
font-family: Roboto;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 25px; /* 138.889% */
letter-spacing: -0.2px;
}

.prf-text p + p { margin-top: clamp(12px, 1.8vh, 18px); }

/* client names with dot separators */
.prf-clients {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 40px;
  row-gap: 14px;
  margin-top: clamp(24px, 3.6vh, 34px);
}

.prf-client {
  color: #191C1D;
font-family: roboto;
font-size: 14px;
font-style: normal;
font-weight: 600;
line-height: 24px; /* 150% */
  display: inline-flex;
  align-items: center;
}

.prf-client:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #B3B3B3;
  margin-left: 22px;
}

/* 2×2 stat grid */
.prf-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vh, 32px) clamp(20px, 3vw, 40px);
  margin-top: clamp(30px, 4.5vh, 44px);
}

.prf-num {
color: #297907;

font-family: Roboto;
font-size: 40px;
font-style: normal;
font-weight: 700;
line-height: 52.8px; /* 110% */
letter-spacing: -0.96px;
}

.prf-stat-lbl {
  color: #000D2F;
font-family: roboto;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 24px; /* 150% */
text-transform: uppercase;
  margin-top: 6px;
}

/* ── Right dark card ── */
.prf-card {
  background: #1A2501;
  border-radius: 20px;
  padding: clamp(28px, 3.4vw, 44px) clamp(24px, 3vw, 40px);
}

.prf-card-label {
  color: #BEFF00;
font-family: roboto;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 24px; /* 150% */
text-transform: uppercase;
  margin-bottom: 14px;
}

.prf-card-title {
  color: #FFF;
font-family: roboto;
font-size: 20px;
font-style: normal;
font-weight: 500;
line-height: 31.2px; /* 130% */
  margin-bottom: clamp(16px, 2.4vh, 22px);
}

.prf-card-text p {
 color: #FFF;
font-family: roboto;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 26px; /* 162.5% */
}

.prf-card-text p + p { margin-top: clamp(12px, 1.8vh, 18px); }

.prf-card-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 80px 0 30px;
}

.prf-quote { margin: 0; }

.prf-quote p {
  color: #BEFF00;
font-family: roboto;
font-size: 18px;
font-style: italic;
font-weight: 400;
line-height: 28.8px; /* 160% */
  margin-bottom: clamp(14px, 2vh, 20px);
}

.prf-cite {
  color: #FFF;
font-family: roboto;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 24px; /* 150% */
}

/* ── Responsive ── */
@media (max-width: 980px) {
  .prf-inner { grid-template-columns: 1fr; gap: 44px; }
  .prf-title br { display: none; }
}

@media (max-width: 520px) {
  .prf-title { font-size: 32px; line-height: 40px; letter-spacing: -1px; }
  .prf-stats { grid-template-columns: 1fr 1fr; gap: 20px; }
  .prf-card { padding: 26px 20px; }
}

/* ════════════════════════════════════════════════
   SECTION — FOUR PATHS / STRATEGIC OPTIONS
════════════════════════════════════════════════ */
.fp {
  background: #F5F5F5;
  padding: clamp(60px, 9vh, 110px) clamp(20px, 4vw, 40px);
  overflow: hidden;
}

.fp-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.fp-badge-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(18px, 2.6vh, 26px);
}

.fp-badge {
  display: inline-block;
  color: #FFF;
  font-family: Roboto, sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 50px;
  background: #297907;
  box-shadow: 0 1px 4px 0 rgba(32, 41, 76, 0.10);
}

.fp-title {
  text-align: center;
  color: #0C021D;
  font-family: "FONTSPRING DEMO - Roc Grotesk", Arial, sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 50px;
  letter-spacing: -1.44px;
  margin-bottom: 10px 0 20px;
}

.fp-sub {
  text-align: center;
  color: rgba(12, 2, 29, 0.60);
  font-family: Roboto, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.15px;
  margin-bottom: clamp(36px, 5.5vh, 56px);
}

/* ── Card grid ── */
.fp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.8vw, 24px);
  align-items: stretch;
}

.fp-card {
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border: 1px solid #EAEAEE;
  border-radius: 10px;
  padding: clamp(20px, 2.2vw, 28px) clamp(18px, 2vw, 26px);
  box-shadow: 0 1px 3px rgba(32, 41, 76, 0.05);
}

.fp-card-title {
  color: #000D2F;
font-family: Roboto;
font-size: 20px;
font-style: normal;
font-weight: 600;
line-height: 31.2px; /* 141.818% */
}

.fp-card-divider {
  height: 1px;
  background: #ECECEF;
  margin: clamp(14px, 2vh, 20px) 0;
}

.fp-card-text {
  color: #444650;
font-family: roboto;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 24px; /* 150% */
}

/* outcome block pinned to card bottom */
.fp-outcome { margin-top: auto; padding-top: clamp(25px, 2.6vh, 26px); }

.fp-outcome-lbl {
  color: #B8B8BC;
  font-family: Roboto, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.fp-outcome-txt {
  color: #191C1D;
font-family: Roboto;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 28.8px; /* 160% */

}

/* ── Highlighted "ours" card ── */
.fp-card:hover {
  background: #E8EEDB;
  border: 1px solid #72A55B;
}

.fp-card--ours .fp-card-divider { background: #C5DACB; }

.fp-approach {
  color: #1D797D;
  font-family: Roboto, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-top: 8px;
}

.fp-card--ours .fp-outcome-lbl { color: #1D797D; }

.fp-card--ours .fp-outcome-txt {
  color: #006970;
  font-weight: 700;
}

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

@media (max-width: 560px) {
  .fp-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .fp-title { font-size: 32px; line-height: 40px; letter-spacing: -1px; }
}