:root {
  --bg: #fff7eb;
  --bg-alt: #fff1db;
  --surface: #ffffff;
  --surface-soft: #fff8ef;
  --ink: #1d3442;
  --muted: #5f7482;
  --line: #dce9ef;
  --brand: #ff9b52;
  --brand-strong: #ff7e45;
  --brand-soft: #ffe3c7;
  --accent: #1db4a7;
  --accent-soft: #def6f3;
  --danger-soft: #ffd6cb;
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 14px;
  --shadow-lg: 0 30px 80px rgba(255, 140, 74, 0.15);
  --shadow-md: 0 14px 36px rgba(27, 62, 81, 0.09);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 88% -2%, rgba(255, 154, 82, 0.24), transparent 20rem),
    radial-gradient(circle at 8% 16%, rgba(29, 180, 167, 0.17), transparent 17rem),
    linear-gradient(180deg, var(--bg-alt), var(--bg));
  min-height: 100vh;
  overflow-x: hidden;
}

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

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3,
.brand-name {
  font-family: "Sora", "Trebuchet MS", sans-serif;
  letter-spacing: -0.02em;
}

p {
  color: var(--muted);
  line-height: 1.68;
}

.sun-shape {
  position: fixed;
  z-index: -2;
  border-radius: 999px;
  filter: blur(1px);
  pointer-events: none;
}

.sun-shape-a {
  top: -7rem;
  right: -7rem;
  width: 22rem;
  height: 22rem;
  background: radial-gradient(circle, rgba(255, 166, 88, 0.38), transparent 70%);
}

.sun-shape-b {
  top: 34vh;
  left: -6rem;
  width: 16rem;
  height: 16rem;
  background: radial-gradient(circle, rgba(29, 180, 167, 0.22), transparent 72%);
}

.sun-shape-c {
  right: 24vw;
  bottom: -11rem;
  width: 20rem;
  height: 20rem;
  background: radial-gradient(circle, rgba(255, 126, 69, 0.2), transparent 72%);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 249, 238, 0.78);
  backdrop-filter: blur(16px);
}

.site-header.scrolled {
  box-shadow: 0 8px 24px rgba(30, 71, 94, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 51px;
  height: 51px;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: auto;
  transform: none;
}

.brand-name {
  display: grid;
  gap: 2px;
  color: var(--ink);
  font-size: 21px;
  font-weight: 800;
  line-height: 0.95;
}

.brand-name small {
  font-family: "Manrope", "Avenir Next", sans-serif;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--ink);
  transition: transform 220ms ease;
}

.nav-toggle span + span {
  margin-top: 6px;
}

.nav-links {
  display: inline-flex;
  justify-self: center;
  gap: clamp(14px, 2.2vw, 28px);
  align-items: center;
}

.nav-links a {
  color: rgba(34, 57, 70, 0.86);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--brand-strong);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(34, 57, 70, 0.86);
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease;
}

.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.is-active,
.nav-dropdown.is-open .nav-dropdown-toggle {
  color: var(--brand-strong);
}

.nav-dropdown-chevron {
  width: 14px;
  height: 14px;
  transition: transform 180ms ease;
}

.nav-dropdown.is-open .nav-dropdown-chevron {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  padding: 10px 8px 8px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 36px rgba(26, 57, 75, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 150ms ease,
    visibility 150ms ease;
  z-index: 50;
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}

.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: none;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.is-active {
  background: rgba(255, 155, 82, 0.14);
  color: #a94f2d;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.header-cta {
  padding: 0 20px;
  border: 1px solid transparent;
  background: linear-gradient(120deg, var(--brand), var(--brand-strong));
  color: #fff;
  box-shadow: 0 14px 28px rgba(255, 126, 69, 0.22);
}

main {
  padding-top: 82px;
}

.section {
  padding: clamp(52px, 7vw, 90px) clamp(18px, 4vw, 64px);
}

.section-tone-sun {
  background: linear-gradient(180deg, rgba(255, 246, 230, 0.58), rgba(255, 251, 242, 0.5));
}

.section-tone-sky {
  background: linear-gradient(180deg, rgba(247, 251, 253, 0.56), rgba(255, 250, 244, 0.48));
}

.section-tone-mint {
  background: linear-gradient(180deg, rgba(245, 251, 247, 0.56), rgba(255, 250, 244, 0.48));
}

#solutions.section {
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 162, 95, 0.12), transparent 18rem),
    linear-gradient(180deg, #1f3648, #1a3041);
}

#solutions .section-head h2 {
  color: #eff6fb;
  letter-spacing: -0.03em;
}

#solutions .section-head > p:not(.eyebrow) {
  color: rgba(228, 240, 249, 0.82);
}

#solutions .eyebrow {
  background: rgba(255, 168, 108, 0.14);
  color: #ffe2c9;
  border: 1px solid rgba(255, 175, 118, 0.3);
}

#solutions .cockpit-intro {
  margin: 16px auto 0;
  max-width: 62ch;
  color: rgba(228, 240, 249, 0.82);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.65;
}

#solutions .cockpit-system {
  position: relative;
  display: grid;
  grid-template-columns: 1fr minmax(260px, 340px) 1fr;
  grid-template-rows: auto auto auto;
  gap: clamp(14px, 2vw, 22px);
  width: min(980px, 100%);
  margin: clamp(40px, 5vw, 56px) auto 0;
  align-items: stretch;
}

#solutions .cockpit-connectors {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

#solutions .cockpit-connectors line {
  stroke: rgba(255, 168, 108, 0.22);
  stroke-width: 1.2;
  stroke-dasharray: 4 4;
}

#solutions .cockpit-hub,
#solutions .cockpit-lever {
  position: relative;
  z-index: 1;
}

#solutions .cockpit-hub {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: clamp(28px, 3.5vw, 40px) clamp(24px, 3vw, 36px);
  border-radius: 28px;
  border: 1px solid rgba(255, 170, 98, 0.86);
  background: linear-gradient(165deg, #fff4e8, #ffd9b5);
  color: #233b4d;
  box-shadow: 0 22px 40px rgba(6, 15, 24, 0.28);
}

#solutions .cockpit-hub-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(39, 74, 97, 0.5);
  background: linear-gradient(150deg, #2a536e, #21445c);
  display: grid;
  place-items: center;
  color: #ffe5cc;
}

#solutions .cockpit-hub-icon svg {
  width: 26px;
  height: 26px;
  stroke: #ffe5cc;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#solutions .cockpit-hub h3 {
  margin: 0;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.12;
  color: #233b4d;
}

#solutions .cockpit-hub p {
  margin: 0;
  color: #355469;
  font-size: clamp(14px, 1.2vw, 15px);
  line-height: 1.55;
  max-width: 28ch;
}

#solutions .cockpit-lever {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: clamp(18px, 2.2vw, 24px);
  border-radius: 22px;
  border: 1px solid rgba(255, 196, 143, 0.35);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

#solutions .cockpit-lever:focus-visible {
  outline: 2px solid rgba(255, 191, 138, 0.85);
  outline-offset: 3px;
}

#solutions .cockpit-lever:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 191, 138, 0.65);
  box-shadow: 0 12px 28px rgba(6, 15, 24, 0.2);
}

#solutions .cockpit-lever--attract {
  grid-column: 2;
  grid-row: 1;
  text-align: center;
  align-items: center;
}

#solutions .cockpit-lever--structure {
  grid-column: 3;
  grid-row: 2;
}

#solutions .cockpit-lever--automate {
  grid-column: 2;
  grid-row: 3;
  text-align: center;
  align-items: center;
}

#solutions .cockpit-lever--accelerate {
  grid-column: 1;
  grid-row: 2;
}

#solutions .cockpit-lever-num {
  display: none;
  font-family: "Sora", "Trebuchet MS", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(255, 196, 143, 0.7);
}

#solutions .cockpit-lever-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  border: 1px solid rgba(255, 175, 118, 0.35);
  background: rgba(255, 168, 108, 0.12);
  display: grid;
  place-items: center;
}

#solutions .cockpit-lever-icon svg {
  width: 20px;
  height: 20px;
  stroke: #ffc48a;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#solutions .cockpit-lever h3 {
  margin: 0;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.15;
  color: #eff6fb;
}

#solutions .cockpit-lever:hover h3 {
  color: #ffe2c9;
}

#solutions .cockpit-lever p {
  margin: 0;
  color: rgba(228, 240, 249, 0.78);
  font-size: 13px;
  line-height: 1.5;
}

#solutions .cockpit-tag {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 175, 118, 0.35);
  background: rgba(255, 168, 108, 0.1);
  color: #ffe2c9;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  width: fit-content;
  text-decoration: none;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

#solutions a.cockpit-tag:hover,
#solutions .cockpit-lever:hover .cockpit-tag {
  border-color: rgba(255, 191, 138, 0.65);
  background: rgba(255, 168, 108, 0.2);
  color: #fff4e8;
}

#solutions .cockpit-closing {
  margin: clamp(40px, 5vw, 56px) auto 0;
  max-width: 52rem;
  text-align: center;
}

#solutions .cockpit-message {
  margin: 0;
  font-family: "Sora", "Trebuchet MS", sans-serif;
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: #eff6fb;
}

#solutions .cockpit-submessage {
  margin: 14px 0 0;
  color: rgba(228, 240, 249, 0.72);
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.6;
}

#solutions .cockpit-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

#solutions .cockpit-btn-secondary {
  border-color: rgba(255, 196, 143, 0.45);
  background: rgba(255, 255, 255, 0.08);
  color: #ffe2c9;
}

#solutions .cockpit-btn-secondary:hover {
  border-color: rgba(255, 196, 143, 0.7);
  background: rgba(255, 255, 255, 0.14);
  color: #fff4e8;
}

@media (max-width: 1023px) {
  #solutions .cockpit-connectors {
    display: none;
  }

  #solutions .cockpit-system {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
    width: min(720px, 100%);
  }

  #solutions .cockpit-hub {
    grid-column: 1 / -1;
    grid-row: auto;
    order: -1;
  }

  #solutions .cockpit-lever--attract,
  #solutions .cockpit-lever--structure,
  #solutions .cockpit-lever--automate,
  #solutions .cockpit-lever--accelerate {
    grid-column: auto;
    grid-row: auto;
    text-align: left;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  #solutions .cockpit-system {
    grid-template-columns: 1fr;
    gap: 0;
    padding-left: 28px;
    position: relative;
  }

  #solutions .cockpit-system::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 24px;
    bottom: 24px;
    width: 2px;
    background: linear-gradient(
      180deg,
      rgba(255, 168, 108, 0.45),
      rgba(255, 168, 108, 0.12)
    );
    border-radius: 999px;
  }

  #solutions .cockpit-hub {
    margin-bottom: 20px;
    align-items: flex-start;
    text-align: left;
  }

  #solutions .cockpit-hub p {
    max-width: none;
  }

  #solutions .cockpit-lever {
    margin-bottom: 14px;
    position: relative;
  }

  #solutions .cockpit-lever-num {
    position: absolute;
    left: -28px;
    top: 22px;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    border: 2px solid rgba(255, 168, 108, 0.5);
    background: #1f3648;
    display: grid;
    place-items: center;
    font-size: 9px;
    color: #ffc48a;
    z-index: 2;
  }

  #solutions .cockpit-actions {
    flex-direction: column;
    align-items: stretch;
  }

  #solutions .cockpit-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

#constat.section {
  padding-top: clamp(32px, 4vw, 52px);
  padding-bottom: clamp(40px, 5.5vw, 64px);
}

#constat .section-head {
  max-width: 980px;
  margin: 0 auto;
}

#constat .section-head h2 {
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}

#constat .section-head > p:not(.eyebrow) {
  max-width: 48ch;
  margin-left: auto;
  margin-right: auto;
}

#constat .cards {
  width: min(1140px, 100%);
  margin: 40px auto 0;
  gap: 16px;
}

#constat .card-icon {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 14px;
  border: 1px solid rgba(255, 155, 82, 0.34);
  background: rgba(255, 155, 82, 0.12);
  margin-bottom: 12px;
}

#constat .card-icon svg {
  width: 36px;
  height: 36px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(380px, 1.15fr);
  gap: clamp(20px, 3.2vw, 48px);
  align-items: center;
  padding-top: clamp(10px, 1.5vw, 20px);
  padding-bottom: clamp(36px, 4.5vw, 56px);
}

.hero.hero-wide {
  grid-template-columns: minmax(0, 1.2fr) minmax(380px, 1.05fr);
  gap: clamp(32px, 5vw, 72px);
  width: 100%;
  max-width: none;
  margin: 0;
  padding-top: clamp(16px, 2vw, 28px);
  padding-bottom: clamp(48px, 6vw, 80px);
}

.hero.hero-wide .hero-copy {
  max-width: none;
}

.hero.hero-wide h1 {
  max-width: none;
  font-size: clamp(38px, 4.8vw, 72px);
}

.hero.hero-wide .hero-text {
  max-width: 52ch;
  font-size: clamp(15px, 1.35vw, 18px);
}

.hero.hero-wide .hero-panel-embed {
  min-width: 0;
}

.hero-panel-embed .hero-anim-frame,
.hero.hero-wide .hero-anim-frame {
  width: 100%;
  height: clamp(380px, 42vw, 520px);
}

@media (min-width: 768px) and (max-width: 1440px) {
  .hero-panel-embed .hero-anim-frame,
  .hero.hero-wide .hero-anim-frame {
    height: clamp(400px, 44vw, 500px);
  }
}

.eyebrow {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: #ad5a2e;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

h1 {
  max-width: 16ch;
  margin-top: 14px;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.06;
  font-weight: 800;
}

h2 {
  margin-top: 16px;
  font-size: clamp(28px, 3.8vw, 46px);
  line-height: 1.1;
  font-weight: 800;
}

h3 {
  margin: 12px 0 10px;
  font-size: clamp(19px, 1.7vw, 23px);
  line-height: 1.2;
  font-weight: 700;
}

.hero-text {
  max-width: 52ch;
  margin-top: 16px;
  font-size: clamp(14px, 1.2vw, 17px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.btn {
  padding: 0 24px;
  border: 1px solid transparent;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(120deg, var(--brand), var(--brand-strong));
  color: #fff;
  box-shadow: 0 14px 24px rgba(255, 126, 69, 0.2);
}

.btn-primary:hover {
  box-shadow: 0 18px 28px rgba(255, 126, 69, 0.26);
}

.btn-soft {
  border-color: var(--line);
  background: var(--surface);
  color: var(--ink);
}

.btn-soft:hover {
  border-color: rgba(255, 126, 69, 0.45);
  color: #a94f2d;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.hero-tags span {
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
}

.hero-panel {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(165deg, #ffffff, #fff7ee);
  box-shadow: var(--shadow-lg);
}

.hero-panel-embed {
  padding: 10px;
  overflow: hidden;
  background: linear-gradient(165deg, #f2f3f4, #f6f2ed);
  border-color: #cdd9e2;
  box-shadow: 0 18px 44px rgba(39, 81, 102, 0.12);
}

.hero-anim-frame {
  display: block;
  width: 100%;
  height: clamp(380px, 42vw, 520px);
  border: 0;
  background: #fcefe3;
  border-radius: 18px;
  overflow: hidden;
}

.panel-head span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9f6742;
}

.panel-head strong {
  display: block;
  margin-top: 8px;
  font-family: "Sora", "Trebuchet MS", sans-serif;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 0.96;
  color: var(--accent);
}

.panel-list {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding-left: 0;
  list-style: none;
}

.panel-list li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  color: #335364;
}

.panel-list li::before {
  position: absolute;
  top: 6px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  content: "";
  background: linear-gradient(120deg, var(--brand), var(--accent));
}

.panel-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.panel-kpis article {
  padding: 12px;
  border: 1px solid #ecf1f4;
  border-radius: 12px;
  background: var(--surface);
}

.panel-kpis span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #8a9ca9;
}

.panel-kpis strong {
  display: block;
  margin-top: 6px;
  font-size: 18px;
  color: var(--ink);
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0 clamp(18px, 4vw, 64px) clamp(16px, 3vw, 24px);
}

.metric,
.card,
.service-card,
.offer,
.testimonial-card,
.step-card,
.faq-item,
.quote-summary,
.quote-panel,
.contact-wrap,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-md);
}

.metric {
  padding: clamp(22px, 3vw, 34px);
}

.metric span,
.card span,
.service-card span,
.offer span,
.step-card span {
  color: #bd6b3e;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.metric strong {
  display: block;
  margin: 8px 0 10px;
  font-family: "Sora", "Trebuchet MS", sans-serif;
  font-size: 27px;
  line-height: 1.06;
  color: var(--ink);
}

.section-head {
  max-width: 68rem;
}

.section-head p {
  margin-top: 16px;
  max-width: 62ch;
}

.section-head.centered {
  margin: 0 auto;
  text-align: center;
}

.cards {
  display: grid;
  gap: 14px;
  margin-top: 40px;
}

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

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

.card,
.service-card,
.offer,
.testimonial-card,
.step-card {
  padding: clamp(20px, 2.8vw, 30px);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.card:hover,
.service-card:hover,
.offer:hover,
.testimonial-card:hover,
.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 126, 69, 0.42);
  box-shadow: 0 18px 30px rgba(39, 81, 102, 0.12);
}

.service-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
}

.service-card li {
  margin: 5px 0;
  color: #476476;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.stack {
  display: grid;
  gap: 12px;
}

.cases-section {
  border-top: 1px solid rgba(220, 233, 239, 0.56);
  border-bottom: 1px solid rgba(220, 233, 239, 0.56);
}

#cas .cases-intro {
  margin: 16px auto 0;
  max-width: 62ch;
  color: var(--muted);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.65;
}

#cas .case-switcher {
  width: min(1100px, 100%);
  margin: clamp(36px, 5vw, 52px) auto 0;
}

#cas .case-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

#cas .case-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

#cas .case-tab {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
  white-space: nowrap;
}

#cas .case-tab:hover {
  border-color: rgba(255, 126, 69, 0.45);
  color: #a94f2d;
}

#case-batiment:checked ~ .case-tabs .case-tab--batiment,
#case-immo:checked ~ .case-tabs .case-tab--immo,
#case-service:checked ~ .case-tabs .case-tab--service {
  border-color: rgba(255, 126, 69, 0.55);
  background: linear-gradient(120deg, rgba(255, 155, 82, 0.18), rgba(255, 126, 69, 0.12));
  color: #a94f2d;
  box-shadow: 0 8px 18px rgba(255, 126, 69, 0.12);
}

#cas .case-panel {
  display: none;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-md);
}

#case-batiment:checked ~ .case-panel--batiment,
#case-immo:checked ~ .case-panel--immo,
#case-service:checked ~ .case-panel--service {
  display: block;
}

#cas .case-panel-head {
  text-align: center;
  margin-bottom: clamp(20px, 3vw, 28px);
  padding-bottom: clamp(18px, 2.5vw, 24px);
  border-bottom: 1px solid rgba(220, 233, 239, 0.7);
}

#cas .case-panel-head h3 {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 28px);
  color: var(--ink);
}

#cas .case-hook {
  margin: 10px auto 0;
  max-width: 52ch;
  color: var(--muted);
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.55;
}

#cas .case-lever {
  display: inline-flex;
  margin-top: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 175, 118, 0.45);
  background: rgba(255, 168, 108, 0.12);
  color: #a94f2d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

#cas .case-transform {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: clamp(12px, 1.8vw, 18px);
}

#cas .case-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: clamp(16px, 2vw, 22px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(220, 233, 239, 0.8);
}

#cas .case-col h4 {
  margin: 0;
  font-family: "Sora", "Trebuchet MS", sans-serif;
  font-size: clamp(14px, 1.2vw, 16px);
  letter-spacing: -0.01em;
  color: var(--ink);
}

#cas .case-col--before {
  background: linear-gradient(165deg, #fff8ef, #fff3e4);
  border-color: rgba(255, 196, 143, 0.45);
}

#cas .case-col--system {
  background: linear-gradient(165deg, #f7fbfd, #eef4f8);
  border-color: rgba(35, 71, 95, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

#cas .case-col--after {
  background: linear-gradient(165deg, var(--accent-soft), #e8f8f6);
  border-color: rgba(29, 180, 167, 0.28);
}

#cas .case-pills {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

#cas .case-pill {
  padding: 9px 12px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.4;
}

#cas .case-pill--problem {
  border: 1px solid rgba(255, 168, 108, 0.35);
  background: rgba(255, 255, 255, 0.65);
  color: #5f4a3a;
}

#cas .case-pill--gain {
  border: 1px solid rgba(29, 180, 167, 0.28);
  background: rgba(255, 255, 255, 0.55);
  color: #1f5f58;
}

#cas .case-cockpit {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

#cas .case-module {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(35, 71, 95, 0.16);
  background: rgba(255, 255, 255, 0.78);
}

#cas .case-module--wide {
  grid-column: 1 / -1;
}

#cas .case-module span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #3d5f71;
}

#cas .case-module i {
  display: block;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 155, 82, 0.55), rgba(35, 71, 95, 0.35));
}

#cas .case-system-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

#cas .case-system-list li {
  position: relative;
  padding-left: 18px;
  color: #4a6474;
  font-size: 13px;
  line-height: 1.45;
}

#cas .case-system-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--brand), #2a536e);
}

#cas .cases-closing {
  margin: clamp(36px, 5vw, 52px) auto 0;
  max-width: 52rem;
  text-align: center;
}

#cas .cases-message {
  margin: 0;
  color: var(--ink);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.55;
}

#cas .cases-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

@media (max-width: 1023px) {
  #cas .case-transform {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  #cas .case-tabs {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  #cas .case-tabs::-webkit-scrollbar {
    display: none;
  }

  #cas .case-panel {
    padding: 18px 16px;
  }

  #cas .case-panel-head {
    text-align: left;
  }

  #cas .case-hook {
    margin-left: 0;
    margin-right: 0;
  }

  #cas .cases-actions {
    flex-direction: column;
    align-items: stretch;
  }

  #cas .cases-actions .btn {
    width: 100%;
  }
}

.testimonials-section {
  padding-top: clamp(64px, 9vw, 120px);
}

.testimonial-card {
  min-height: 230px;
  border-radius: var(--radius-lg);
  background: linear-gradient(170deg, #fff, #fff7ee);
}

.testimonial-card p {
  color: #3d5f71;
  font-size: 17px;
}

.testimonial-card strong {
  display: block;
  margin-top: 20px;
  color: var(--ink);
  font-size: 16px;
}

.testimonial-card span {
  margin-top: 4px;
  color: #7a8f9d;
  font-size: 13px;
}

.process-section {
  border-top: 1px solid rgba(255, 126, 69, 0.2);
}

.step-card {
  min-height: 192px;
}

.offers-section {
  border-top: 1px solid rgba(255, 126, 69, 0.18);
  border-bottom: 1px solid rgba(255, 126, 69, 0.18);
}

.offers-grid .offer {
  min-height: 340px;
}

.offer.featured {
  border-color: rgba(255, 126, 69, 0.38);
  background: linear-gradient(170deg, #fff6ea, #fff);
}

.price {
  display: grid;
  gap: 2px;
  margin: 10px 0 14px;
}

.price strong {
  color: var(--brand-strong);
  font-family: "Sora", "Trebuchet MS", sans-serif;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 0.88;
}

.price small {
  font-size: 18px;
  font-weight: 800;
  color: #3d5c6d;
}

.offer-link {
  display: inline-flex;
  margin-top: 14px;
  color: #a94f2d;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: color 180ms ease;
}

.offer-link:hover {
  color: var(--brand-strong);
}

.offer-link::after {
  content: " →";
}

.offers-grid .offer:has(.offer-link) .offer-button {
  margin-top: 10px;
}

.offer-button {
  width: 100%;
  min-height: 46px;
  margin-top: 22px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: #a14d2b;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.offer-button:hover,
.offer.selected .offer-button {
  transform: translateY(-2px);
  background: linear-gradient(120deg, var(--brand), var(--brand-strong));
  color: #fff;
  box-shadow: 0 14px 24px rgba(255, 126, 69, 0.22);
}

.offer.selected {
  border-color: rgba(255, 126, 69, 0.6);
  box-shadow: 0 18px 30px rgba(255, 126, 69, 0.16);
}

.quote-section {
  padding-top: clamp(60px, 8vw, 100px);
}

.quote-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
  gap: 18px;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(20px, 4vw, 34px);
  background: linear-gradient(164deg, #fff, #fff5e7);
  border-radius: var(--radius-xl);
}

.quote-intro {
  max-width: 42rem;
  margin-bottom: 18px;
}

.quote-main {
  display: grid;
}

.quote-form {
  display: grid;
  gap: 12px;
}

.quote-form label,
.quote-form fieldset,
.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #576f7f;
}

.quote-form select,
.quote-form input[type="text"],
.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #d6e4ec;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  padding: 0 14px;
  font: inherit;
}

.contact-form textarea {
  min-height: 120px;
  padding: 12px 14px;
  resize: vertical;
}

.contact-form-note {
  margin: 4px 0 0;
  font-size: 13px;
  font-weight: 500;
  color: #576f7f;
  line-height: 1.5;
}

.contact-form-note a {
  color: var(--ink);
  font-weight: 700;
}

.quote-form fieldset {
  margin: 0;
  padding: 12px;
  border: 1px solid #d8e8ef;
  border-radius: 12px;
  background: #fffdf8;
}

.quote-form legend {
  padding: 0 6px;
  color: #9f5d36;
}

.quote-form fieldset label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #496173;
  font-weight: 600;
}

.quote-summary {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  min-height: 320px;
  padding: clamp(18px, 3vw, 26px);
  border-color: rgba(255, 126, 69, 0.28);
  background: linear-gradient(150deg, #fff6ec, #fff);
}

.quote-summary span {
  font-size: 12px;
  font-weight: 800;
  color: #9b5e38;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.quote-summary strong {
  display: block;
  margin-top: 8px;
  font-family: "Sora", "Trebuchet MS", sans-serif;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 0.9;
  color: var(--brand-strong);
}

.faq-section {
  padding-top: clamp(66px, 9vw, 110px);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
  margin: 38px auto 0;
}

.faq-item {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  padding: 0;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  float: right;
  content: "+";
  color: #a85a32;
  font-size: 24px;
  line-height: 0.9;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  padding: 0 22px 22px;
}

.contact-section {
  padding-top: clamp(64px, 9vw, 104px);
}

.contact-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(18px, 3.4vw, 28px);
  border-radius: var(--radius-xl);
  background: linear-gradient(170deg, #fff, #fff7ee);
}

.contact-copy {
  padding: clamp(8px, 1.6vw, 14px);
}

.contact-list {
  margin-top: 20px;
}

.contact-list p {
  margin: 0 0 8px;
}

.contact-list strong {
  color: var(--ink);
}

.contact-list a {
  color: #59707f;
  text-decoration: none;
  transition: color 180ms ease;
}

.contact-list a:hover {
  color: var(--brand-strong);
}

.contact-form {
  display: grid;
  gap: 10px;
  padding: clamp(16px, 2.4vw, 22px);
  border-radius: var(--radius-lg);
}

.site-footer {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  padding: 38px clamp(18px, 4vw, 64px);
  border-top: 1px solid rgba(255, 126, 69, 0.18);
  background: rgba(255, 255, 255, 0.56);
}

.site-footer strong {
  color: var(--ink);
  font-family: "Sora", "Trebuchet MS", sans-serif;
}

.site-footer p {
  margin-top: 7px;
  color: #59707f;
  font-size: 14px;
}

.site-footer a {
  color: #59707f;
  text-decoration: none;
  transition: color 180ms ease;
}

.site-footer a:hover {
  color: var(--brand-strong);
}

.site-footer-trust {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.site-footer-trust li {
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(220, 233, 239, 0.95);
  background: rgba(255, 255, 255, 0.72);
  color: #59707f;
  font-size: 12px;
  font-weight: 600;
}

.site-footer-legal {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(220, 233, 239, 0.85);
  color: #7a8f9c;
  font-size: 13px;
}

.site-footer-legal a {
  color: #59707f;
  font-weight: 600;
}

.site-footer-legal a:hover {
  color: var(--brand-strong);
}

.site-footer-legal a[aria-current="page"] {
  color: var(--ink);
}

.site-footer-legal span {
  color: rgba(89, 112, 127, 0.45);
  user-select: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 640ms ease,
    transform 640ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .cards-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-section,
  .contact-wrap,
  .quote-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-panel-embed .hero-anim-frame,
  .hero.hero-wide .hero-anim-frame,
  .hero-anim-frame {
    height: clamp(340px, 50vw, 480px);
  }

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

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: auto auto auto;
  }

  .nav-toggle {
    display: inline-grid;
    place-content: center;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 40px rgba(26, 57, 75, 0.15);
    overflow: hidden;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 16px;
    border-top: 1px solid rgba(220, 233, 239, 0.7);
  }

  .nav-links > a:first-child,
  .nav-links > .nav-dropdown:first-child .nav-dropdown-toggle {
    border-top: 0;
  }

  .nav-dropdown {
    border-top: 1px solid rgba(220, 233, 239, 0.7);
  }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 14px 16px;
    text-align: left;
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    min-width: 0;
    margin: 0;
    padding: 0 8px 10px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    display: block;
    transform: none;
  }

  .nav-dropdown-menu a {
    padding: 10px 16px 10px 24px;
    border-radius: 0;
    border-top: 1px solid rgba(220, 233, 239, 0.5);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .nav-dropdown-menu a:first-child {
    border-top: 0;
  }

  .header-cta {
    justify-self: end;
    min-height: 42px;
    padding: 0 14px;
    font-size: 12px;
  }

  .metric-strip,
  .cards-3 {
    grid-template-columns: 1fr;
  }

  .offers-grid .offer,
  .step-card,
  .testimonial-card,
  .card,
  .service-card {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .site-header {
    gap: 10px;
    padding: 10px 14px;
  }

  .brand-name {
    font-size: 18px;
  }

  .brand-mark {
    width: 43px;
    height: 43px;
  }

  .header-cta {
    display: none;
  }

  main {
    padding-top: 74px;
  }

  .hero {
    padding-top: 14px;
  }

  .hero-panel-embed {
    padding: 8px;
  }

  .hero-anim-frame {
    height: clamp(240px, 62vw, 340px);
    border-radius: 14px;
  }

  h1 {
    font-size: clamp(30px, 9.8vw, 38px);
  }

  h2 {
    font-size: clamp(24px, 7.8vw, 30px);
  }

  .btn,
  .btn-soft,
  .btn-primary {
    width: 100%;
  }

  .panel-kpis {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

/* ── Page Site web ── */

.nav-links a.is-active {
  color: var(--brand-strong);
}

.page-site-web .hero.hero-wide .site-mockup {
  max-width: none;
  min-height: clamp(280px, 28vw, 380px);
}

.page-site-web .site-hero-stack {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: clamp(280px, 28vw, 380px);
}

.page-site-web .site-hero-stack-label {
  margin: 0 0 12px;
  color: #bd6b3e;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-site-web .site-hero-stack-cards {
  position: relative;
  height: clamp(240px, 26vw, 340px);
}

.page-site-web .site-hero-stack-card {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.page-site-web .site-hero-stack-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center top;
}

.page-site-web .site-hero-stack-card figcaption {
  padding: 8px 12px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.page-site-web .site-hero-stack-card--lead {
  top: 0;
  left: 0;
  z-index: 3;
  width: min(78%, 420px);
}

.page-site-web .site-hero-stack-card:nth-of-type(2) {
  top: 14%;
  right: 0;
  z-index: 2;
  width: min(52%, 280px);
  opacity: 0.94;
}

.page-site-web .site-hero-stack-card:nth-of-type(3) {
  bottom: 0;
  right: 8%;
  z-index: 1;
  width: min(48%, 260px);
  opacity: 0.88;
}

.page-site-web .site-layout-wide {
  --site-content-max: min(1200px, 100%);
}

.page-site-web .site-layout-wide .section-head {
  width: var(--site-content-max);
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(24px, 3vw, 36px);
  text-align: center;
}

.page-site-web .site-layout-wide .section-head h2 {
  max-width: 22em;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.page-site-web .site-layout-wide .site-strip,
.page-site-web .site-layout-wide .site-transform,
.page-site-web .site-layout-wide .site-showcase {
  width: var(--site-content-max);
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.page-site-web .site-layout-narrow {
  --site-content-max: min(720px, 100%);
}

.page-site-web .site-layout-narrow .section-head {
  max-width: var(--site-content-max);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.page-site-web .site-layout-narrow .section-head h2 {
  max-width: 28ch;
  margin-left: auto;
  margin-right: auto;
}

.page-site-web .site-layout-narrow .site-pills,
.page-site-web .site-layout-narrow .faq-list {
  max-width: var(--site-content-max);
}

.page-site-web .site-reassurance {
  margin: 16px 0 0;
  max-width: 42ch;
  color: #7a6555;
  font-size: 14px;
  font-style: italic;
  line-height: 1.5;
}

.page-site-web .site-mockup {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(165deg, #ffffff, #fff7ee);
  box-shadow: var(--shadow-lg);
}

.page-site-web .site-mockup-bar {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}

.page-site-web .site-mockup-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 126, 69, 0.35);
}

.page-site-web .site-mockup-bar span:first-child {
  background: rgba(255, 126, 69, 0.65);
}

.page-site-web .site-mockup-body {
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 16px;
  background: #f7fafc;
  border: 1px solid rgba(220, 233, 239, 0.9);
}

.page-site-web .site-mockup-block {
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(120deg, rgba(255, 196, 143, 0.45), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(220, 233, 239, 0.8);
}

.page-site-web .site-mockup-block--hero {
  height: 72px;
}

.page-site-web .site-mockup-block--cta {
  height: 36px;
  width: 55%;
  background: linear-gradient(120deg, var(--brand), var(--brand-strong));
  border-color: transparent;
}

.page-site-web .site-mockup-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.page-site-web .site-mockup-row .site-mockup-block {
  height: 40px;
}

.page-site-web .site-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 auto;
}

.page-site-web .site-pill {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 175, 118, 0.45);
  background: rgba(255, 255, 255, 0.85);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.page-site-web .site-transform {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 20px);
}

.page-site-web .site-transform .case-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: clamp(18px, 2.5vw, 26px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(220, 233, 239, 0.8);
}

.page-site-web .site-transform .case-col h3 {
  margin: 0;
  font-size: clamp(16px, 1.4vw, 18px);
}

.page-site-web .site-transform .case-col--before {
  background: linear-gradient(165deg, #fff8ef, #fff3e4);
  border-color: rgba(255, 196, 143, 0.45);
}

.page-site-web .site-transform .case-col--after {
  background: linear-gradient(165deg, var(--accent-soft), #e8f8f6);
  border-color: rgba(29, 180, 167, 0.28);
}

.page-site-web .site-transform .case-pills {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.page-site-web .site-transform .case-pill {
  padding: 9px 12px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.4;
}

.page-site-web .site-transform .case-pill--problem {
  border: 1px solid rgba(255, 168, 108, 0.35);
  background: rgba(255, 255, 255, 0.65);
  color: #5f4a3a;
}

.page-site-web .site-transform .case-pill--gain {
  border: 1px solid rgba(29, 180, 167, 0.28);
  background: rgba(255, 255, 255, 0.55);
  color: #1f5f58;
}

.page-site-web .site-examples {
  align-items: stretch;
}

.page-site-web .site-example-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: clamp(20px, 2.8vw, 28px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(170deg, #fff, #fff7ee);
  box-shadow: var(--shadow-md);
}

.page-site-web .site-example-type {
  color: #bd6b3e;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.page-site-web .site-example-card h3 {
  margin: 0;
}

.page-site-web .site-example-meta {
  margin: 0;
  color: #4a6474;
  font-size: 14px;
  line-height: 1.5;
}

.page-site-web .site-example-meta strong {
  color: var(--ink);
  font-size: 13px;
}

.page-site-web .site-example-benefit {
  margin: 4px 0 0;
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: #1f5f58;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.page-site-web .site-example-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: 8px;
}

.page-site-web .site-example-tags span {
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(220, 233, 239, 0.9);
  background: rgba(255, 255, 255, 0.8);
  color: #4a6474;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.page-site-web .section {
  padding-top: clamp(40px, 5.5vw, 72px);
  padding-bottom: clamp(40px, 5.5vw, 72px);
}

.page-site-web .section-head {
  margin-bottom: clamp(24px, 3vw, 36px);
  text-align: center;
}

.page-site-web .section-head p {
  display: none;
}

.page-site-web .site-section-lead {
  display: block;
  margin: 10px auto 0;
  max-width: 42em;
  color: var(--muted);
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.55;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  text-align: center;
}

.page-site-web .section-head h2 {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.page-site-web .site-pourqui {
  padding-top: clamp(36px, 5vw, 56px);
  padding-bottom: clamp(36px, 5vw, 56px);
}

.page-site-web .site-pourqui .section-head {
  margin-bottom: 20px;
}

.page-site-web .site-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1.5vw, 16px);
}

.page-site-web .site-strip-item {
  padding: clamp(16px, 2vw, 22px) clamp(14px, 1.8vw, 20px);
  border-left: 3px solid var(--brand);
  background: rgba(255, 255, 255, 0.55);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.page-site-web .site-strip-item h3 {
  margin: 0 0 6px;
  font-size: clamp(15px, 1.3vw, 17px);
}

.page-site-web .site-strip-item p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
}

.page-site-web .site-showcase {
  display: flex;
  align-items: stretch;
  gap: clamp(16px, 2vw, 22px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 126, 69, 0.35) transparent;
  padding-bottom: 8px;
}

.page-site-web .site-showcase::-webkit-scrollbar {
  height: 6px;
}

.page-site-web .site-showcase::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255, 126, 69, 0.35);
}

.page-site-web .site-project-card {
  flex: 0 0 clamp(300px, 32vw, 360px);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.page-site-web .site-project-preview {
  flex-shrink: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #1a3041;
}

.page-site-web .site-project-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.page-site-web .site-mockup--card {
  flex-shrink: 0;
  padding: 10px;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid var(--line);
  box-shadow: none;
  background: linear-gradient(165deg, #ffffff, #fff9f2);
}

.page-site-web .site-mockup--card .site-mockup-bar {
  margin-bottom: 8px;
}

.page-site-web .site-mockup--card .site-mockup-bar span {
  width: 8px;
  height: 8px;
}

.page-site-web .site-mockup--card .site-mockup-body {
  gap: 6px;
  padding: 10px;
  min-height: 108px;
}

.page-site-web .site-mockup--card .site-mockup-block {
  height: 28px;
}

.page-site-web .site-mockup--card .site-mockup-block--hero {
  height: 40px;
}

.page-site-web .site-mockup--card .site-mockup-block--cta {
  height: 22px;
  width: 48%;
}

.page-site-web .site-mockup--card-landing .site-mockup-block--cta {
  width: 62%;
}

.page-site-web .site-mockup--card-saas .site-mockup-row {
  grid-template-columns: repeat(2, 1fr);
}

.page-site-web .site-project-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
  padding: clamp(16px, 2vw, 20px);
}

.page-site-web .site-project-type {
  color: #bd6b3e;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.page-site-web .site-project-body h3 {
  margin: 0;
  font-size: clamp(17px, 1.5vw, 20px);
  letter-spacing: -0.02em;
}

.page-site-web .site-project-body > p {
  margin: 0;
  flex: 1;
  min-height: 4.5em;
  font-size: 14px;
  line-height: 1.5;
  color: #4a6474;
}

.page-site-web .site-project-card .site-example-tags {
  margin-top: 4px;
  padding-top: 0;
}

.page-site-web .site-project-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 12px;
}

.page-site-web .site-project-status {
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(31, 95, 88, 0.1);
  color: #1f5f58;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.page-site-web .site-project-status--internal {
  background: rgba(255, 155, 82, 0.16);
  color: #a94f2d;
}

.page-site-web .site-project-link {
  min-height: 38px;
  padding: 0 16px;
  font-size: 12px;
}

.page-site-web .site-band {
  background:
    radial-gradient(circle at 86% 8%, rgba(255, 162, 95, 0.14), transparent 16rem),
    linear-gradient(180deg, #1f3648, #1a3041);
}

.page-site-web .site-band-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 4vw, 48px);
  width: min(1140px, 100%);
  margin: 0 auto;
  align-items: start;
}

.page-site-web .site-band h2 {
  margin: 0 0 18px;
  font-size: clamp(22px, 2.4vw, 28px);
  color: #eff6fb;
  letter-spacing: -0.02em;
  text-align: center;
}

.page-site-web .site-why-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.page-site-web .site-why-list li {
  padding-left: 14px;
  border-left: 2px solid rgba(255, 168, 108, 0.45);
  color: rgba(228, 240, 249, 0.85);
  font-size: 14px;
  line-height: 1.5;
}

.page-site-web .site-why-list strong {
  color: #ffe2c9;
  font-weight: 800;
}

.page-site-web .site-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
  border: 1px solid rgba(255, 196, 143, 0.25);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.page-site-web .site-steps li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 196, 143, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: #eff6fb;
  font-size: 14px;
  font-weight: 700;
}

.page-site-web .site-steps li:last-child {
  border-bottom: 0;
}

.page-site-web .site-steps li span {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(255, 175, 118, 0.4);
  background: rgba(255, 168, 108, 0.12);
  color: #ffc48a;
  font-size: 11px;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.page-site-web .site-cta-final {
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 162, 95, 0.12), transparent 18rem),
    linear-gradient(180deg, #1f3648, #1a3041);
  text-align: center;
}

.page-site-web .site-cta-inner {
  max-width: 44rem;
  margin: 0 auto;
}

.page-site-web .site-cta-inner h2 {
  color: #eff6fb;
  letter-spacing: -0.02em;
}

.page-site-web .site-cta-inner p {
  margin-top: 14px;
  color: rgba(228, 240, 249, 0.82);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.6;
}

.page-site-web .site-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.page-site-web .site-cta-contact {
  margin: 20px 0 0;
  color: rgba(228, 240, 249, 0.72);
  font-size: 14px;
}

.page-site-web .site-cta-contact a {
  color: #ffc48a;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-site-web .site-cta-contact a:hover {
  color: #ffe2c9;
}

@media (max-width: 1080px) {
  .page-site-web .site-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-site-web .site-band-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .hero.hero-wide {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: clamp(36px, 5vw, 56px);
  }

  .hero.hero-wide h1 {
    max-width: none;
    font-size: clamp(30px, 9.8vw, 38px);
  }

  .hero.hero-wide .hero-panel-embed {
    order: -1;
  }

  .page-site-web .hero.hero-wide .site-mockup,
  .page-site-web .site-hero-stack {
    min-height: 0;
  }

  .page-site-web .site-hero-stack {
    order: -1;
  }

  .page-site-web .site-hero-stack-cards {
    height: auto;
    display: grid;
    gap: 12px;
  }

  .page-site-web .site-hero-stack-card,
  .page-site-web .site-hero-stack-card--lead,
  .page-site-web .site-hero-stack-card:nth-of-type(2),
  .page-site-web .site-hero-stack-card:nth-of-type(3) {
    position: static;
    width: 100%;
    opacity: 1;
  }

  .page-site-web .site-mockup {
    order: -1;
  }

  .page-site-web .site-strip {
    grid-template-columns: 1fr;
  }

  .page-site-web .site-transform {
    grid-template-columns: 1fr;
  }

  .page-site-web .site-pills {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .page-site-web .site-pills::-webkit-scrollbar {
    display: none;
  }

  .page-site-web .site-pill {
    flex-shrink: 0;
  }

  .page-site-web .site-showcase {
    scrollbar-width: none;
    gap: 14px;
  }

  .page-site-web .site-showcase::-webkit-scrollbar {
    display: none;
  }

  .page-site-web .site-project-card {
    flex: 0 0 min(320px, 86vw);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── Pages offre (automatisations, logiciel, agents IA) ── */

.page-offer .site-layout-wide {
  --site-content-max: min(1200px, 100%);
}

.page-offer .site-layout-wide .section-head {
  width: var(--site-content-max);
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(24px, 3vw, 36px);
  text-align: left;
}

.page-offer .site-layout-wide .section-head h2 {
  max-width: 22em;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.page-offer .site-layout-wide .site-strip,
.page-offer .site-layout-wide .site-transform,
.page-offer .site-layout-wide .offer-workflow-grid,
.page-offer .site-layout-wide .offer-cockpit-grid,
.page-offer .site-layout-wide .offer-agent-grid,
.page-offer .site-layout-wide .offer-problem-grid,
.page-offer .site-layout-wide .software-showcase {
  width: var(--site-content-max);
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.page-offer .site-layout-narrow {
  --site-content-max: min(720px, 100%);
}

.page-offer .site-layout-narrow .section-head {
  max-width: var(--site-content-max);
  margin-left: auto;
  margin-right: auto;
}

.page-offer .site-layout-narrow .section-head h2 {
  max-width: 28ch;
  margin-left: auto;
  margin-right: auto;
}

.page-offer .site-layout-narrow .faq-list {
  max-width: var(--site-content-max);
  margin-left: auto;
  margin-right: auto;
}

.page-offer .site-reassurance {
  margin: 16px 0 0;
  max-width: 42ch;
  color: #7a6555;
  font-size: 14px;
  font-style: italic;
  line-height: 1.5;
}

.page-offer .section {
  padding-top: clamp(40px, 5.5vw, 72px);
  padding-bottom: clamp(40px, 5.5vw, 72px);
}

.page-offer .section-head {
  margin-bottom: clamp(24px, 3vw, 36px);
}

.page-offer .section-head p {
  display: none;
}

.page-offer .site-section-lead {
  display: block;
  margin: 10px 0 0;
  max-width: 42em;
  color: var(--muted);
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.55;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}

.page-offer .site-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1.5vw, 16px);
}

.page-offer .offer-problem-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(10px, 1.5vw, 16px);
}

.page-offer .site-strip-item,
.page-offer .offer-problem-item {
  padding: clamp(16px, 2vw, 22px) clamp(14px, 1.8vw, 20px);
  border-left: 3px solid var(--brand);
  background: rgba(255, 255, 255, 0.55);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.page-offer .offer-problem-item p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
}

.page-offer .site-transform {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 20px);
}

.page-offer .site-transform .case-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: clamp(18px, 2.5vw, 26px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(220, 233, 239, 0.8);
}

.page-offer .site-transform .case-col h3 {
  margin: 0;
  font-size: clamp(16px, 1.4vw, 18px);
}

.page-offer .site-transform .case-col--before {
  background: linear-gradient(165deg, #fff8ef, #fff3e4);
  border-color: rgba(255, 196, 143, 0.45);
}

.page-offer .site-transform .case-col--after {
  background: linear-gradient(165deg, var(--accent-soft), #e8f8f6);
  border-color: rgba(29, 180, 167, 0.28);
}

.page-offer .site-transform .case-pills {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.page-offer .site-transform .case-pill {
  padding: 9px 12px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.4;
}

.page-offer .site-transform .case-pill--problem {
  border: 1px solid rgba(255, 168, 108, 0.35);
  background: rgba(255, 255, 255, 0.65);
  color: #5f4a3a;
}

.page-offer .site-transform .case-pill--gain {
  border: 1px solid rgba(29, 180, 167, 0.28);
  background: rgba(255, 255, 255, 0.55);
  color: #1f5f58;
}

.page-offer .site-example-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: 10px;
}

.page-offer .site-example-tags span {
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(220, 233, 239, 0.9);
  background: rgba(255, 255, 255, 0.8);
  color: #4a6474;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.page-offer .site-band {
  background:
    radial-gradient(circle at 86% 8%, rgba(255, 162, 95, 0.14), transparent 16rem),
    linear-gradient(180deg, #1f3648, #1a3041);
}

.page-offer .site-band-inner {
  width: min(720px, 100%);
  margin: 0 auto;
}

.page-offer .site-band h2 {
  margin: 0 0 18px;
  font-size: clamp(22px, 2.4vw, 28px);
  color: #eff6fb;
  letter-spacing: -0.02em;
}

.page-offer .site-why-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.page-offer .site-why-list li {
  padding-left: 14px;
  border-left: 2px solid rgba(255, 168, 108, 0.45);
  color: rgba(228, 240, 249, 0.85);
  font-size: 14px;
  line-height: 1.5;
}

.page-offer .site-why-list strong {
  color: #ffe2c9;
  font-weight: 800;
}

.page-offer .site-cta-final {
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 162, 95, 0.12), transparent 18rem),
    linear-gradient(180deg, #1f3648, #1a3041);
  text-align: center;
}

.page-offer .site-cta-inner {
  max-width: 44rem;
  margin: 0 auto;
}

.page-offer .site-cta-inner h2 {
  color: #eff6fb;
  letter-spacing: -0.02em;
}

.page-offer .site-cta-inner p {
  margin-top: 14px;
  color: rgba(228, 240, 249, 0.82);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.6;
}

.page-offer .site-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.page-offer .site-footer-offer {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.page-offer .site-footer a {
  color: #59707f;
  text-decoration: none;
  transition: color 180ms ease;
}

.page-offer .site-footer a:hover {
  color: var(--brand-strong);
}

/* Hero visuals offre */
.page-offer .hero-offer-visual {
  padding: 14px;
  min-height: clamp(280px, 28vw, 380px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-offer .hero-flow-diagram {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 16px;
}

.page-offer .hero-flow-node {
  padding: 12px 10px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  color: var(--ink);
  line-height: 1.3;
}

.page-offer .hero-flow-node--trigger {
  border-color: rgba(255, 126, 69, 0.45);
  background: rgba(255, 155, 82, 0.12);
}

.page-offer .hero-flow-arrow {
  color: var(--brand-strong);
  font-size: 18px;
  font-weight: 800;
}

.page-offer .hero-cockpit-preview {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 10px;
  width: 100%;
  min-height: 220px;
  padding: 12px;
  border-radius: 14px;
  background: #f7fafc;
  border: 1px solid rgba(220, 233, 239, 0.9);
}

.page-offer .hero-cockpit-sidebar {
  display: grid;
  gap: 6px;
  align-content: start;
}

.page-offer .hero-cockpit-sidebar span {
  height: 28px;
  border-radius: 8px;
  background: rgba(255, 155, 82, 0.2);
  border: 1px solid rgba(255, 126, 69, 0.25);
}

.page-offer .hero-cockpit-main {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  align-content: start;
}

.page-offer .hero-cockpit-tile {
  padding: 14px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
  text-align: center;
}

.page-offer .hero-chat-preview {
  display: grid;
  gap: 12px;
  width: 100%;
  padding: 16px;
}

.page-offer .hero-chat-bubble {
  max-width: 88%;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 12px;
  line-height: 1.45;
}

.page-offer .hero-chat-bubble--in {
  justify-self: start;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  color: var(--ink);
  border-bottom-left-radius: 4px;
}

.page-offer .hero-chat-bubble--out {
  justify-self: end;
  background: linear-gradient(120deg, rgba(255, 155, 82, 0.2), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(255, 126, 69, 0.35);
  color: var(--ink);
  border-bottom-right-radius: 4px;
}

/* Workflow cards */
.page-offer .offer-workflow-grid,
.page-offer .offer-cockpit-grid,
.page-offer .offer-agent-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 22px);
}

.page-offer .workflow-card,
.page-offer .cockpit-card,
.page-offer .agent-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: clamp(18px, 2.2vw, 24px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-md);
}

.page-offer .workflow-card-context,
.page-offer .cockpit-card-context,
.page-offer .agent-card-context {
  color: #bd6b3e;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.page-offer .workflow-card h3,
.page-offer .cockpit-card h3,
.page-offer .agent-card h3 {
  margin: 0;
  font-size: clamp(17px, 1.5vw, 20px);
  letter-spacing: -0.02em;
}

.page-offer .workflow-steps {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-offer .workflow-step {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(220, 233, 239, 0.9);
  background: rgba(247, 250, 252, 0.9);
  font-size: 13px;
  line-height: 1.45;
  color: #4a6474;
}

.page-offer .workflow-step strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.page-offer .workflow-step--trigger {
  border-color: rgba(255, 126, 69, 0.35);
  background: rgba(255, 155, 82, 0.1);
}

.page-offer .workflow-step--auto {
  border-color: rgba(29, 180, 167, 0.28);
  background: rgba(232, 248, 246, 0.8);
}

.page-offer .cockpit-modules {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 12px;
  border-radius: 12px;
  background: #f7fafc;
  border: 1px solid rgba(220, 233, 239, 0.9);
}

.page-offer .cockpit-module {
  padding: 10px 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  font-size: 10px;
  font-weight: 800;
  text-align: center;
  color: var(--ink);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.page-offer .cockpit-detail {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #4a6474;
}

.page-offer .cockpit-detail strong {
  color: var(--ink);
}

.page-offer .agent-demo {
  display: grid;
  gap: 10px;
  padding: 12px;
  border-radius: 12px;
  background: #f7fafc;
  border: 1px solid rgba(220, 233, 239, 0.9);
}

.page-offer .agent-input,
.page-offer .agent-output {
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 12px;
  line-height: 1.45;
}

.page-offer .agent-input {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  color: #5f4a3a;
}

.page-offer .agent-input strong,
.page-offer .agent-output strong {
  display: block;
  margin-bottom: 4px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #bd6b3e;
}

.page-offer .agent-output {
  background: linear-gradient(120deg, rgba(255, 155, 82, 0.14), rgba(255, 255, 255, 0.95));
  border: 1px solid rgba(255, 126, 69, 0.3);
  color: var(--ink);
}

.page-offer .agent-output strong {
  color: #1f5f58;
}

.page-offer .agent-action {
  margin: 0;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(29, 95, 88, 0.08);
  color: #1f5f58;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

/* Vitrine logiciels — cartes + modal modules */
.page-offer-logiciel .software-showcase {
  display: flex;
  align-items: stretch;
  gap: clamp(16px, 2vw, 22px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 126, 69, 0.35) transparent;
  padding-bottom: 8px;
}

.page-offer-logiciel .software-showcase::-webkit-scrollbar {
  height: 6px;
}

.page-offer-logiciel .software-showcase::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255, 126, 69, 0.35);
}

.page-offer-logiciel .software-project-card {
  flex: 0 0 clamp(300px, 32vw, 360px);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.page-offer-logiciel .software-project-preview {
  position: relative;
  flex-shrink: 0;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  aspect-ratio: 1024 / 507;
  overflow: hidden;
  background: #eef2f5;
  cursor: pointer;
  text-align: left;
}

.page-offer-logiciel .software-project-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
}

.page-offer-logiciel .software-project-preview--mobile {
  aspect-ratio: 1024 / 507;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  background: linear-gradient(180deg, #eef2f5, #e2e9ef);
}

.page-offer-logiciel .software-project-preview--mobile .phone-mockup {
  height: 88%;
  width: auto;
  max-width: 34%;
}

.page-offer-logiciel .software-project-preview--mobile .phone-mockup-shell {
  height: 100%;
  width: auto;
  aspect-ratio: 456 / 940;
  border-width: 2px;
  border-radius: 18px;
  padding: 6px 5px 7px;
  box-shadow:
    0 10px 22px rgba(20, 31, 43, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.page-offer-logiciel .software-project-preview--mobile .phone-mockup-notch {
  top: 5px;
  width: 32%;
  height: 8px;
  border-radius: 0 0 7px 7px;
}

.page-offer-logiciel .software-project-preview--mobile .phone-mockup-screen {
  border-radius: 12px;
}

/* Mockup téléphone — captures mobile */
.phone-mockup {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  pointer-events: none;
}

.phone-mockup-shell {
  position: relative;
  width: 100%;
  aspect-ratio: 456 / 940;
  border-radius: clamp(22px, 5vw, 30px);
  border: 3px solid #141f2b;
  background: linear-gradient(165deg, #273545, #141f2b);
  padding: clamp(8px, 1.6vw, 11px) clamp(7px, 1.4vw, 9px) clamp(10px, 1.8vw, 12px);
  box-shadow:
    0 18px 36px rgba(20, 31, 43, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.phone-mockup-notch {
  position: absolute;
  top: clamp(7px, 1.4vw, 9px);
  left: 50%;
  z-index: 2;
  width: 34%;
  height: clamp(10px, 2vw, 13px);
  border-radius: 0 0 10px 10px;
  background: #141f2b;
  transform: translateX(-50%);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.06);
}

.phone-mockup-screen {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: clamp(14px, 3.2vw, 20px);
  background: #f7f7f7;
}

.phone-mockup-screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.phone-mockup--module {
  width: min(100%, 240px);
  margin: 0 auto;
}

.page-offer-logiciel .software-project-preview:focus-visible {
  outline: 2px solid rgba(255, 126, 69, 0.75);
  outline-offset: -2px;
}

.page-offer-logiciel .software-project-preview-hint {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(26, 48, 65, 0.88);
  color: #ffe2c9;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  pointer-events: none;
}

.page-offer-logiciel .software-project-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
  padding: clamp(16px, 2vw, 20px);
}

.page-offer-logiciel .software-project-type {
  color: #bd6b3e;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.page-offer-logiciel .software-project-body h3 {
  margin: 0;
  font-size: clamp(18px, 1.6vw, 22px);
  letter-spacing: -0.02em;
}

.page-offer-logiciel .software-project-body > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.page-offer-logiciel .software-project-card .site-example-tags {
  margin-top: 2px;
}

.page-offer-logiciel .software-project-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(220, 233, 239, 0.9);
}

.page-offer-logiciel .software-project-status {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(29, 95, 88, 0.1);
  color: #1f5f58;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.page-offer-logiciel .software-project-link {
  flex-shrink: 0;
}

.software-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: clamp(12px, 2vw, 24px);
}

.software-modal[hidden] {
  display: none;
}

body.software-modal-open {
  overflow: hidden;
}

.software-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 28, 38, 0.62);
  backdrop-filter: blur(4px);
}

.software-modal-panel {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(88vh, 920px);
  overflow: auto;
  border-radius: 24px;
  border: 1px solid rgba(255, 196, 143, 0.35);
  background: linear-gradient(180deg, #fffaf4, #ffffff);
  box-shadow: 0 28px 64px rgba(6, 15, 24, 0.28);
}

.software-modal-close {
  position: sticky;
  top: 12px;
  float: right;
  margin: 12px 12px 0 0;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease;
}

.software-modal-close svg {
  width: 18px;
  height: 18px;
}

.software-modal-close:hover {
  border-color: rgba(255, 126, 69, 0.45);
  background: #fff7ee;
}

.software-modal-content {
  clear: both;
  padding: 0 clamp(18px, 3vw, 28px) clamp(22px, 3vw, 32px);
}

.software-modal-head {
  margin-bottom: clamp(18px, 2.5vw, 28px);
}

.software-modal-eyebrow {
  margin: 0;
  color: #bd6b3e;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.software-modal-head h2 {
  margin: 8px 0 0;
  font-size: clamp(24px, 2.8vw, 32px);
  letter-spacing: -0.02em;
}

.software-modal-lead {
  margin: 10px 0 0;
  max-width: 62ch;
  color: var(--muted);
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.55;
}

.software-modal-modules {
  display: grid;
  gap: clamp(14px, 2vw, 18px);
}

.software-module {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(14px, 2vw, 20px);
  align-items: center;
  padding: clamp(12px, 1.8vw, 16px);
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
}

.software-module-media {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid rgba(220, 233, 239, 0.9);
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 12px;
  background: #eef2f5;
  cursor: zoom-in;
  text-align: left;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.software-module-media:hover,
.software-module-media:focus-visible {
  border-color: rgba(255, 126, 69, 0.45);
  box-shadow: 0 8px 24px rgba(39, 81, 102, 0.14);
}

.software-module-media:focus-visible {
  outline: 2px solid rgba(255, 126, 69, 0.75);
  outline-offset: 2px;
}

.software-module-zoom-hint {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(26, 48, 65, 0.88);
  color: #ffe2c9;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms ease;
}

.software-module-media:hover .software-module-zoom-hint,
.software-module-media:focus-visible .software-module-zoom-hint {
  opacity: 1;
}

.software-module-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  pointer-events: none;
}

.software-module-media--mobile {
  aspect-ratio: auto;
  max-width: none;
  padding: clamp(14px, 2vw, 20px);
  background: linear-gradient(180deg, #f3f6f8, #e8eef2);
  border-color: rgba(205, 217, 226, 0.95);
}

.software-module-media--mobile .phone-mockup--module {
  width: min(100%, 260px);
}

@media (min-width: 768px) {
  .software-module:has(.software-module-media--mobile) {
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  }
}

.software-lightbox {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
  padding: clamp(12px, 2vw, 20px);
}

.software-lightbox[hidden] {
  display: none;
}

body.software-lightbox-open {
  overflow: hidden;
}

.software-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 18, 26, 0.88);
}

.software-lightbox-figure {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: min(calc(100vw - 24px), 100%);
  max-width: none;
  max-height: 92vh;
  margin: 0;
}

.software-lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.software-lightbox-close svg {
  width: 18px;
  height: 18px;
}

.software-lightbox-close:hover {
  border-color: rgba(255, 126, 69, 0.55);
  background: #fff7ee;
}

.software-lightbox-img {
  display: block;
  width: auto;
  height: auto;
  max-width: calc(100vw - 48px);
  max-height: calc(88vh - 56px);
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #eef2f5;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.35);
}

.software-lightbox-caption {
  margin: 0;
  padding: 0 4px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
}

.software-module-tag {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 155, 82, 0.14);
  color: #ad5a2e;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.software-module-copy h3 {
  margin: 0 0 8px;
  font-size: clamp(16px, 1.5vw, 19px);
  letter-spacing: -0.02em;
}

.software-module-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

@media (max-width: 1080px) {
  .page-offer .offer-workflow-grid,
  .page-offer .offer-cockpit-grid,
  .page-offer .offer-agent-grid,
  .page-offer .offer-problem-grid {
    grid-template-columns: 1fr;
  }

  .page-offer .site-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-offer .site-footer-offer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-offer .hero-flow-diagram {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .page-offer .hero-flow-arrow {
    transform: rotate(90deg);
  }
}

@media (max-width: 767px) {
  .page-offer .site-layout-wide .section-head,
  .page-offer .site-layout-wide .section-head h2 {
    text-align: left;
  }

  .page-offer .site-strip {
    grid-template-columns: 1fr;
  }

  .page-offer .site-transform {
    grid-template-columns: 1fr;
  }

  .page-offer .hero-offer-visual {
    order: -1;
    min-height: 0;
  }

  .page-offer .site-footer-offer {
    grid-template-columns: 1fr;
  }

  .page-offer .cockpit-modules {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .software-module {
    grid-template-columns: 1fr;
  }

  .page-offer-logiciel .software-project-card {
    flex-basis: min(88vw, 340px);
  }
}

/* ── Page Notre approche ── */

.page-approche .section {
  padding-top: clamp(40px, 5.5vw, 72px);
  padding-bottom: clamp(40px, 5.5vw, 72px);
}

.page-approche .approche-section-head {
  max-width: 52rem;
  margin: 0 auto clamp(28px, 3.5vw, 40px);
  text-align: center;
}

.page-approche .approche-section-head h2 {
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.page-approche .approche-section-lead {
  max-width: 58ch;
  margin: 14px auto 0;
  color: #59707f;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.65;
}

/* Hero */

.page-approche .approche-hero {
  padding-top: clamp(48px, 6vw, 88px);
  padding-bottom: clamp(48px, 6vw, 88px);
}

.page-approche .approche-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
  max-width: 72rem;
  margin: 0 auto;
}

.page-approche .approche-hero-copy h1 {
  font-size: clamp(32px, 4.2vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 16ch;
}

.page-approche .approche-hero-text {
  max-width: 54ch;
  margin-top: 18px;
  color: #59707f;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.68;
}

.page-approche .approche-hero-note {
  max-width: 48ch;
  margin-top: 12px;
  color: var(--ink);
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 700;
  line-height: 1.55;
}

.page-approche .approche-hero-copy .hero-actions {
  margin-top: 24px;
}

.page-approche .approche-founder-card {
  padding: clamp(22px, 2.8vw, 30px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-left: 4px solid var(--brand-strong);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-md);
  transform: rotate(1.2deg);
}

.page-approche .approche-founder-name {
  margin: 0;
  font-family: "Sora", "Trebuchet MS", sans-serif;
  font-size: clamp(15px, 1.4vw, 17px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.page-approche .approche-founder-quote {
  margin: 16px 0 0;
  padding: 0;
  color: #4a6474;
  font-size: clamp(14px, 1.35vw, 16px);
  font-style: italic;
  line-height: 1.65;
}

.page-approche .approche-founder-lines {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.page-approche .approche-founder-lines li {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 155, 82, 0.35);
  background: var(--brand-soft);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

/* Story split */

.page-approche .approche-split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: clamp(24px, 3.5vw, 40px);
  align-items: start;
  max-width: 72rem;
  margin: 0 auto;
}

.page-approche .approche-story-copy h2 {
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.page-approche .approche-story-copy p {
  margin-top: 16px;
  color: #59707f;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.68;
}

.page-approche .approche-insights {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.page-approche .approche-insight {
  padding: clamp(16px, 2vw, 20px);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 22px rgba(27, 62, 81, 0.05);
}

.page-approche .approche-insight h3 {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.25;
}

.page-approche .approche-insight p {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.55;
}

/* Field cards */

.page-approche .approche-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 20px);
  max-width: 72rem;
  margin: 0 auto;
}

.page-approche .approche-field-card {
  padding: clamp(20px, 2.4vw, 26px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 26px rgba(27, 62, 81, 0.05);
}

.page-approche .approche-field-card h3 {
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.2;
}

.page-approche .approche-field-card p {
  margin-top: 10px;
  font-size: clamp(14px, 1.35vw, 16px);
  line-height: 1.6;
}

/* Timeline */

.page-approche .approche-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2.5vw, 26px);
  max-width: 42rem;
  margin: 0 auto;
  padding: 0 0 0 36px;
  list-style: none;
}

.page-approche .approche-timeline::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--brand), rgba(255, 155, 82, 0.25));
  border-radius: 999px;
}

.page-approche .approche-timeline-step {
  position: relative;
  padding: clamp(16px, 2vw, 22px) clamp(18px, 2.2vw, 24px);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 22px rgba(27, 62, 81, 0.05);
  counter-increment: approche-step;
}

.page-approche .approche-timeline {
  counter-reset: approche-step;
}

.page-approche .approche-timeline-step::before {
  content: counter(approche-step);
  position: absolute;
  left: -36px;
  top: 20px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  color: #fff;
  font-family: "Sora", "Trebuchet MS", sans-serif;
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(255, 126, 69, 0.35);
}

.page-approche .approche-timeline-step h3 {
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.2;
}

.page-approche .approche-timeline-step p {
  margin-top: 8px;
  font-size: clamp(14px, 1.35vw, 16px);
  line-height: 1.6;
}

/* Levers */

.page-approche .approche-lever-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 1.8vw, 18px);
  max-width: 56rem;
  margin: 0 auto;
}

.page-approche .approche-lever-card {
  display: block;
  padding: clamp(18px, 2.2vw, 24px);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 22px rgba(27, 62, 81, 0.05);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.page-approche .approche-lever-card:hover {
  border-color: rgba(255, 155, 82, 0.65);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 140, 74, 0.12);
}

.page-approche .approche-lever-card:focus-visible {
  outline: 2px solid rgba(255, 155, 82, 0.85);
  outline-offset: 3px;
}

.page-approche .approche-lever-card h3 {
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.2;
  color: var(--ink);
}

.page-approche .approche-lever-card p {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.55;
}

.page-approche .approche-lever-card:hover h3 {
  color: var(--brand-strong);
}

/* Avoid */

.page-approche .approche-avoid {
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.85), rgba(255, 248, 238, 0.72));
}

.page-approche .approche-avoid-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 20px);
  max-width: 72rem;
  margin: 0 auto;
}

.page-approche .approche-avoid-item {
  padding: clamp(18px, 2.2vw, 24px);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.page-approche .approche-avoid-item h3 {
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.25;
}

.page-approche .approche-avoid-item p {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.58;
}

/* Proof band */

.page-approche .approche-proof-band {
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 162, 95, 0.12), transparent 18rem),
    linear-gradient(180deg, #1f3648, var(--ink));
  text-align: center;
}

.page-approche .approche-proof-inner {
  max-width: 52rem;
  margin: 0 auto;
}

.page-approche .approche-proof-inner h2 {
  color: #eff6fb;
  font-size: clamp(26px, 3.2vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.page-approche .approche-proof-inner > p {
  max-width: 58ch;
  margin: 16px auto 0;
  color: rgba(228, 240, 249, 0.82);
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.65;
}

.page-approche .approche-proof-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.page-approche .approche-proof-tags span {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 196, 143, 0.35);
  background: rgba(255, 255, 255, 0.1);
  color: #ffe2c9;
  font-size: 13px;
  font-weight: 700;
}

.page-approche .approche-proof-cta {
  margin-top: 28px;
}

/* Final CTA */

.page-approche .approche-final-inner {
  max-width: 52rem;
  margin: 0 auto;
  text-align: center;
}

.page-approche .approche-final-inner h2 {
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.page-approche .approche-final-inner > p {
  max-width: 54ch;
  margin: 16px auto 0;
  color: #59707f;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.65;
}

.page-approche .approche-final-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

@media (max-width: 767px) {
  .page-approche .approche-hero-inner {
    grid-template-columns: 1fr;
  }

  .page-approche .approche-hero-copy {
    order: 1;
  }

  .page-approche .approche-founder-card {
    order: 2;
    transform: none;
  }

  .page-approche .approche-hero-copy h1 {
    max-width: none;
  }

  .page-approche .approche-split {
    grid-template-columns: 1fr;
  }

  .page-approche .approche-field-grid,
  .page-approche .approche-lever-grid,
  .page-approche .approche-avoid-grid {
    grid-template-columns: 1fr;
  }

  .page-approche .approche-timeline {
    padding-left: 32px;
  }

  .page-approche .approche-timeline-step::before {
    left: -32px;
  }

  .page-approche .approche-final-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .page-approche .approche-final-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ── Page Réalisations ── */

.page-realisations .realisations-filters {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 2px 12px;
  margin-bottom: 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.page-realisations .realisations-filters::-webkit-scrollbar {
  display: none;
}

.page-realisations .realisations-filter {
  flex: 0 0 auto;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(220, 233, 239, 0.95);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.page-realisations .realisations-filter:hover,
.page-realisations .realisations-filter:focus-visible {
  border-color: rgba(255, 126, 69, 0.45);
}

.page-realisations .realisations-filter.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff1dc;
}

.page-realisations .realisations-filter:focus-visible {
  outline: 2px solid rgba(255, 126, 69, 0.75);
  outline-offset: 2px;
}

.page-realisations .realisations-section.is-hidden {
  display: none;
}

.page-realisations .realisations-section-head {
  margin-bottom: clamp(18px, 2.5vw, 28px);
}

.page-realisations .realisations-section-head h2 {
  font-size: clamp(22px, 2.4vw, 28px);
}

.page-realisations .realisations-section-head p {
  margin-top: 8px;
  color: #59707f;
  font-size: 15px;
  line-height: 1.6;
}

.page-realisations .realisations-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: clamp(16px, 2vw, 22px);
}

.page-realisations .realisations-cockpit-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  padding: clamp(14px, 2vw, 18px);
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
}

.page-realisations .realisations-cockpit-preview {
  border-radius: 12px;
  border: 1px solid rgba(220, 233, 239, 0.9);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #eef2f5;
}

.page-realisations .realisations-cockpit-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.page-realisations .realisations-features {
  margin: 10px 0 0;
  padding-left: 18px;
  color: #59707f;
  font-size: 14px;
  line-height: 1.55;
}

.page-realisations .realisations-features li + li {
  margin-top: 4px;
}

.page-realisations .realisations-section-footer {
  margin-top: 18px;
  text-align: center;
}

.page-realisations .realisations-section + .realisations-section {
  margin-top: clamp(32px, 4vw, 48px);
  padding-top: clamp(24px, 3vw, 36px);
  border-top: 1px solid rgba(220, 233, 239, 0.85);
}

.page-realisations .site-showcase {
  display: flex;
  align-items: stretch;
  gap: clamp(16px, 2vw, 22px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  padding-bottom: 8px;
}

.page-realisations .site-project-card {
  flex: 0 0 clamp(300px, 32vw, 360px);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.page-realisations .site-project-preview {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #1a3041;
}

.page-realisations .site-project-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.page-realisations .site-project-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
  padding: clamp(16px, 2vw, 20px);
}

.page-realisations .site-project-type {
  color: #bd6b3e;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.page-realisations .site-project-body h3 {
  margin: 0;
  font-size: clamp(17px, 1.5vw, 20px);
}

.page-realisations .site-project-body > p {
  margin: 0;
  flex: 1;
  font-size: 14px;
  line-height: 1.5;
  color: #4a6474;
}

.page-realisations .site-project-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 12px;
}

.page-realisations .site-project-status {
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(29, 180, 167, 0.12);
  color: #0f766e;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.page-realisations .software-showcase {
  display: flex;
  align-items: stretch;
  gap: clamp(16px, 2vw, 22px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  padding-bottom: 8px;
}

.page-realisations .software-project-card {
  flex: 0 0 clamp(300px, 32vw, 360px);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.page-realisations .software-project-preview--mobile {
  aspect-ratio: 1024 / 507;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  background: linear-gradient(180deg, #eef2f5, #e2e9ef);
  border-bottom: 1px solid var(--line);
}

.page-realisations .software-project-preview--mobile .phone-mockup {
  height: 88%;
  width: auto;
  max-width: 34%;
}

.page-realisations .software-project-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
  padding: clamp(16px, 2vw, 20px);
}

.page-realisations .software-project-footer {
  margin-top: auto;
  padding-top: 12px;
}

@media (max-width: 1080px) {
  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ── Pages légales ── */

.page-legal .reveal {
  opacity: 1;
  transform: none;
}

.page-legal .legal-hero {
  padding-top: clamp(48px, 6vw, 72px);
  padding-bottom: clamp(32px, 4vw, 48px);
}

.page-legal .legal-hero-inner {
  max-width: 52rem;
  margin: 0 auto;
}

.page-legal .legal-hero h1 {
  max-width: none;
  margin-top: 14px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.page-legal .legal-hero-lead {
  max-width: 58ch;
  margin-top: 16px;
  color: #59707f;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.65;
}

.page-legal .legal-content {
  max-width: 42rem;
  margin: 0 auto;
}

.page-legal .legal-section + .legal-section {
  margin-top: clamp(28px, 3.5vw, 40px);
  padding-top: clamp(28px, 3.5vw, 40px);
  border-top: 1px solid rgba(220, 233, 239, 0.9);
}

.page-legal .legal-section h2 {
  margin: 0;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-legal .legal-section p {
  margin-top: 14px;
  color: #59707f;
  font-size: clamp(15px, 1.5vw, 16px);
  line-height: 1.68;
}

.page-legal .legal-section a {
  color: var(--brand-strong);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.page-legal .legal-section a:hover {
  color: var(--ink);
}

.page-legal .legal-list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-legal .legal-list li {
  color: #59707f;
  font-size: clamp(15px, 1.5vw, 16px);
  line-height: 1.6;
}

.page-legal .legal-list strong {
  color: var(--ink);
  font-weight: 700;
}

.page-legal .legal-list--bullets {
  list-style: disc;
  padding-left: 1.25rem;
  display: block;
}

.page-legal .legal-list--bullets li {
  display: list-item;
}

.page-legal .legal-placeholder {
  display: inline;
  padding: 2px 8px;
  border-radius: 6px;
  border: 1px dashed rgba(255, 155, 82, 0.55);
  background: rgba(255, 227, 199, 0.45);
  color: #8a5a32;
  font-size: 0.95em;
  font-weight: 600;
}

@media (max-width: 767px) {
  .site-footer-legal {
    justify-content: flex-start;
  }

  .page-legal .legal-hero h1 {
    font-size: clamp(28px, 8vw, 36px);
  }
}
