/* ============================================================
   TrojAI Detect — page-specific styles
   Hero: two-column split (copy + bordered card | dhp product panel).
   The dhp panel = Figma right-panel plate (image) + live floating
   trojAI pill + frosted outcome marquee. Figma node 2736:813.
   Tokens (--swatch--*) come from the main Webflow stylesheet.
   ============================================================ */

/* ---- Hero shell ---------------------------------------------------- */
.detect_hero {
  position: relative;
  overflow: hidden;
  /* hero background glow + guide lines (transparent PNG) over the dark theme */
  background-color: var(--swatch--colorp4, #002017);
  background-image: url("../images/hero-background.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/* ---- Layout -------------------------------------------------------- */
.dh_container { position: relative; z-index: 1; }

/* full-bleed top + bottom hairlines — span the whole viewport edge-to-edge.
   Drawn on .dh_container, which sits BELOW the page-top spacer, so the top
   line clears the fixed nav and stays visible (header is left untouched).
   Clipped by .detect_hero{overflow:hidden} so 100vw adds no horizontal scroll. */
.detect_hero .dh_container::before,
.detect_hero .dh_container::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  height: 1px;
  /* standardized to 0.30 site-wide via css/hero-lines.css */
  background: rgba(255, 255, 255, 0.30);
  pointer-events: none;
}
.detect_hero .dh_container::before { top: -1.5rem; }
.detect_hero .dh_container::after  { bottom: -1.5rem; }
/* match the other hero pages: hide the rules on stacked mobile */
@media (max-width: 991px) {
  .detect_hero .dh_container::before,
  .detect_hero .dh_container::after { display: none; }
}
.dh_grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5.4rem);
  align-items: stretch;
}

.dh_left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(2rem, 5vh, 4rem);
  min-width: 0;
}
.dh_top { display: flex; flex-direction: column; gap: 1.75rem; }

/* bordered copy card (body + buttons) pinned to the bottom of the column */
.dh_card {
  border: 1px solid var(--swatch--light-stroke-color, rgba(255, 255, 255, 0.14));
  border-radius: 16px;
  padding: clamp(1.5rem, 2.4vw, 2.375rem);
  background: rgba(255, 255, 255, 0.02);
  display: flex; flex-direction: column;
  gap: clamp(1.5rem, 2.4vw, 2.25rem);
}
.dh_btns { display: flex; flex-wrap: wrap; gap: 1.25rem; }

.dh_right { display: flex; align-items: center; min-width: 0; }

/* ---- dhp product panel -------------------------------------------- */
.dhp {
  position: relative;
  width: 100%;
  max-width: 610px;
  margin-inline: auto;
  aspect-ratio: 610 / 596;
  border-radius: 16px;
  overflow: hidden;
  isolation: isolate;
  background: #002017 url("../images/detect-hero-panel.png") center / cover no-repeat;
}

/* floating trojAI pill, centred in the panel */
.dhp__pill {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  z-index: 2; pointer-events: none;
}
.dhp__pillfloat {
  width: clamp(118px, 27%, 166px);   /* % resolves against the panel (grid area) */
  animation: dhp-float 4.5s ease-in-out infinite;
  will-change: transform;
}
.dhp__pillfloat svg { display: block; width: 100%; height: auto; }

@keyframes dhp-float {
  0%, 100% { transform: translateY(-6px); }
  50%      { transform: translateY(6px); }
}

/* frosted-glass outcome marquee along the bottom edge */
.dhp__bar {
  position: absolute; left: 0; right: 0; bottom: 0;
  height: clamp(56px, 12.6%, 75px);
  display: flex; align-items: center;
  overflow: hidden; z-index: 3;
  background: rgba(0, 32, 23, 0.42);
  -webkit-backdrop-filter: blur(14px) saturate(125%);
  backdrop-filter: blur(14px) saturate(125%);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.dhp__marquee {
  display: flex;            /* two identical tracks butt together */
  width: max-content;
  animation: dhp-marquee 26s linear infinite;
  will-change: transform;
}
.dhp__track {
  display: flex; align-items: center; flex: 0 0 auto;
  gap: 1.5rem;             /* intra-track spacing … */
  padding-right: 1.5rem;   /* … matched across the track seam for a seamless loop */
}
.dhp__sep { width: 17px; height: 17px; flex: 0 0 auto; display: block; }
.dhp__chip {
  color: var(--swatch--colors1, #fff);
  font-size: 0.9375rem; font-weight: 500;
  letter-spacing: 0.01em; white-space: nowrap;
}

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

@media (prefers-reduced-motion: reduce) {
  .dhp__pillfloat, .dhp__marquee { animation: none; }
}

/* ---- Responsive ---------------------------------------------------- */
@media (max-width: 991px) {
  .dh_grid { grid-template-columns: 1fr; gap: clamp(2.5rem, 6vw, 3.5rem); }
  .dh_left { justify-content: flex-start; }
  .dhp { max-width: 560px; }
}
@media (max-width: 479px) {
  .dh_btns { flex-direction: column; align-items: stretch; }
  .dh_btns .button_main_wrap { width: 100%; }
}

/* ============================================================
   Problem section (Figma 2739:622) — "Unpredictable Agent Behavior"
   bg = solid colorp4 (continues the hero's dark green seamlessly);
   inner card = exact Figma gradient + hairline border, split into a
   heading/lines cell and a bordered body cell.
   ============================================================ */
.problem_section {
  background-color: var(--swatch--colorp4, #002017);
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.35);
  padding-block: clamp(4.5rem, 8vw, 125px);
}
.problem_box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 532px);
  min-height: 320px;
  border: 0.5px solid rgba(255, 255, 255, 0.35);
  background-image: linear-gradient(
    201.83deg,
    var(--swatch--colorp4, #002017) 44.18%,
    var(--swatch--colorp1, #005d45) 131.32%
  );
}

/* left: eyebrow + heading (top), 3-line divider (bottom) */
.problem_left {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(2rem, 4vw, 2.75rem);
  padding: 50px 0 40px;
  min-width: 0;
}
.problem_head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-inline: 54px 24px;   /* heading inset; lines stay flush to the card edge */
}
/* let the heading fill the cell (2-line wrap like Figma), not the ~340px --number measure */
.problem_head .u-heading { max-width: 100%; }
.problem_lines { width: 100%; height: 38px; }
.problem_lines svg { display: block; width: 100%; height: 100%; }

/* right: body paragraph, divided by a hairline border */
.problem_right {
  display: flex;
  align-items: center;
  padding: 30px 44px;
  border-left: 0.5px solid rgba(255, 255, 255, 0.35);
  min-width: 0;
}
.problem_right .u-text { max-width: 430px; }

@media (max-width: 991px) {
  .problem_box { grid-template-columns: 1fr; min-height: 0; }
  .problem_left { padding: 36px 0 60px; }
  .problem_head { padding-inline: 28px; }
  .problem_right {
    border-left: none;
    border-top: 0.5px solid rgba(255, 255, 255, 0.35);
    padding: 28px;
  }
  .problem_right .u-text { max-width: none; }
}

/* ============================================================
   Solution + Key Features section (Figma 2743:672) — LIGHT theme
   White bg; green eyebrows; dark-green gradient/chart cards.
   ============================================================ */
.solution_section { background-color: #fff; padding-block: clamp(4.5rem, 8vw, 125px); }
.solution_section .u-container-wide {
  display: flex; flex-direction: column;
  gap: clamp(4rem, 9vw, 160px);
}

/* ---------- Block 1: The Solution ---------- */
.sol_block {
  border-top: 1px solid var(--swatch--light-stroke-color, #d9d9d9);
  display: grid;
  grid-template-columns: minmax(0, 543px) minmax(0, 1fr);
  gap: 61px;
  align-items: stretch;
  padding-top: 0;
}

/* chart card: dark-green radial gradient with a centred light panel */
.sol_chart {
  position: relative;
  height: 100%;
  min-height: 640px;
  container-type: inline-size;
  display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(ellipse 92% 78% at 50% 46%,
      #005d45 0%, #003f2e 55%, var(--swatch--colorp4, #002017) 100%);
  font-size: clamp(7.4px, 1.842cqw, 10px);   /* 1em ≈ 10px at the 543px design width */
}
.chart_panel {
  width: 34.8em; max-width: 86%;
  background: #ebebeb; border-radius: 0.6em; padding: 1.2em;
  display: flex; flex-direction: column;
}
.chart_head { display: flex; align-items: center; justify-content: space-between; padding: 0.8em 0.2em 1.2em; }
.chart_title { font-size: 1em; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--swatch--colorp4, #002017); }
.chart_badge {
  display: inline-flex; align-items: center; gap: 0.4em;
  padding: 0.3em 0.8em 0.3em 0.4em; border-radius: 4em;
  background: rgba(238, 79, 47, 0.05); border: 1px solid rgba(238, 79, 47, 0.4);
}
.chart_badge_num { background: #ee4f2f; color: #fff; font-size: 0.7em; font-weight: 600; letter-spacing: 0.06em; padding: 0.2em 0.5em; border-radius: 1em; line-height: 1.4; }
.chart_badge_txt { color: #df3f1f; opacity: 0.8; font-size: 0.7em; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.chart_row { background: #fff; border-radius: 0.6em; padding: 1.2em; }
.chart_row + .chart_row { margin-top: 1.2em; }
.chart_label { font-size: 0.9em; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: #2c2c2c; opacity: 0.58; }
.chart_value { color: #000; opacity: 0.8; letter-spacing: -0.03em; line-height: 1; margin: 0.35em 0 0.7em; }
.chart_value b { font-size: 5em; font-weight: 400; }
.chart_value span { font-size: 2.4em; font-weight: 400; }
.chart_bar { position: relative; height: 0.5em; background: #f5f5f5; overflow: hidden; }
.chart_bar i { position: absolute; inset: 0 auto 0 0; height: 100%; display: block; }
.chart_bar i.is-violet { background: #6958ff; }
.chart_bar i.is-green { background: var(--swatch--colorp2, #349065); }

/* right column: eyebrow + heading + subtext (top), gray icon card (bottom) */
.sol_right {
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 2.5rem; min-height: 640px; padding-top: 45px; min-width: 0;
}
.sol_intro { display: flex; flex-direction: column; gap: 12px; }
.sol_sub .u-text p, .sol_sub p { font-size: 18px; line-height: 32px; opacity: 0.8; }
.sol_sub { max-width: 515px; }
.sol_gray {
  background: #ebebeb; border: 1px solid var(--swatch--light-stroke-color, #d9d9d9);
  padding: 32px; display: flex; flex-direction: column; justify-content: space-between; gap: 32px;
  min-height: 307px;
}
.sol_icon { width: 40px; height: 40px; border: 1px solid var(--swatch--colorp1, #005d45); display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.sol_icon svg { width: 20px; height: 20px; display: block; fill: var(--swatch--colorp2, #349065); }
.sol_gray_body p { font-size: 24px; line-height: 38px; color: var(--swatch--colorp4, #002017); max-width: 633px; }

/* ---------- Block 2: Key Features ---------- */
.feat_block { display: flex; justify-content: space-between; gap: 40px; align-items: stretch; }
.feat_left {
  flex: 0 1 576px; display: flex; flex-direction: column; justify-content: space-between; gap: 2.5rem; min-width: 0;
}
.feat_card {
  flex: 0 0 auto; width: min(460px, 100%); min-height: 172px;
  display: flex; align-items: center; justify-content: center; text-align: center;
  padding: 38px 39px; border: 1px solid rgba(217, 217, 217, 0.35);
  background-image: linear-gradient(217.26deg, var(--swatch--colorp2, #349065) 0%, var(--swatch--colorp4, #002017) 128.14%);
}
.feat_card p { font-size: 18px; line-height: 32px; font-weight: 700; color: #fff; max-width: 368px; }

/* accordion */
.feat_accordion { flex: 0 1 702px; min-width: 0; display: flex; flex-direction: column; }
.feat_item { border: 1px solid var(--swatch--light-stroke-color, #d9d9d9); }
.feat_item + .feat_item { border-top: none; }
.feat_summary {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 30px; cursor: pointer; list-style: none;
}
.feat_summary::-webkit-details-marker { display: none; }
.feat_q { font-size: 24px; line-height: 30px; color: var(--swatch--colorp4, #002017); }
.feat_toggle {
  position: relative; width: 32px; height: 32px; flex: 0 0 auto;
  border: 1px solid var(--swatch--colorp4, #002017);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.feat_toggle::before, .feat_toggle::after {
  content: ""; position: absolute; left: 50%; top: 50%; background: var(--swatch--colorp4, #002017);
}
.feat_toggle::before { width: 12px; height: 1.5px; transform: translate(-50%, -50%); }
.feat_toggle::after { width: 1.5px; height: 12px; transform: translate(-50%, -50%); transition: opacity 0.2s ease; }
.feat_item[open] .feat_toggle { background: var(--swatch--colorp3, #00de64); border-color: var(--swatch--colorp3, #00de64); }
.feat_item[open] .feat_toggle::after { opacity: 0; }
.feat_a { padding: 0 30px 30px; }
.feat_a p { font-size: 16px; line-height: 25.6px; color: var(--swatch--colorp4, #002017); max-width: 539px; }
.feat_a .feat_list { list-style: none; display: flex; flex-direction: column; gap: 12px; max-width: 560px; margin: 0; padding: 0; }
.feat_a .feat_list li { position: relative; padding-left: 18px; font-size: 16px; line-height: 25.6px; color: var(--swatch--colorp4, #002017); }
.feat_a .feat_list li::before { content: ""; position: absolute; left: 0; top: 10px; width: 6px; height: 6px; border-radius: 50%; background: var(--swatch--colorp1, #005d45); }
.feat_a .feat_list strong { font-weight: 600; }

@media (max-width: 991px) {
  .sol_block { grid-template-columns: 1fr; gap: 40px; }
  .sol_chart { min-height: 0; aspect-ratio: 543 / 560; height: auto; font-size: clamp(8px, 4.6cqw, 12px); }
  .sol_right { min-height: 0; padding-top: 36px; }
  .sol_gray { min-height: 0; }
  .feat_block { flex-direction: column; gap: 40px; }
  .feat_left { flex: none; }
  .feat_card { width: 100%; }
  .feat_accordion { flex: none; }
  .feat_q { font-size: 20px; }
  .sol_gray_body p { font-size: 20px; line-height: 30px; }
}

/* ============================================================
   How It Works section (Figma 2750:979) — DARK theme
   Centered header, 3 bordered attack columns, gradient flow card
   (flowchart image + native title & numbered steps).
   ============================================================ */
.hiw_section {
  background-color: var(--swatch--colorp4, #002017);
  padding-block: clamp(4.5rem, 8vw, 110px);
}
.hiw_section .u-container-wide { display: flex; flex-direction: column; gap: 0; }

/* header */
.hiw_header { display: flex; flex-direction: column; align-items: center; gap: 23px; text-align: center; }
.hiw_header .u-heading { max-width: 740px; }
.hiw_header .u-heading h2 { text-align: center; }
.hiw_sub { max-width: 740px; }
.hiw_sub p { font-size: 16px; line-height: 1.5; font-weight: 300; opacity: 0.8; }

/* 3 attack columns */
.hiw_cols { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: clamp(2.5rem, 5vw, 70px); }
.hiw_col { border: 1px solid rgba(255, 255, 255, 0.36); padding: 32px; display: flex; flex-direction: column; gap: 18px; min-height: 215px; min-width: 0; }
.hiw_col + .hiw_col { border-left: none; }
.hiw_col h3 { font-size: 20px; font-weight: 500; line-height: 28px; color: #fff; }
.hiw_col p { font-size: 14px; font-weight: 400; line-height: 21px; color: #fff; opacity: 0.8; }

/* flow card */
.flow_card {
  margin-top: -1px;   /* abut the columns above, merging the shared border */
  padding: clamp(28px, 4vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: linear-gradient(33deg,
    var(--swatch--colorp4, #002017) 0%, #00402f 56%, var(--swatch--colorp1, #005d45) 100%);
}
.flow_title { text-align: center; color: #fff; font-size: 20px; font-weight: 500; margin-bottom: clamp(1.5rem, 3vw, 36px); }
.flow_grid { display: grid; grid-template-columns: minmax(0, 1fr) 1px minmax(0, 318px); gap: clamp(24px, 4vw, 56px); align-items: stretch; }
.flow_diagram { display: flex; align-items: flex-start; justify-content: center; min-width: 0; }
.flow_diagram img { width: 100%; max-width: 751px; height: auto; display: block; }
.flow_divider { width: 1px; background: rgba(255, 255, 255, 0.14); }
.flow_steps { display: flex; flex-direction: column; gap: 26px; min-width: 0; }
.flow_step {
  flex: 1 0 0; min-height: 0; padding: 20px;
  background: var(--swatch--colorp1, #005d45);
  display: flex; flex-direction: column; justify-content: space-between; gap: 32px;
}
.flow_num { font-size: 20px; line-height: 28px; color: #d5fe70; }
.flow_step p { font-size: 14px; font-weight: 300; line-height: 1.4; color: #fff; }

@media (max-width: 991px) {
  .hiw_cols { grid-template-columns: 1fr; }
  .hiw_col + .hiw_col { border-left: 1px solid rgba(255, 255, 255, 0.36); border-top: none; }
  .flow_grid { grid-template-columns: 1fr; gap: 28px; }
  .flow_divider { display: none; }
  .flow_step { flex: 0 0 auto; justify-content: flex-start; gap: 14px; }
}

/* ============================================================
   Product in Action section (Figma 2750:1060) — DARK theme
   Green card: heading block (left) + 3 white icon rows (right).
   ============================================================ */
.pia_section {
  background-color: var(--swatch--colorp4, #002017);
  padding-block: clamp(4.5rem, 8vw, 125px);
}
.pia_card {
  background: var(--swatch--colorp1, #005d45);
  border: 0.5px solid rgba(0, 0, 0, 0.35);
  display: flex; align-items: stretch; justify-content: space-between;
  padding-left: 55px;
}
.pia_left {
  flex: 1 1 auto; min-width: 0;
  display: flex; flex-direction: column; justify-content: center;
  gap: clamp(2.5rem, 7vw, 97px);
  padding-block: 39px; padding-right: 24px;
}
.pia_intro { display: flex; flex-direction: column; gap: 20px; }
.pia_intro .u-eyebrow-text p { color: #fff; }   /* white eyebrow text, lime dot, on green */
.pia_sub { font-size: 18px; font-weight: 700; line-height: 32px; color: #fff; }

.pia_rows { flex: 0 0 650px; max-width: 650px; min-width: 0; display: flex; flex-direction: column; }
.pia_row {
  background: #fff; border: 0.5px solid rgba(0, 0, 0, 0.25);
  min-height: 99px; flex: 1 0 99px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 20px 30px;
}
.pia_row p { font-size: 16px; line-height: 25.6px; color: #000; min-width: 0; }
.pia_chip { flex: 0 0 auto; width: 31px; height: 31px; display: block; }

@media (max-width: 991px) {
  .pia_card { flex-direction: column; padding-left: 0; }
  .pia_left { padding: 40px 28px; gap: 2.5rem; }
  .pia_sub { white-space: normal; }
  .pia_rows { flex: none; max-width: none; width: 100%; }
  .pia_row { flex: 0 0 auto; }
  .pia_row p { white-space: normal; }
}

/* ============================================================
   Who We Serve + Why CISOs Love TrojAI (Figma 2750:1348) — LIGHT
   ============================================================ */
.serve_section { background-color: #fff; padding-block: clamp(4.5rem, 8vw, 125px); overflow-x: clip; }
.serve_section .u-container-wide { display: flex; flex-direction: column; gap: clamp(4rem, 9vw, 125px); }

/* ---- Part A: Who We Serve ---- */
.serve_block { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 452px); gap: clamp(2.5rem, 6vw, 92px); align-items: stretch; }
.serve_left { display: flex; flex-direction: column; justify-content: space-between; gap: clamp(2.5rem, 5vw, 77px); min-width: 0; }
.serve_head .u-heading { max-width: 520px; }
.serve_personas { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.persona {
  background: #ebebeb; padding: 21px 23px; min-height: 267px;
  display: flex; flex-direction: column; justify-content: space-between; gap: 2.5rem; min-width: 0;
}
.persona_top { display: flex; flex-direction: column; gap: 4px; }
.persona_top h3 { font-size: 24px; font-weight: 400; line-height: 30px; color: var(--swatch--colorp4, #002017); }
.persona_sub { font-size: 14px; font-weight: 700; line-height: 1.4; color: var(--swatch--colorp1, #005d45); }
.persona_desc { font-size: 14px; font-weight: 400; line-height: 1.4; color: var(--swatch--colorp4, #002017); opacity: 0.6; }
.serve_graphic { min-width: 0; display: flex; }
.serve_graphic img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---- Part B: Why CISOs Love TrojAI ---- */
.cisos_block { display: flex; flex-direction: column; }
.cisos_heading { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 71px); }
.cisos_heading .u-heading h2 { text-align: center; }
.cisos_grid {
  display: flex; flex-direction: column; position: relative;
  border-left: 1px solid var(--swatch--light-stroke-color, #d9d9d9);
  border-right: 1px solid var(--swatch--light-stroke-color, #d9d9d9);
}
/* full-bleed top + bottom rules that extend past the contained grid */
.cisos_grid::before, .cisos_grid::after {
  content: ""; position: absolute; left: 50%; transform: translateX(-50%);
  width: 100vw; height: 1px; background: var(--swatch--light-stroke-color, #d9d9d9); pointer-events: none;
}
.cisos_grid::before { top: -1px; }
.cisos_grid::after { bottom: -1px; }
.cisos_r { display: flex; }
.cisos_cell { min-width: 0; position: relative; }
.cisos_cell--br { border-right: 1px solid var(--swatch--light-stroke-color, #d9d9d9); }
.cisos_cell--bb { border-bottom: 1px solid var(--swatch--light-stroke-color, #d9d9d9); }

/* quote cells */
.cisos_quote { display: flex; flex-direction: column; justify-content: center; gap: 18px; padding: 30px; }
.cisos_quote img { width: 27px; height: 27px; display: block; flex: 0 0 auto; }
.cisos_quote p { font-size: 16px; font-weight: 300; line-height: 1.56; color: var(--swatch--colorp4, #002017); }
.cisos_attr { display: inline-flex; align-items: center; gap: 6px; }
.cisos_attr::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--swatch--colorp4, #002017); flex: 0 0 auto; }
.cisos_attr span { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--swatch--colorp4, #002017); }
.cisos_quote--openai { flex: 654 1 0; min-height: 248px; }
.cisos_quote--openai .cisos_attr { opacity: 0.59; }
.cisos_quote--gartner { flex: 322 1 0; min-height: 248px; }
.cisos_quote--gartner .cisos_attr { opacity: 0.8; }

/* stat cells */
.cisos_stat { display: flex; flex-direction: column; gap: 22px; padding: 32px; min-width: 0; }
.cisos_numgroup { display: flex; flex-direction: column; gap: 16px; }
.cisos_stat img { width: 22px; height: 22px; display: block; flex: 0 0 auto; }
.cisos_stat .num { font-size: 55px; font-weight: 400; line-height: 1.07; color: var(--swatch--colorp4, #002017); }
.cisos_stat .num.is-green { color: var(--swatch--colorp2, #349065); }
.cisos_stat .lede { font-size: 14px; font-weight: 400; line-height: 21px; color: var(--swatch--colorp4, #002017); opacity: 0.67; }
.cisos_stat .cap { font-size: 14px; font-weight: 600; line-height: 20px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--swatch--colorp4, #002017); }
.cisos_stat .cap.is-muted { opacity: 0.45; }
.cisos_stat--25 { flex: 330 0 0; width: 330px; min-height: 248px; justify-content: space-between; }
.cisos_stat--25 .cap { width: 100%; }
.cisos_stat--100 { flex: 327 1 0; min-height: 256px; justify-content: center; }
.cisos_stat--10k { flex: 327 1 0; min-height: 256px; justify-content: space-between; }
.cisos_stat--1m { flex: 330 0 0; width: 330px; min-height: 256px; justify-content: center; padding: 38px 33px; }
.cisos_aster { flex: 322 0 0; width: 322px; min-height: 256px; background: #005d45 url("../images/cisos-asterisk.png") center / cover no-repeat; }

@media (max-width: 991px) {
  .serve_block { grid-template-columns: 1fr; }
  .serve_graphic { aspect-ratio: 452 / 360; }
  .cisos_r { flex-direction: column; }
  .cisos_cell { width: 100% !important; flex: none !important; border: none !important; border-bottom: 1px solid var(--swatch--light-stroke-color, #d9d9d9) !important; }
  .cisos_r:last-child .cisos_cell:last-child { border-bottom: none !important; }
  .cisos_aster { min-height: 200px; }
}
@media (max-width: 600px) {
  .serve_personas { grid-template-columns: 1fr; }
}

/* ---- Prefooter CTA (reuses the home CTA idea) ---- */
.cta_btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
@media (max-width: 479px) {
  .cta_btns { flex-direction: column; align-items: stretch; width: 100%; max-width: 320px; margin-inline: auto; }
  .cta_btns .button_main_wrap { width: 100%; }
}
