/* ============================================================
   Producer Section — VARIATION 3: Compact, left-aligned
   Tighter sizing throughout. Single column with full-width
   section titles. Designed to drop into an existing webpage.
   ============================================================ */

.v3-root {
  background: #FFFFFF;
  color: var(--t-ink);
  font-family: 'Roboto', system-ui, sans-serif;
}

.v3-section { padding: 56px 0; }
.v3-section:first-child { padding-top: 64px; }
.v3-section + .v3-section { padding-top: 40px; }
/* Tighten the gap under the Solution headline */
.v3-solution { padding-top: 32px; padding-bottom: 40px; }
.v3-solution .v3-h2 { margin-bottom: 16px; }
.v3-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Type ---------- */
.v3-eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--c-blue);
  margin-bottom: 16px;
}
.v3-h1 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.022em;
  color: var(--c-navy);
  margin: 0 0 20px;
  max-width: 22ch;
}
.v3-h1-accent { color: var(--c-navy); position: relative; }
.v3-h1-accent::after {
  content: "";
  display: block;
  height: 4px;
  width: 80px;
  background: var(--c-lime);
  margin-top: 8px;
}

/* Hero grid: text left, image right */
.v3-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.v3-hero-img {
  border-radius: 16px;
  overflow: hidden;
  border: 4px solid var(--c-lime);
  aspect-ratio: 4 / 3;
  background: var(--c-paper);
}
.v3-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.v3-h2 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--c-navy);
  margin: 0 0 24px;
}
.v3-h3 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.008em;
  color: var(--c-navy);
  margin: 0;
}
.v3-lead {
  font-size: 17px;
  line-height: 1.55;
  color: var(--t-soft);
  max-width: 64ch;
  margin: 0;
  font-weight: 400;
}
.v3-body {
  font-size: 16px;
  line-height: 1.6;
  color: var(--t-soft);
  margin: 0;
  font-weight: 400;
  max-width: 60ch;
}
.v3-body--lead {
  font-size: 17px;
  max-width: 72ch;
  margin-bottom: 32px;
}

/* ---------- Cost (navy grid bg, white text, lime 70%) ---------- */
.v3-cost--bluegrid {
  position: relative;
  background: var(--clock-dark-blue) url("/typo3conf/ext/site_package/Resources/Public/assets/backgrounds/grid-dark.png") center / cover no-repeat;
  color: #fff;
  padding: 72px 0;
  margin: 24px 0 32px;
  overflow: hidden;
  isolation: isolate;
}
.v3-cost-grid-bg {
  display: none;
}
.v3-cost--bluegrid .v3-container { position: relative; z-index: 1; }
.v3-cost--bluegrid .v3-cost-stat {
  border-left-color: var(--c-lime);
}
.v3-cost--bluegrid .v3-cost-num { color: var(--c-lime); }
.v3-cost--bluegrid .v3-cost-num-label { color: #fff; }
.v3-cost--bluegrid .v3-body { color: rgba(255,255,255,0.88); }
.v3-cost--bluegrid .v3-h2 { color: #fff; }

/* ---------- Cost ---------- */
.v3-cost-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: center;
}
.v3-cost-stat {
  border-left: 3px solid var(--c-lime);
  padding: 8px 0 8px 20px;
}
.v3-cost-num {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 84px;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--c-navy);
  display: flex;
  align-items: flex-start;
}
.v3-cost-num-sym {
  font-size: 0.55em;
  font-weight: 700;
  margin-top: 0.12em;
  margin-left: 0.04em;
}
.v3-cost-num-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-navy);
  letter-spacing: 0.005em;
  margin-top: 14px;
  max-width: 22ch;
}

/* ---------- Solution ---------- */
.v3-sol-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: center;
}
.v3-sol-cows {
  display: flex;
  align-items: center;
  justify-content: center;
}
.v3-sol-cows img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 280px;
  object-fit: contain;
}

/* ---------- Scenario ---------- */
.v3-scenario-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 24px;
}
.v3-scenario-top .v3-body { margin-bottom: 0; flex: 1; }

.v3-toggle {
  position: relative;
  display: inline-flex;
  background: var(--c-paper);
  border: 1px solid var(--c-rule);
  border-radius: 999px;
  padding: 3px;
  flex-shrink: 0;
}
.v3-toggle-btn {
  position: relative;
  z-index: 2;
  padding: 8px 22px;
  border: 0;
  background: transparent;
  font: inherit;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--t-soft);
  cursor: pointer;
  border-radius: 999px;
  transition: color 200ms var(--ease);
  text-transform: uppercase;
}
.v3-toggle-btn.is-active { color: #fff; }
.v3-toggle-thumb {
  position: absolute;
  top: 3px;
  bottom: 3px;
  width: calc(50% - 3px);
  background: var(--c-navy);
  border-radius: 999px;
  transition: transform 320ms var(--ease);
  z-index: 1;
}
.v3-toggle-thumb--dairy { transform: translateX(0); left: 3px; }
.v3-toggle-thumb--beef  { transform: translateX(100%); left: 3px; }

.v3-inline-earner { color: var(--c-earner); font-weight: 700; }
.v3-inline-burner { color: var(--c-burner); font-weight: 700; }

/* VS panel */
.v3-vs {
  border: 1px solid var(--c-rule);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
.v3-vs-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--c-paper);
  border-bottom: 1px solid var(--c-rule);
}
.v3-vs-side {
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.v3-vs-side--earner {
  background: var(--c-earner-soft);
  border-right: 1px solid var(--c-earner-line);
}
.v3-vs-side--burner {
  background: var(--c-burner-soft);
}
.v3-vs-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 999px;
  text-transform: uppercase;
  flex-shrink: 0;
}
.v3-vs-pill--earner { background: var(--c-earner); color: #fff; }
.v3-vs-pill--burner { background: var(--c-burner); color: #fff; }
.v3-vs-rank-block {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.v3-vs-rank-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--t-mute);
}
.v3-vs-rank-value {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--c-navy);
  letter-spacing: -0.01em;
}
.v3-vs-rank-of { font-weight: 500; font-size: 12px; color: var(--t-mute); }

.v3-toggle--left { margin: 20px 0 24px; }

/* Animal cards (separated earner / burner) */
.v3-animals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.v3-animal {
  background: #fff;
  border: 1px solid var(--c-rule);
  border-radius: 14px;
  padding: 28px;
  position: relative;
  overflow: visible;
}
.v3-animal::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  border-radius: 14px 14px 0 0;
}
.v3-animal--earner { background: linear-gradient(180deg, var(--c-earner-soft) 0%, #fff 70%); border-color: var(--c-earner-line); }
.v3-animal--earner::before { background: var(--c-earner); }
.v3-animal--burner { background: linear-gradient(180deg, var(--c-burner-soft) 0%, #fff 70%); border-color: var(--c-burner-line); }
.v3-animal--burner::before { background: var(--c-burner); }
.v3-animal-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 8px;
}
.v3-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 999px;
  text-transform: uppercase;
}
.v3-pill--earner { background: var(--c-earner); color: #fff; }
.v3-pill--burner { background: var(--c-burner); color: #fff; }
.v3-rank-box {
  text-align: right;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 6px 12px;
  border-radius: 8px;
}
.v3-rank-box-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--t-mute);
  font-weight: 700;
  margin-bottom: 2px;
}
.v3-rank-box-value {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--c-navy);
  letter-spacing: -0.01em;
}
.v3-rank-box-of { color: var(--t-mute); font-weight: 500; font-size: 12px; }
/* Animal portrait between header and metrics — tight, allowed to overflow card */
.v3-animal-portrait {
  margin: -8px -16px -8px;
  height: 150px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  overflow: visible;
}
.v3-animal-portrait img {
  height: 180px;
  max-height: 180px;
  width: auto;
  max-width: none;
  object-fit: contain;
  filter: drop-shadow(0 14px 18px rgba(0,0,0,0.22)) drop-shadow(0 4px 6px rgba(0,0,0,0.12));
  transition: transform 320ms var(--ease);
  margin-top: -30px;
}
.v3-animal:hover .v3-animal-portrait img {
  transform: translateY(-2px) scale(1.02);
}

.v3-animal-sub {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.v3-animal-sub--earner { color: var(--c-earner); }
.v3-animal-sub--burner { color: var(--c-burner); }
.v3-metrics { list-style: none; margin: 0; padding: 0; }
.v3-metric { padding: 14px 0; border-top: 1px solid rgba(0,0,0,0.06); }
.v3-metric-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}
.v3-metric-label { font-size: 13px; color: var(--t-soft); font-weight: 500; }
.v3-metric-value {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--c-navy);
  letter-spacing: -0.005em;
  white-space: nowrap;
}
.v3-animal--earner .v3-metric-value.is-win { color: var(--c-earner); }
.v3-animal--burner .v3-metric-value.is-win { color: var(--c-burner); }
.v3-metric-bar {
  height: 4px;
  background: rgba(0,0,0,0.05);
  border-radius: 999px;
  overflow: hidden;
}
.v3-metric-bar-fill {
  height: 100%;
  border-radius: 999px;
  transition: width 700ms var(--ease);
}
.v3-animal--earner .v3-metric-bar-fill { background: var(--c-earner); }
.v3-animal--burner .v3-metric-bar-fill { background: var(--c-burner); }
.v3-rows { padding: 0; }
.v3-row {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  gap: 24px;
  align-items: center;
  padding: 14px 22px;
  border-top: 1px solid var(--c-rule);
}
.v3-row:first-child { border-top: 0; }
.v3-row-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-navy);
}
.v3-row-cell {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.v3-row-bar {
  position: relative;
  height: 8px;
  background: var(--c-paper);
  border-radius: 999px;
  overflow: hidden;
  flex: 1;
  min-width: 0;
}
.v3-row-bar-fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  border-radius: 999px;
  transition: width 700ms var(--ease);
}
.v3-row-bar--earner .v3-row-bar-fill { background: var(--c-earner); }
.v3-row-bar--burner .v3-row-bar-fill { background: var(--c-burner); }
.v3-row-val {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--t-soft);
  letter-spacing: -0.005em;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 8ch;
  text-align: left;
}
.v3-row-cell--earner .v3-row-val.is-win { color: var(--c-earner); }
.v3-row-cell--burner .v3-row-val.is-win { color: var(--c-burner); }

/* ---------- Payoff ---------- */
.v3-subhead {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 28px 0 20px;
}
.v3-subhead-num {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--c-navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}
.v3-decisions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.v3-decision {
  background: #fff;
  border: 1px solid var(--c-rule);
  border-radius: 10px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 240ms var(--ease), border-color 240ms var(--ease), box-shadow 240ms var(--ease);
}
.v3-decision:hover {
  transform: translateY(-2px);
  border-color: var(--c-blue);
  box-shadow: 0 8px 20px rgba(1, 43, 62, 0.06);
}
.v3-decision-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--c-rule);
}
.v3-decision-num {
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  font-size: 12px;
  color: var(--c-blue);
  letter-spacing: 0.1em;
}
.v3-decision-title {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--c-navy);
  letter-spacing: -0.01em;
}
.v3-decision-body {
  display: grid;
  grid-template-columns: 1fr 18px 1fr;
  gap: 12px;
  align-items: stretch;
}
.v3-decision-state { display: flex; flex-direction: column; gap: 6px; }
.v3-decision-label {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.v3-decision-state--before .v3-decision-label { color: var(--t-mute); }
.v3-decision-state--after .v3-decision-label { color: var(--c-blue); }
.v3-decision-text {
  font-size: 13px;
  line-height: 1.5;
  color: var(--t-soft);
}
.v3-decision-state--after .v3-decision-text {
  color: var(--c-navy);
  font-weight: 500;
}
.v3-decision-arrow {
  align-self: center;
  color: var(--c-blue);
  display: flex;
  justify-content: center;
}

/* ---------- Final callout ---------- */
.v3-callout {
  margin-top: 16px;
  background: var(--c-navy);
  color: #fff;
  border-radius: 12px;
  padding: 36px 36px;
  border-top: 3px solid var(--c-lime);
}
.v3-callout-h {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 14px;
  max-width: 32ch;
  color: #fff;
}
.v3-callout-accent { color: var(--c-lime); }
.v3-callout-p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
  margin: 0;
  max-width: 76ch;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .v3-section { padding: 40px 0; }
  .v3-container { padding: 0 20px; }
  .v3-hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .v3-cost-grid, .v3-sol-grid { grid-template-columns: 1fr; gap: 24px; }
  .v3-scenario-top { flex-direction: column; align-items: flex-start; }
  .v3-decisions { grid-template-columns: 1fr; }
  .v3-animals { grid-template-columns: 1fr; }
  .v3-row { grid-template-columns: 1fr; gap: 10px; padding: 14px 18px; }
  .v3-vs-head { grid-template-columns: 1fr; }
  .v3-vs-side--earner { border-right: 0; border-bottom: 1px solid var(--c-earner-line); }
  .v3-decision-body { grid-template-columns: 1fr; }
  .v3-decision-arrow { transform: rotate(90deg); }
  .v3-callout { padding: 28px 24px; }
}


/* Text below image v3-section v3-solution */
.v3-section.v3-solution .v3-sol-cows {
  flex-direction: column;
}
.v3-sol-cows {
  text-align: center;
}

.v3-sol-cows img {
  display: block;
  margin: 0 auto;
}

.v3-sol-caption {
  clear: both;
  width: 100%;
  margin-top: 10px;
  text-align: center;
}

.v3-sol-title {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.2;
  color: #0b2d42;
  margin: 0;
}

.v3-sol-subtitle {
  font-family: 'Roboto', sans-serif;
  font-style: italic;
  font-size: 21px;
  line-height: 1.3;
  color: #0b2d42;
  margin: 4px 0 0;
}
@media (min-width: 900px) {
  .v3-section.v3-solution .v3-body {
    margin-top: -75px;
  }
}
@media (max-width: 900px) {
  .v3-sol-title { font-size: 24px;line-height: 1; }
  .v3-sol-subtitle { font-size: 19px;line-height: 1.1; }
}


/* Select Your Operation section style */
.seg-section {
  background: #ffffff;
  padding: 104px 0;
  color: var(--clock-dark-blue);
  /* per-column accent set inline on each .seg-col via --seg-accent */
}
.seg-section .seg-wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Section title */
.seg-section .seg-intro {
  margin: 0 0 56px;
  text-align: center;
}
.seg-section .seg-heading {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 48px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #012b3e;
  margin: 0;
}

/* Two-column grid */
.seg-section .seg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.seg-section .seg-col {
  display: flex;
  flex-direction: column;
}

/* Column heading (above the image button) */
.seg-section .seg-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--clock-dark-blue);
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.seg-section .seg-title::before {
  content: "";
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  border-radius: 3px;
  background: #1C9AD6;
}
.seg-section .green-dot .seg-title::before {
  background: #31713A;
}

/* Value line under the heading */
.seg-section .seg-lead {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 19px;
  line-height: 1.4;
  color: var(--fg-on-light-soft);
  margin: -6px 0 24px;
  text-wrap: pretty;
}

/* The image IS the button */
.seg-section .seg-card {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 11;
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  background: var(--clock-paper);
  box-shadow: 0 2px 10px rgba(1,43,62,0.08);
  transition:
    transform var(--dur-base) var(--ease-standard),
    box-shadow var(--dur-base) var(--ease-standard);
  outline: none;
}
.seg-section .seg-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--dur-slow) var(--ease-emphasized);
}
/* readability scrim + corner affordance */
.seg-section .seg-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(1,24,36,0.42) 0%,
    rgba(1,24,36,0.10) 32%,
    rgba(1,24,36,0.00) 60%
  );
  transition: opacity var(--dur-base) var(--ease-standard);
  opacity: 0.85;
}

/* the "Learn More" pill */
.seg-section .seg-go {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 48px;
  padding: 0 14px 0 20px;
  border-radius: var(--radius-pill);
  background: #012b3e;
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  box-shadow: 0 6px 18px rgba(1,43,62,0.28);
  transition:
    transform var(--dur-base) var(--ease-emphasized),
    background var(--dur-base) var(--ease-standard);
}
.seg-section .green-dot .seg-go {
  background: #aecd40;
  color: #012b3e;
}
.seg-section .seg-go svg { width: 20px; height: 20px; display: block; }

/* hover / focus states */
.seg-section .seg-card:hover,
.seg-section .seg-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(1,43,62,0.20);
}
.seg-section .seg-card:hover img,
.seg-section .seg-card:focus-visible img {
  transform: scale(1.045);
}
.seg-section .seg-card:hover .seg-go,
.seg-section .seg-card:focus-visible .seg-go {
  transform: translateX(4px);
}
.seg-section .seg-card:focus-visible {
  box-shadow: 0 0 0 3px #fff, 0 0 0 6px var(--seg-accent), 0 18px 40px rgba(1,43,62,0.20);
}

/* Bullet list below the image button */
.seg-section .seg-list {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
}
.seg-section .seg-list li {
  position: relative;
  padding: 24px 0 24px 30px;
  border-top: 1px solid var(--rule-on-light);
}
.seg-section .seg-list li:last-child {
  border-bottom: 1px solid var(--rule-on-light);
}
.seg-section .seg-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 31px;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: #012b3e;
}
.seg-section .green-dot .seg-list li::before {
  background: #aecd40;
}
.seg-section .seg-list h4 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  color: var(--clock-dark-blue);
  margin: 0 0 7px;
  letter-spacing: -0.005em;
}
.seg-section .seg-list p {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 15.5px;
  line-height: 1.62;
  color: var(--fg-on-light-soft);
  margin: 0;
  text-wrap: pretty;
}

  /* ---- Responsive ---- */
@media (max-width: 1024px) {
  .seg-section { padding: 80px 0; }
  .seg-section .seg-grid { gap: 48px; }
  .seg-section .seg-title { font-size: 34px; }
}
@media (max-width: 760px) {
  .seg-section { padding: 60px 0; }
  .seg-section .seg-wrap { padding: 0 22px; }
  .seg-section .seg-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .seg-section .seg-card { aspect-ratio: 16 / 10; }
  .seg-section .seg-title { font-size: 30px; }
  .seg-section .seg-list { margin-top: 28px; }
}

/* 4 Measured With C-Lock */
.rv-section {
  background: #ffffff;
  padding: 104px 0;
  color: var(--clock-dark-blue);
}
.rv-section .rv-wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ---- Header ---- */
.rv-section .rv-head {
  max-width: 1020px;
  margin: 0 0 64px;
}
.rv-section .rv-eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-primary);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
}
.rv-section .rv-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--accent-primary);
}
.rv-section .rv-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 50px;
  line-height: 1.06;
  letter-spacing: -0.018em;
  color: var(--clock-dark-blue);
  margin: 0 0 26px;
  text-wrap: balance;
}
.rv-section .rv-title em {
  font-style: normal;
  color: var(--accent-primary);
}
.rv-section .rv-desc {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 19px;
  line-height: 1.6;
  color: var(--fg-on-light-soft);
  margin: 0;
  max-width: 90ch;
  text-wrap: pretty;
}
.rv-section .rv-desc b {
  font-weight: 600;
  color: var(--clock-dark-blue);
}

/* ---- 4-up grid of decision squares ---- */
.rv-section .rv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.rv-section .rv-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--rule-on-light);
  border-radius: 16px;
  padding: 30px 28px 30px;
  overflow: hidden;
  transition:
    transform var(--dur-base) var(--ease-standard),
    box-shadow var(--dur-base) var(--ease-standard),
    border-color var(--dur-base) var(--ease-standard);
}
/* top accent bar, color set per-card via --rv-accent */
.rv-section .rv-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
}
.rv-section .rv-card.rv-clock-blue::before {
  background: #1C9AD6;
}
.rv-section .rv-card.rv-clock-dark-green::before {
  background: #31713A;
}
.rv-section .rv-card.rv-clock-dark-blue::before {
  background: #012B3E;
}
.rv-section .rv-card.rv-clock-green::before {
  background: #8FB327;
}
.rv-section .rv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(1,43,62,0.13);
  border-color: transparent;
}

.rv-section .rv-verb {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--clock-dark-blue);
  margin: 6px 0 18px;
  display: flex;
  align-items: center;
  gap: 13px;
}
.rv-section .rv-verb::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--rule-on-light);
}
.rv-section .rv-card p {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--fg-on-light-soft);
  margin: 0;
  text-wrap: pretty;
}
/* ---- Responsive ---- */
@media (max-width: 1100px) {
  .rv-section .rv-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
  .rv-section { padding: 80px 0; }
  .rv-section .rv-title { font-size: 40px; }
}
@media (max-width: 600px) {
  .rv-section { padding: 60px 0; }
  .rv-section .rv-wrap { padding: 0 22px; }
  .rv-section .rv-grid { grid-template-columns: 1fr; }
  .rv-section .rv-title { font-size: 32px; }
  .rv-section .rv-desc { font-size: 17px; }
}