:root {
  --ink: #111827;
  --navy: #121a2b;
  --navy-2: #1a2740;
  --steel: #4f5f74;
  --muted: #738095;
  --paper: #f6f3ec;
  --surface: #ffffff;
  --surface-soft: #fbfaf7;
  --line: #e5dfd4;
  --gold: #c8943a;
  --gold-2: #e5c37a;
  --gold-soft: #f1e0bd;
  --success: #2d7d67;
  --shadow: 0 24px 70px rgba(17, 24, 39, 0.1);
  --shadow-soft: 0 16px 45px rgba(17, 24, 39, 0.07);
  --radius: 8px;
  --max: 1160px;
  --section: clamp(72px, 9vw, 112px);
}

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

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  min-width: 320px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(246, 243, 236, 0.96), rgba(246, 243, 236, 1)),
    radial-gradient(circle at 12% 0%, rgba(200, 148, 58, 0.1), transparent 30%);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

section {
  position: relative;
  padding: var(--section) 24px;
}

.container,
.vision-container,
.finance-container,
.services-container,
.lean-container,
.diagnostic-container,
.rfe-premium-container,
.support-container,
.digital-container,
.identity-container,
.contact-container {
  width: min(var(--max), 100%);
  margin-inline: auto;
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  max-width: 820px;
  margin: 0 auto 20px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 800;
  text-align: center;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.08rem;
  font-weight: 760;
}

p {
  color: var(--steel);
}

/* Header */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  background: rgba(246, 243, 236, 0.88);
  box-shadow: 0 12px 36px rgba(17, 24, 39, 0.04);
  backdrop-filter: blur(18px);
}

.top-nav {
  width: min(1260px, 100%);
  min-height: 82px;
  margin-inline: auto;
  padding: 14px 24px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
}

.logo-card {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.18s ease;
}

.logo-card:hover {
  transform: translateY(-1px);
}

.logo-af {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--surface);
  background:
    linear-gradient(135deg, var(--navy), #22324f);
  border: 1px solid rgba(200, 148, 58, 0.45);
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 850;
  line-height: 1;
  box-shadow: 0 14px 28px rgba(18, 26, 43, 0.18);
}

.logo-name {
  display: flex;
  flex-direction: column;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.05;
}

.nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  list-style: none;
}

.nav-menu a,
.nav-contact {
  color: var(--steel);
  font-size: 0.92rem;
  font-weight: 700;
  transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.nav-menu a {
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.18s ease;
}

.nav-menu a:hover,
.nav-contact:hover {
  color: var(--ink);
}

.nav-menu a:hover::after {
  transform: scaleX(1);
}

.nav-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 999px;
}

.nav-contact:hover {
  border-color: rgba(200, 148, 58, 0.45);
  background: var(--surface);
}

.search-icon {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(200, 148, 58, 0.16);
}

/* Hero */

.hero {
  min-height: 720px;
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  color: var(--surface);
  background:
    linear-gradient(112deg, rgba(18, 26, 43, 0.98) 0%, rgba(18, 26, 43, 0.94) 48%, rgba(32, 45, 70, 0.86) 100%),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1800&q=75");
  background-position: center;
  background-size: cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(241, 224, 189, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(241, 224, 189, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 86%, transparent);
}

.hero::after {
  content: "";
  position: absolute;
  right: clamp(24px, 8vw, 130px);
  top: 50%;
  z-index: -1;
  width: min(34vw, 420px);
  aspect-ratio: 1;
  border: 1px solid rgba(241, 224, 189, 0.24);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(200, 148, 58, 0.2) 0 2px, transparent 3px),
    conic-gradient(from 180deg, transparent 0 18%, rgba(200, 148, 58, 0.35) 18% 19%, transparent 19% 42%, rgba(241, 224, 189, 0.24) 42% 43%, transparent 43% 100%);
  transform: translateY(-50%);
  opacity: 0.84;
}

.vision-container {
  display: grid;
  grid-template-columns: minmax(0, 0.66fr) minmax(260px, 0.34fr);
  align-items: center;
  gap: 48px;
}

.vision-container::after {
  content: "P2P\A O2C\A R2R\A RFE";
  white-space: pre;
  justify-self: end;
  width: min(100%, 330px);
  padding: 30px;
  color: rgba(241, 224, 189, 0.82);
  border: 1px solid rgba(241, 224, 189, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    linear-gradient(90deg, rgba(200, 148, 58, 0.16) 1px, transparent 1px);
  background-size: auto, 42px 42px;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.24);
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  font-weight: 850;
  line-height: 1.65;
  letter-spacing: 0.08em;
}

.vision-title,
.vision-text,
.vision-highlight {
  grid-column: 1;
}

.vision-title {
  max-width: 820px;
  margin-bottom: 28px;
  color: var(--surface);
  font-size: clamp(2.6rem, 5.8vw, 5.2rem);
  font-weight: 850;
  letter-spacing: 0;
  text-align: left;
  text-wrap: balance;
}

.vision-text {
  max-width: 700px;
  color: #dce4ef;
  font-size: clamp(1.06rem, 1.5vw, 1.26rem);
}

.vision-text strong {
  color: var(--surface);
}

.vision-highlight {
  width: fit-content;
  max-width: 720px;
  margin-top: 28px;
  padding: 18px 22px;
  color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(241, 224, 189, 0.18);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  font-size: clamp(1.08rem, 1.6vw, 1.34rem);
  font-weight: 760;
}

/* Shared layout */

.finance-section,
.services-section,
.assessment-section,
#digitalisation,
#valeurs {
  background: var(--paper);
}

.finance-tagline,
.digital-eyebrow,
.contact-eyebrow,
.rfe-badge,
.diagnostic-badge {
  display: table;
  margin: 0 auto 16px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.finance-text,
.finance-mission,
.finance-intro,
.process-intro,
.diagnostic-intro,
.rfe-description,
.support-description,
.support-objective,
.digital-intro,
.values-intro,
.contact-intro {
  max-width: 780px;
  margin: 0 auto;
  color: var(--steel);
  text-align: center;
  font-size: 1.05rem;
}

.finance-mission,
.support-objective {
  margin-top: 22px;
  font-weight: 750;
}

.finance-section:first-of-type {
  margin-top: -46px;
  padding-top: 72px;
}

.finance-section:first-of-type .finance-container {
  padding: clamp(28px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(229, 223, 212, 0.95);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.finance-section:first-of-type .finance-title {
  font-size: clamp(1.75rem, 3vw, 2.55rem);
}

.finance-grid,
.services-grid,
.process-grid,
.diagnostic-grid,
.pillars-grid,
.rfe-premium-grid,
.support-grid,
.digital-grid,
.identity-grid,
.values-grid,
.contact-grid {
  display: grid;
  gap: 22px;
  margin-top: 44px;
}

.finance-grid,
.process-grid,
.digital-grid,
.support-grid,
.identity-grid,
.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.services-grid,
.diagnostic-grid,
.values-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pillars-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.rfe-premium-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.finance-card,
.services-grid article,
.card,
.process-card,
.diagnostic-card,
.pillar-card,
.rfe-premium-card,
.support-card,
.digital-card,
.identity-card,
.value-card,
.values-card,
.contact-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: none;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.finance-card:hover,
.services-grid article:hover,
.card:hover,
.process-card:hover,
.diagnostic-card:hover,
.pillar-card:hover,
.rfe-premium-card:hover,
.support-card:hover,
.digital-card:hover,
.identity-card:hover,
.value-card:hover,
.values-card:hover,
.contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 148, 58, 0.42);
  box-shadow: var(--shadow-soft);
  background: var(--surface);
}

.finance-card::before,
.services-grid article::before,
.process-card::before,
.diagnostic-card::before,
.pillar-card::before,
.digital-card::before,
.value-card::before {
  content: "";
  display: block;
  width: 44px;
  height: 2px;
  margin-bottom: 20px;
  background: var(--gold);
}

.finance-card::after,
.services-grid article::after,
.process-card::after,
.diagnostic-card::after,
.pillar-card::after,
.digital-card::after,
.value-card::after {
  content: "";
  position: absolute;
  top: -56px;
  right: -56px;
  width: 136px;
  height: 136px;
  border: 1px solid rgba(200, 148, 58, 0.11);
  border-radius: 50%;
}

.finance-card h3,
.services-grid h3,
.process-card h3,
.diagnostic-card h3,
.pillar-card h4,
.rfe-premium-card h3,
.support-card h3,
.digital-card h3,
.value-card h3,
.values-card h3,
.contact-card h3 {
  color: var(--ink);
}

.finance-card p,
.services-grid article p,
.process-card p,
.diagnostic-card p,
.pillar-card p,
.digital-card p,
.value-card p {
  font-size: 0.96rem;
}

.services-grid a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 850;
}

.services-grid a::after {
  content: "";
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: width 0.18s ease;
}

.services-grid a:hover::after {
  width: 28px;
}

/* Lean and process */

.lean-section,
#lean {
  background: var(--surface-soft);
}

.lean-method {
  padding: 0;
  background: transparent;
}

.lean-method .intro,
.lean-method .subtitle {
  max-width: 760px;
  margin: 0 auto 16px;
  text-align: center;
}

.lean-method .subtitle {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.lean-method .grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 44px;
}

.lean-method .card {
  min-height: 215px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78));
}

.lean-method .icon,
.process-icon,
.card-icon,
.maturity-icon,
.pillar-icon,
.rfe-icon,
.support-icon,
.digital-icon,
.value-icon,
.contact-icon {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  color: var(--gold);
  background: rgba(200, 148, 58, 0.1);
  border: 1px solid rgba(200, 148, 58, 0.18);
  border-radius: 999px;
  font-size: 1.12rem;
  line-height: 1;
}

.lean-method .icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.process-objective {
  max-width: 880px;
  margin: 52px auto 26px;
  padding: 28px 32px;
  background:
    linear-gradient(135deg, var(--navy), var(--navy-2));
  border: 1px solid rgba(241, 224, 189, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.process-objective p {
  color: #eef3f8;
}

.objective-line {
  width: 52px;
  height: 2px;
  margin: 0 auto 16px;
  background: var(--gold);
}

.benefits-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 32px 0 18px;
}

.benefits-bar span {
  padding: 8px 14px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 760;
}

/* Diagnostic */

.maturity-box {
  margin-top: 36px;
  padding: 26px;
  background:
    linear-gradient(135deg, var(--navy), #1d2b46);
  border: 1px solid rgba(241, 224, 189, 0.14);
  border-radius: var(--radius);
}

.maturity-items {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.maturity-item {
  padding: 22px 16px;
  border: 1px solid rgba(241, 224, 189, 0.18);
  border-radius: var(--radius);
  text-align: center;
}

.maturity-item h3 {
  margin: 0;
  color: var(--surface);
  font-size: 0.94rem;
}

.diagnostic-conclusion {
  max-width: 880px;
  margin: 44px auto;
  padding: 26px 32px;
  background: var(--surface);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow-soft);
}

.pillars-title {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 56px 0 28px;
}

.pillars-title span {
  flex: 1;
  height: 1px;
  background: var(--line);
}

.pillars-title h3 {
  margin: 0;
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

/* Dark sections */

#rfe,
#support,
#identite,
#contact {
  overflow: hidden;
  color: var(--surface);
  background:
    radial-gradient(circle at 10% 0%, rgba(200, 148, 58, 0.14), transparent 30%),
    linear-gradient(135deg, var(--navy), #17233a 64%, #101827);
}

#rfe::before,
#support::before,
#identite::before,
#contact::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(241, 224, 189, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(241, 224, 189, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.75;
}

#rfe > *,
#support > *,
#identite > *,
#contact > * {
  position: relative;
  z-index: 1;
}

#rfe h2,
#support h2,
#identite h2,
#contact h2,
#rfe h3,
#support h3,
#identite h3,
#contact h3 {
  color: var(--surface);
}

#rfe p,
#support p,
#identite p,
#contact p {
  color: #ccd6e4;
}

.rfe-premium-card,
.support-card,
.identity-card,
.contact-card {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(241, 224, 189, 0.16);
  backdrop-filter: blur(10px);
}

.rfe-premium-card {
  min-height: 230px;
}

.rfe-number {
  color: rgba(241, 224, 189, 0.28);
  font-size: 2.1rem;
  font-weight: 850;
  line-height: 1;
}

.rfe-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.support-card {
  border-top: 2px solid rgba(200, 148, 58, 0.75);
}

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

/* Identity */

.identity-grid {
  gap: 28px;
}

.identity-card {
  min-height: 260px;
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: 24px;
}

.identity-photo {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border: 1px solid rgba(241, 224, 189, 0.5);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  filter: saturate(0.96) contrast(1.04);
}

.identity-card h3,
.identity-card .role,
.identity-card .info {
  grid-column: 2;
}

.identity-card .role {
  margin-top: -8px;
  color: var(--gold-soft);
  font-weight: 800;
}

/* Values and contact */

#valeurs {
  background: var(--surface-soft);
}

.values-grid {
  max-width: 960px;
  margin-inline: auto;
}

.value-card {
  text-align: left;
}

.contact-card {
  min-height: 138px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.contact-card a {
  display: block;
  color: var(--gold-soft);
  font-weight: 760;
  overflow-wrap: anywhere;
  transition: color 0.18s ease;
}

.contact-card a:hover {
  color: var(--surface);
}

.footer {
  padding: 30px 24px;
  color: #ccd6e4;
  background: #0c1220;
  border-top: 1px solid rgba(241, 224, 189, 0.1);
  text-align: center;
  font-size: 0.9rem;
}

.footer p {
  color: #ccd6e4;
}

/* Responsive */

@media (max-width: 1050px) {
  .top-nav {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 16px;
  }

  .nav-menu {
    flex-wrap: wrap;
  }

  .hero::after {
    opacity: 0.28;
  }

  .vision-container {
    grid-template-columns: 1fr;
  }

  .vision-container::after {
    justify-self: start;
    width: 100%;
    max-width: 520px;
    padding: 22px;
    font-size: 1.25rem;
    line-height: 1.4;
  }

  .pillars-grid,
  .maturity-items,
  .rfe-premium-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  section {
    padding: 72px 18px;
  }

  .header {
    position: static;
  }

  .top-nav {
    min-height: auto;
    padding: 16px 18px;
    justify-items: start;
  }

  .logo-card {
    width: 100%;
  }

  .nav-menu {
    width: 100%;
    justify-content: flex-start;
    gap: 10px;
  }

  .nav-menu a,
  .nav-contact {
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 0.82rem;
  }

  .nav-menu a::after {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 86px;
    padding-bottom: 86px;
  }

  .hero::after {
    display: none;
  }

  .vision-container::after {
    content: "P2P  /  O2C  /  R2R  /  RFE";
    font-size: 0.88rem;
    letter-spacing: 0.06em;
  }

  .finance-section:first-of-type {
    margin-top: 0;
  }

  .finance-section:first-of-type .finance-container {
    padding: 28px 22px;
  }

  .finance-grid,
  .services-grid,
  .process-grid,
  .diagnostic-grid,
  .pillars-grid,
  .rfe-premium-grid,
  .support-grid,
  .digital-grid,
  .identity-grid,
  .values-grid,
  .contact-grid,
  .lean-method .grid,
  .maturity-items {
    grid-template-columns: 1fr;
  }

  .identity-card {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .identity-card h3,
  .identity-card .role,
  .identity-card .info {
    grid-column: auto;
  }

  .identity-photo {
    width: 118px;
    height: 118px;
  }

  .finance-card,
  .services-grid article,
  .card,
  .process-card,
  .diagnostic-card,
  .pillar-card,
  .rfe-premium-card,
  .support-card,
  .digital-card,
  .identity-card,
  .value-card,
  .contact-card {
    padding: 22px;
  }
}

@media (max-width: 520px) {
  h2 {
    font-size: 2rem;
  }

  .vision-title {
    font-size: 2.42rem;
  }

  .vision-text,
  .finance-text,
  .finance-mission,
  .finance-intro,
  .process-intro,
  .diagnostic-intro,
  .rfe-description,
  .support-description,
  .support-objective,
  .digital-intro,
  .values-intro,
  .contact-intro {
    font-size: 0.98rem;
  }

  .contact-card {
    flex-direction: column;
  }
}

<style>
.case-section {
  background:
    linear-gradient(180deg, rgba(251, 250, 247, 1), rgba(246, 243, 236, 1));
}

.case-container {
  width: min(var(--max), 100%);
  margin-inline: auto;
}

.case-heading {
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
}

.case-eyebrow {
  display: table;
  margin: 0 auto 16px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.case-heading p {
  max-width: 780px;
  margin: 0 auto;
  color: var(--steel);
  font-size: 1.05rem;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 48px;
}

.case-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 30px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: none;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.case-card::after {
  content: "";
  position: absolute;
  top: -72px;
  right: -72px;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(200, 148, 58, 0.12);
  border-radius: 50%;
}

.case-card:hover {
  transform: translateY(-3px);
  background: var(--surface);
  border-color: rgba(200, 148, 58, 0.42);
  box-shadow: var(--shadow-soft);
}

.case-topline {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 24px;
}

.case-sector {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 11px;
  color: var(--gold);
  background: rgba(200, 148, 58, 0.1);
  border: 1px solid rgba(200, 148, 58, 0.16);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.case-number {
  color: rgba(200, 148, 58, 0.28);
  font-size: 2.1rem;
  font-weight: 850;
  line-height: 1;
}

.case-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
  color: var(--ink);
  font-size: 1.34rem;
  line-height: 1.16;
}

.case-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 20px;
}

.case-content h4 {
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-content p {
  color: var(--steel);
  font-size: 0.94rem;
}

.case-results {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 9px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.case-results span {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 760;
}

.case-results span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(200, 148, 58, 0.1);
}

.case-proof-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
  padding: 26px 30px;
  background:
    linear-gradient(135deg, var(--navy), var(--navy-2));
  border: 1px solid rgba(241, 224, 189, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.case-proof-band div {
  display: grid;
  gap: 4px;
}

.case-proof-band strong {
  color: var(--surface);
  font-size: 1.05rem;
}

.case-proof-band span {
  color: #ccd6e4;
}

.case-proof-band a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  color: var(--navy);
  background: var(--gold-soft);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 850;
  transition: transform 0.18s ease, background 0.18s ease;
}

.case-proof-band a:hover {
  background: #f7e7c2;
  transform: translateY(-2px);
}

@media (max-width: 1050px) {
  .case-grid {
    grid-template-columns: 1fr;
  }

  .case-card {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .case-proof-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .case-proof-band a {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .case-card {
    padding: 24px 22px;
  }

  .case-topline {
    flex-direction: column;
    gap: 12px;
  }

  .case-number {
    font-size: 1.7rem;
  }
}
</style>

.method-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 0%, rgba(200, 148, 58, 0.09), transparent 30%),
    linear-gradient(180deg, var(--paper), var(--surface-soft));
}

.method-container {
  width: min(var(--max), 100%);
  margin-inline: auto;
}

.method-heading {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.method-eyebrow {
  display: table;
  margin: 0 auto 16px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.method-heading p {
  max-width: 780px;
  margin: 0 auto;
  color: var(--steel);
  font-size: 1.05rem;
}

.method-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 50px;
}

.method-timeline::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 31px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 148, 58, 0.42), transparent);
}

.method-step {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
}

.method-index {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-inline: auto;
  color: var(--navy);
  background: var(--gold-soft);
  border: 1px solid rgba(200, 148, 58, 0.32);
  border-radius: 999px;
  box-shadow: 0 16px 36px rgba(17, 24, 39, 0.12);
  font-size: 0.9rem;
  font-weight: 850;
}

.method-content {
  min-height: 100%;
  padding: 26px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.method-content:hover {
  transform: translateY(-3px);
  background: var(--surface);
  border-color: rgba(200, 148, 58, 0.42);
  box-shadow: var(--shadow-soft);
}

.method-content h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 1.16rem;
}

.method-content p {
  color: var(--steel);
  font-size: 0.95rem;
}

.method-content ul {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding: 0;
  list-style: none;
}

.method-content li {
  position: relative;
  padding-left: 20px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 720;
}

.method-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(200, 148, 58, 0.1);
}

.method-deliverables {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
  padding: 28px 30px;
  color: var(--surface);
  background:
    linear-gradient(135deg, var(--navy), var(--navy-2));
  border: 1px solid rgba(241, 224, 189, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.method-deliverables div {
  display: grid;
  gap: 6px;
}

.method-deliverables span {
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.method-deliverables strong {
  max-width: 780px;
  color: var(--surface);
  font-size: 1rem;
  line-height: 1.45;
}

.method-deliverables a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  color: var(--navy);
  background: var(--gold-soft);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 850;
  transition: transform 0.18s ease, background 0.18s ease;
}

.method-deliverables a:hover {
  background: #f7e7c2;
  transform: translateY(-2px);
}

@media (max-width: 1100px) {
  .method-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .method-timeline::before {
    display: none;
  }
}

@media (max-width: 720px) {
  .method-timeline {
    grid-template-columns: 1fr;
  }

  .method-index {
    margin-inline: 0;
  }

  .method-deliverables {
    align-items: flex-start;
    flex-direction: column;
  }

  .method-deliverables a {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .method-content {
    padding: 24px 22px;
  }

  .method-deliverables {
    padding: 24px 22px;
  }
}
