body.page {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

main {
  flex: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  isolation: isolate;
  background: rgba(245, 243, 255, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(18px) saturate(140%);
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
  overflow-x: hidden;
  overflow-x: clip;
  overflow-y: visible;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: -60% 0 10%;
  background-image: var(--gradient-aurora);
  opacity: 0.35;
  filter: blur(40px);
  transform: scale(1.1);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
  z-index: -1;
}

.site-header[data-scrolled="true"] {
  background: rgba(15, 23, 42, 0.85);
  border-color: rgba(148, 163, 184, 0.32);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.28);
}

.site-header[data-scrolled="true"]::before {
  opacity: 0.16;
  transform: scale(1.3) translateY(-6%);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.25rem);
}

.site-logo {
  display: inline-grid;
  gap: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-weight: 600;
  position: relative;
}

.site-logo__wordmark {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  background-image: var(--gradient-ember);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  line-height: 1;
  text-shadow: 0 18px 42px rgba(99, 102, 241, 0.35);
  transition: filter var(--transition), text-shadow var(--transition);
}

.site-logo__tagline {
  font-size: 0.58rem;
  letter-spacing: 0.48em;
  font-weight: 500;
  color: rgba(17, 24, 39, 0.58);
  line-height: 1.1;
  transition: color var(--transition);
}

.site-header[data-scrolled="true"] .site-logo__wordmark {
  filter: saturate(1.35) brightness(1.05);
  text-shadow: 0 22px 48px rgba(14, 116, 144, 0.32);
}

.site-header[data-scrolled="true"] .site-logo__tagline {
  color: rgba(226, 232, 240, 0.74);
}

.site-nav {
  position: relative;
}

.site-nav__toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.05);
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.site-nav__toggle:focus-visible,
.site-nav__toggle:hover {
  background: rgba(15, 23, 42, 0.12);
}

.site-nav__toggle .site-nav__bar,
.site-nav__toggle .site-nav__bar::before,
.site-nav__toggle .site-nav__bar::after {
  display: block;
  width: 18px;
  height: 2px;
  background-color: var(--color-text);
  border-radius: 999px;
  transition: transform var(--transition), opacity var(--transition);
}

.site-nav__toggle .site-nav__bar {
  position: relative;
}

.site-nav__toggle .site-nav__bar::before,
.site-nav__toggle .site-nav__bar::after {
  content: "";
  position: absolute;
  left: 0;
}

.site-nav__toggle .site-nav__bar::before {
  transform: translateY(-6px);
}

.site-nav__toggle .site-nav__bar::after {
  transform: translateY(6px);
}

.theme-toggle {
  --toggle-width: 76px;
  --toggle-height: 38px;
  width: var(--toggle-width);
  height: var(--toggle-height);
  border-radius: var(--toggle-height);
  border: 1px solid rgba(15, 23, 42, 0.15);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(236, 245, 255, 0.65));
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.25rem;
  padding: 0 0.4rem;
  color: rgba(15, 23, 42, 0.82);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    border-color var(--transition);
  position: relative;
  isolation: isolate;
}

.theme-toggle::before {
  content: "";
  position: absolute;
  inset: 4px auto 4px 4px;
  width: calc(var(--toggle-height) - 8px);
  height: calc(var(--toggle-height) - 8px);
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(251, 191, 36, 0.5), transparent 55%),
    #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.2);
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
  transform: translateX(0);
  z-index: 0;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.22);
}

.theme-toggle:hover::before,
.theme-toggle:focus-visible::before {
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.24);
}

.theme-toggle__icon {
  font-size: 1rem;
  line-height: 1;
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
  opacity: 0.6;
  transition: opacity var(--transition), transform var(--transition);
}

.theme-toggle__icon--sun {
  color: #fbbf24;
  opacity: 1;
  transform: scale(1.05);
}

.theme-toggle__icon--moon {
  color: #c7d2fe;
  transform: scale(0.9);
}

.site-nav__toggle[aria-expanded="true"] .site-nav__bar {
  background: transparent;
}

.site-nav__toggle[aria-expanded="true"] .site-nav__bar::before {
  transform: rotate(45deg);
}

.site-nav__toggle[aria-expanded="true"] .site-nav__bar::after {
  transform: rotate(-45deg);
}

.site-nav__list {
  display: flex;
  gap: 1.5rem;
  font-size: 0.95rem;
}

.site-nav__list a {
  color: rgba(15, 23, 42, 0.82);
  font-weight: 500;
  position: relative;
  padding: 0.25rem 0;
  transition: color var(--transition);
}

.site-nav__list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-image: var(--gradient-ember);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.site-nav__list a:hover::after,
.site-nav__list a:focus::after,
.site-nav__list a[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-header[data-scrolled="true"] .site-nav__list a,
.site-header[data-scrolled="true"] .site-nav__toggle span {
  color: rgba(248, 250, 252, 0.92);
}

.site-header[data-scrolled="true"] .site-nav__toggle .site-nav__bar,
.site-header[data-scrolled="true"] .site-nav__toggle .site-nav__bar::before,
.site-header[data-scrolled="true"] .site-nav__toggle .site-nav__bar::after {
  background-color: rgba(248, 250, 252, 0.92);
}

.hero {
  position: relative;
  padding: clamp(6rem, 12vw, 9rem) 0 clamp(5rem, 10vw, 7rem);
  overflow: hidden;
  color: var(--color-text);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 12% 20%, rgba(201, 169, 109, 0.35), transparent 62%),
    radial-gradient(circle at 88% 16%, rgba(129, 140, 248, 0.28), transparent 60%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.6) 0%, rgba(232, 230, 239, 0.2) 100%);
  z-index: -3;
}

.hero__background {
  position: absolute;
  inset: -10% 0 0;
  z-index: -2;
  overflow: hidden;
}

.orb {
  position: absolute;
  display: block;
  aspect-ratio: 1;
  border-radius: 45% 55% 50% 50%;
  background: var(--gradient-aurora);
  opacity: 0.42;
  filter: blur(0) drop-shadow(0 30px 60px rgba(14, 14, 16, 0.12));
  animation: orbFloat 28s ease-in-out infinite;
  animation-direction: alternate;
}

.orb--one {
  width: clamp(320px, 38vw, 480px);
  top: -12%;
  left: -14%;
  background: radial-gradient(circle at 35% 25%, rgba(201, 169, 109, 0.55), transparent 65%),
    radial-gradient(circle at 80% 80%, rgba(108, 126, 201, 0.4), transparent 70%);
  animation-delay: -4s;
  animation-duration: 30s;
}

.orb--two {
  width: clamp(260px, 32vw, 420px);
  right: -12%;
  bottom: -18%;
  background: radial-gradient(circle at 70% 70%, rgba(108, 126, 201, 0.55), transparent 65%),
    radial-gradient(circle at 20% 20%, rgba(233, 223, 196, 0.42), transparent 60%);
  animation-delay: -10s;
  animation-duration: 34s;
}

.orb--three {
  width: clamp(200px, 24vw, 320px);
  top: 18%;
  right: 26%;
  background: radial-gradient(circle at 40% 40%, rgba(232, 230, 239, 0.58), transparent 70%),
    radial-gradient(circle at 80% 15%, rgba(201, 169, 109, 0.4), transparent 68%);
  animation-delay: -18s;
  animation-duration: 24s;
}

.hero__content {
  display: grid;
  gap: 1.5rem;
  max-width: 720px;
  position: relative;
}

.hero__content > * {
  opacity: 0;
  animation: fadeSlideIn 700ms ease forwards;
}

.hero__content > *:nth-child(1) {
  animation-delay: 80ms;
}

.hero__content > *:nth-child(2) {
  animation-delay: 160ms;
}

.hero__content > *:nth-child(3) {
  animation-delay: 240ms;
}

.hero__content > *:nth-child(4) {
  animation-delay: 320ms;
}

.hero__content > *:nth-child(5) {
  animation-delay: 400ms;
}

.eyebrow {
  letter-spacing: 0.38em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: rgba(14, 14, 16, 0.6);
  font-weight: 600;
}

.subtitle {
  color: var(--color-muted);
  max-width: 620px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__note {
  font-size: 0.9rem;
  color: rgba(14, 14, 16, 0.6);
  padding-left: 0.5rem;
  border-left: 2px solid rgba(201, 169, 109, 0.4);
  margin-top: 0.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.45);
  color: var(--color-text);
  backdrop-filter: blur(6px);
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.12);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

.btn--primary {
  background: var(--gradient-ember);
  background-origin: border-box;
  color: #fff;
  border-color: transparent;
  box-shadow: 0 32px 64px rgba(236, 72, 153, 0.32);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 38px 78px rgba(236, 72, 153, 0.38);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(148, 163, 184, 0.45);
  color: rgba(15, 23, 42, 0.82);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: rgba(15, 23, 42, 0.08);
  color: var(--color-text);
  border-color: rgba(15, 23, 42, 0.18);
  transform: translateY(-2px);
}

.btn--text {
  background: transparent;
  border-color: transparent;
  color: rgba(15, 23, 42, 0.8);
  box-shadow: none;
  padding-left: 0;
  padding-right: 0;
}

.btn--text:hover,
.btn--text:focus-visible {
  color: var(--color-text);
  transform: translateY(-2px);
}

.btn--accent {
  background: linear-gradient(120deg, rgba(56, 189, 248, 0.2), rgba(129, 140, 248, 0.18));
  color: rgba(15, 23, 42, 0.92);
  border-color: rgba(99, 102, 241, 0.32);
  box-shadow: 0 28px 60px rgba(59, 130, 246, 0.22);
}

.btn--accent:hover,
.btn--accent:focus-visible {
  transform: translateY(-2px) scale(1.01);
  border-color: rgba(14, 165, 233, 0.36);
  box-shadow: 0 36px 86px rgba(56, 189, 248, 0.28);
}

.section {
  position: relative;
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
  overflow: hidden;
  z-index: 0;
  --section-gradient: linear-gradient(150deg, rgba(255, 255, 255, 0.9), rgba(232, 230, 239, 0.65));
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--section-gradient);
  z-index: -2;
}

.section::after {
  content: "";
  position: absolute;
  inset: -18% -8% 18% -8%;
  background: radial-gradient(circle at 12% 22%, rgba(201, 169, 109, 0.12), transparent 60%),
    radial-gradient(circle at 90% 12%, rgba(129, 140, 248, 0.12), transparent 55%);
  opacity: 0.35;
  z-index: -1;
  pointer-events: none;
  filter: blur(18px);
}

.section--philosophie {
  text-align: center;
  --section-gradient: linear-gradient(180deg, rgba(232, 230, 239, 0.92), rgba(247, 245, 241, 0.85));
}

.section--philosophie::after {
  background: repeating-linear-gradient(
      0deg,
      rgba(14, 14, 16, 0.08),
      rgba(14, 14, 16, 0.08) 1px,
      transparent 1px,
      transparent 18px
    ),
    radial-gradient(circle at 50% 20%, rgba(201, 169, 109, 0.14), transparent 62%);
  opacity: 0.22;
  filter: none;
}

.section--philosophie .container {
  display: grid;
  gap: 1.5rem;
  justify-items: center;
  max-width: 720px;
  text-align: center;
}

.section--philosophie p {
  color: var(--color-muted);
  max-width: 640px;
}

.section--philosophie .btn {
  margin-top: 0.5rem;
}

.section--metrics {
  text-align: center;
  --section-gradient: linear-gradient(160deg, rgba(247, 245, 241, 0.9), rgba(232, 230, 239, 0.7));
}

.section--metrics .eyebrow {
  margin-bottom: 2rem;
  color: rgba(14, 14, 16, 0.55);
}

.metrics-grid {
  display: grid;
  gap: clamp(1rem, 4vw, 2.5rem);
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  align-items: center;
}

.metrics-grid article {
  padding: 1.5rem 1rem;
}

.metric__value {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  font-variant-numeric: tabular-nums;
  transition: transform var(--transition), color var(--transition);
}

.metric__value[data-animate="metric"] {
  color: rgba(15, 23, 42, 0.92);
}

.metric__label {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.75rem;
  color: rgba(14, 14, 16, 0.55);
  margin-top: 0.35rem;
}

.section--audience {
  --section-gradient: linear-gradient(135deg, rgba(240, 246, 255, 0.95), rgba(230, 223, 255, 0.75));
  position: relative;
  overflow: hidden;
}

.section--audience::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(56, 189, 248, 0.2), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.2), transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.section--audience .container {
  position: relative;
  z-index: 1;
}

.audience-list {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
  font-size: 1.1rem;
  list-style: none;
  padding: 0;
}

.audience-list li {
  padding-left: 1.5rem;
  position: relative;
  color: rgba(14, 14, 16, 0.85);
  opacity: 1;
  transform: translateY(0);
}

.audience-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gradient-ember);
  position: absolute;
  left: 0;
  top: 0.6em;
  transform: translateY(-50%);
}

.audience-list[data-animate="audience"] li {
  opacity: 0;
  transform: translateY(18px);
  animation: listReveal 0.8s ease forwards;
}

.audience-list[data-animate="audience"] li:nth-child(1) {
  animation-delay: 0.1s;
}

.audience-list[data-animate="audience"] li:nth-child(2) {
  animation-delay: 0.2s;
}

.audience-list[data-animate="audience"] li:nth-child(3) {
  animation-delay: 0.3s;
}

.audience-list[data-animate="audience"] li:nth-child(4) {
  animation-delay: 0.4s;
}

.audience-list[data-animate="audience"] li:nth-child(5) {
  animation-delay: 0.5s;
}

@keyframes listReveal {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.expertises-grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin: clamp(2rem, 4vw, 3rem) 0;
}

.expertises-grid article {
  position: relative;
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(14, 14, 16, 0.08);
  box-shadow: 0 26px 60px rgba(14, 14, 16, 0.12);
  padding: 2rem;
  display: grid;
  gap: 1rem;
  text-align: left;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  z-index: 0;
}

.expertises-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--card-gradient, linear-gradient(150deg, rgba(201, 169, 109, 0.28), rgba(108, 126, 201, 0.2)));
  opacity: 0.55;
  pointer-events: none;
  transition: opacity var(--transition);
  z-index: -1;
}

.expertises-grid article:nth-child(1) {
  --card-gradient: linear-gradient(150deg, rgba(201, 169, 109, 0.35), rgba(232, 230, 239, 0.2));
}

.expertises-grid article:nth-child(2) {
  --card-gradient: linear-gradient(150deg, rgba(108, 126, 201, 0.32), rgba(201, 169, 109, 0.2));
}

.expertises-grid article:nth-child(3) {
  --card-gradient: linear-gradient(150deg, rgba(232, 230, 239, 0.4), rgba(108, 126, 201, 0.24));
}

.expertises-grid article:hover,
.expertises-grid article:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 34px 90px rgba(14, 14, 16, 0.18);
}

.expertises-grid article:hover::before,
.expertises-grid article:focus-within::before {
  opacity: 0.75;
}

.expertises-grid .eyebrow {
  letter-spacing: 0.25em;
  color: rgba(14, 14, 16, 0.6);
}

.expertises-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
  color: var(--color-muted);
}

.expertises-grid li::before {
  content: "→";
  margin-right: 0.5rem;
  color: rgba(14, 14, 16, 0.45);
}

.method-steps {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: clamp(2rem, 4vw, 3rem);
  position: relative;
  perspective: 1400px;
}

.section--method {
  --section-gradient: linear-gradient(140deg, rgba(249, 250, 251, 0.9), rgba(224, 231, 255, 0.7));
  overflow: hidden;
  position: relative;
}

.section--method::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 80%, rgba(14, 165, 233, 0.18), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(249, 115, 22, 0.18), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.section--method .container {
  position: relative;
  z-index: 1;
}

.method-steps::before {
  content: "";
  position: absolute;
  top: 42px;
  left: clamp(1.5rem, 4vw, 2.5rem);
  right: clamp(1.5rem, 4vw, 2.5rem);
  height: 2px;
  background: linear-gradient(90deg, rgba(201, 169, 109, 0.35), rgba(108, 126, 201, 0.35));
  z-index: 0;
}

.method-steps article {
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(14, 14, 16, 0.08);
  padding: 2.2rem 2rem;
  position: relative;
  box-shadow: 0 26px 60px rgba(14, 14, 16, 0.12);
  --method-delay: 0ms;
  --method-duration: 900ms;
  --method-easing: cubic-bezier(0.18, 0.89, 0.32, 1.28);
}

.method-steps article.is-animatable {
  opacity: 0;
  transform: translateY(30px) scale(0.96);
  filter: blur(8px);
}

.method-steps article.is-animatable.is-visible {
  animation: var(--method-animation, method-step-pop) var(--method-duration) var(--method-easing)
    var(--method-delay) forwards;
  filter: none;
}

.method-steps article[data-variant='pendulum'] {
  --method-animation: method-step-pendulum;
  transform-origin: top center;
}

.method-steps article[data-variant='accordion'] {
  --method-animation: method-step-accordion;
  transform-origin: top left;
}

.method-steps article[data-variant='bubble'] {
  --method-animation: method-step-bubble;
  transform-origin: center;
}

.method-steps article[data-variant='flip'] {
  --method-animation: method-step-flip;
  transform-style: preserve-3d;
}

.method-steps article::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 2rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 3px solid rgba(201, 169, 109, 0.55);
  background: #fff;
}

.method-steps h3 {
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.method-steps p {
  color: var(--color-muted);
  margin-top: 0.75rem;
}

@keyframes method-step-pendulum {
  0% {
    opacity: 0;
    transform: rotate(-10deg) translateY(-40px);
    filter: blur(10px);
  }
  55% {
    opacity: 1;
    transform: rotate(6deg) translateY(8px);
  }
  75% {
    transform: rotate(-3deg) translateY(-3px);
  }
  100% {
    opacity: 1;
    transform: rotate(0deg) translateY(0);
  }
}

@keyframes method-step-pop {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.92);
    filter: blur(10px);
  }
  70% {
    opacity: 1;
    transform: translateY(-6px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes method-step-accordion {
  0% {
    opacity: 0;
    transform: scaleY(0.2) rotateX(-35deg);
    filter: blur(12px);
  }
  65% {
    opacity: 1;
    transform: scaleY(1.05) rotateX(6deg);
  }
  100% {
    opacity: 1;
    transform: scaleY(1) rotateX(0);
  }
}

@keyframes method-step-bubble {
  0% {
    opacity: 0;
    transform: translateY(60px) scale(0.7);
    filter: blur(12px);
  }
  70% {
    opacity: 1;
    transform: translateY(-10px) scale(1.07);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes method-step-flip {
  0% {
    opacity: 0;
    transform: rotateY(-90deg) translateZ(0);
    filter: blur(10px);
  }
  65% {
    opacity: 1;
    transform: rotateY(12deg);
  }
  100% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .method-steps article.is-animatable {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .method-steps article.is-animatable.is-visible {
    animation: none;
  }
}

.project-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  color: #fff;
  background: var(--gradient-ember);
  text-decoration: none;
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.12);
  border: none;
  transition: transform var(--transition), box-shadow var(--transition);
}

.project-link:hover,
.project-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 32px 64px rgba(236, 72, 153, 0.32);
}

.testimonials {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: clamp(2rem, 4vw, 3rem);
}

.testimonials article {
  background: rgba(14, 14, 16, 0.8);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
}

.testimonials p {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  line-height: 1.6;
}

.testimonials cite {
  display: block;
  margin-top: 1.5rem;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247, 245, 241, 0.72);
}

.reasons-grid {
  display: grid;
  gap: clamp(1rem, 3vw, 1.5rem);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 2.5rem;
}

.reason-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(14, 14, 16, 0.08);
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 26px 48px rgba(14, 14, 16, 0.08);
  text-align: left;
  display: grid;
  gap: 0.75rem;
}

.reason-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(59, 130, 246, 0.08);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
}

.reason-card h3 {
  font-size: 1.1rem;
}

.reason-card p {
  color: var(--color-muted);
  margin: 0;
}

.offer-card {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(14, 14, 16, 0.08);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 28px 64px rgba(14, 14, 16, 0.15);
  display: grid;
  gap: 1rem;
}

.offer-card__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.78rem;
  color: rgba(15, 23, 42, 0.65);
}

.offer-card__subtitle {
  color: var(--color-muted);
}

.offer-card__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
  color: rgba(15, 23, 42, 0.75);
}

.offer-card__features li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.7);
  display: inline-block;
  margin-right: 0.5rem;
  vertical-align: middle;
}

.offer-card__price {
  font-size: 1.35rem;
  font-weight: 600;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: baseline;
}

.offer-card__price span {
  font-size: 0.9rem;
  color: var(--color-muted);
}

.offer-card--refonte {
  margin-bottom: clamp(2rem, 4vw, 3rem);
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.15), rgba(99, 102, 241, 0.15), rgba(255, 255, 255, 0.9));
  border-color: rgba(59, 130, 246, 0.35);
}

.offers-plans {
  display: grid;
  gap: clamp(1rem, 3vw, 1.5rem);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.offer-card--highlight {
  border-color: rgba(236, 72, 153, 0.5);
  box-shadow: 0 38px 90px rgba(236, 72, 153, 0.18);
}

.offer-card[data-plan="expansion"] {
  transform: translateY(-8px);
}

.offer-card .badge {
  font-size: 0.8rem;
  background: rgba(236, 72, 153, 0.12);
  color: rgba(236, 72, 153, 1);
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  margin-left: 0.35rem;
}

.offer-card__features li {
  padding-left: 0.2rem;
}

.offers-plans .btn {
  justify-self: start;
}

.section--services {
  text-align: center;
  --section-gradient: linear-gradient(160deg, rgba(255, 255, 255, 0.88), rgba(232, 230, 239, 0.6));
}

.section--services > .container > p {
  max-width: 640px;
  margin: 0.75rem auto 2.5rem;
  color: var(--color-muted);
}

.services-grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-bottom: 2.5rem;
}

.services-grid article {
  position: relative;
  padding: 2.2rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(14, 14, 16, 0.08);
  box-shadow: 0 26px 60px rgba(14, 14, 16, 0.12);
  display: grid;
  gap: 1rem;
  text-align: left;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  z-index: 0;
}

.services-grid article::before {
  content: "";
  position: absolute;
  inset: -40% -10% 30% -10%;
  background: var(--card-gradient, linear-gradient(150deg, rgba(201, 169, 109, 0.28), rgba(108, 126, 201, 0.2)));
  opacity: 0.55;
  pointer-events: none;
  transition: opacity var(--transition);
  z-index: -1;
}

.services-grid article:nth-child(1) {
  --card-gradient: linear-gradient(150deg, rgba(201, 169, 109, 0.35), rgba(232, 230, 239, 0.2));
}

.services-grid article:nth-child(2) {
  --card-gradient: linear-gradient(150deg, rgba(108, 126, 201, 0.32), rgba(201, 169, 109, 0.2));
}

.services-grid article:nth-child(3) {
  --card-gradient: linear-gradient(150deg, rgba(232, 230, 239, 0.4), rgba(108, 126, 201, 0.24));
}

.services-grid article:hover,
.services-grid article:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 34px 90px rgba(14, 14, 16, 0.18);
}

.services-grid article:hover::before,
.services-grid article:focus-within::before {
  opacity: 0.75;
}

.services-grid h3 {
  font-size: 1.25rem;
}

.services-grid p {
  color: var(--color-muted);
}

.section--method {
  --section-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(232, 230, 239, 0.6));
}

.steps-grid {
  position: relative;
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: clamp(2rem, 4vw, 3rem);
}

.steps-grid::before {
  content: "";
  position: absolute;
  top: 50%;
  left: clamp(1.5rem, 4vw, 3rem);
  right: clamp(1.5rem, 4vw, 3rem);
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 169, 109, 0.35), rgba(108, 126, 201, 0.35));
  transform: translateY(-50%);
  pointer-events: none;
  opacity: 0.3;
}

.steps-grid article {
  position: relative;
  background: rgba(255, 255, 255, 0.86);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(14, 14, 16, 0.08);
  padding: 2.25rem 2rem;
  box-shadow: 0 24px 60px rgba(14, 14, 16, 0.12);
  display: grid;
  gap: 0.75rem;
  z-index: 1;
}

.steps-grid article::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid rgba(201, 169, 109, 0.6);
  transform: translateX(-50%);
  box-shadow: 0 12px 24px rgba(14, 14, 16, 0.12);
}

.steps-grid h3 {
  font-size: 1.1rem;
}

.steps-grid p {
  color: var(--color-muted);
}


.section-heading {
  display: grid;
  grid-template-columns: minmax(220px, 2fr) auto;
  gap: 1.5rem;
  align-items: center;
  text-align: left;
  margin-bottom: clamp(1.5rem, 4vw, 2.75rem);
}

.section-heading__eyebrow {
  grid-column: 1 / -1;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(14, 14, 16, 0.65);
  font-weight: 600;
}

.section-heading p {
  color: var(--color-muted);
  max-width: 640px;
}

.section-heading .btn {
  justify-self: end;
}

@media (max-width: 768px) {
  .section-heading {
    grid-template-columns: 1fr;
  }

  .section-heading .btn {
    justify-self: start;
  }
}

.section--portfolio {
  position: relative;
  text-align: left;
  --section-gradient: linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(243, 241, 255, 0.8));
}

.section--portfolio::after {
  content: "";
  position: absolute;
  inset: 12% 8% auto;
  height: 280px;
  background: radial-gradient(circle at 30% 40%, rgba(201, 169, 109, 0.18), transparent 60%),
    radial-gradient(circle at 70% 60%, rgba(99, 102, 241, 0.22), transparent 70%);
  opacity: 0.5;
  filter: blur(30px);
  pointer-events: none;
}

.section--portfolio > .container {
  position: relative;
}


.portfolio-grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin: clamp(2rem, 4vw, 3rem) 0;
}

.portfolio-card {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(14, 14, 16, 0.08);
  display: flex;
  flex-direction: column;
  box-shadow: 0 36px 96px rgba(14, 14, 16, 0.12);
  text-align: left;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.portfolio-card:hover,
.portfolio-card:focus-within {
  transform: translateY(-10px);
  box-shadow: 0 40px 120px rgba(14, 14, 16, 0.18);
}

.portfolio-card__preview {
  margin: 0;
  border: 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  overflow: hidden;
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.04), rgba(148, 163, 184, 0.15));
  box-shadow: inset 0 0 1px rgba(255, 255, 255, 0.3);
}

.portfolio-card__preview picture,
.portfolio-card__preview img {
  width: 100%;
  height: 100%;
  display: block;
}

.portfolio-card__preview img {
  object-fit: cover;
}

.portfolio-card__preview--sun {
  background: linear-gradient(140deg, rgba(254, 249, 195, 0.95), rgba(248, 196, 113, 0.8));
}

.portfolio-card__preview--sea {
  background: linear-gradient(140deg, rgba(186, 230, 253, 0.95), rgba(125, 211, 252, 0.9));
}

.portfolio-card__preview--rose {
  background: linear-gradient(140deg, rgba(252, 231, 243, 0.95), rgba(244, 114, 182, 0.75));
}

@media (max-width: 640px) {
  .portfolio-card__preview {
    min-height: 180px;
  }
}

.portfolio-card__body {
  display: grid;
  gap: 0.75rem;
  padding: clamp(1.75rem, 3vw, 2.5rem);
}

.portfolio-card__eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(14, 14, 16, 0.6);
}

.portfolio-card__summary {
  color: var(--color-muted);
  margin: 0;
}

.portfolio-card__body h3 {
  font-size: 1.3rem;
  margin: 0;
}


.portfolio-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-xl);
  padding: 1.75rem 2rem;
  border: 1px solid rgba(14, 14, 16, 0.08);
  box-shadow: 0 18px 60px rgba(14, 14, 16, 0.08);
}

.portfolio-cta p {
  margin: 0;
  font-size: 1.05rem;
  color: rgba(14, 14, 16, 0.75);
}

@media (max-width: 640px) {
  .portfolio-cta {
    flex-direction: column;
    text-align: center;
  }
}

.section--testimonial {
  text-align: center;
  color: rgba(247, 245, 241, 0.92);
  --section-gradient: linear-gradient(160deg, #171722, #0e0e10);
}

.section--testimonial::after {
  background: radial-gradient(circle at 20% 20%, rgba(201, 169, 109, 0.18), transparent 60%),
    radial-gradient(circle at 80% 60%, rgba(108, 126, 201, 0.25), transparent 70%);
  opacity: 0.28;
  filter: blur(24px);
}

.section--testimonial h2 {
  color: inherit;
}

.section--testimonial blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  line-height: 1.65;
  margin: clamp(2rem, 4vw, 3rem) auto 0;
  max-width: 720px;
  color: rgba(247, 245, 241, 0.92);
  position: relative;
  padding: 0 1.5rem;
}

.section--testimonial blockquote::before {
  content: "";
  position: absolute;
  top: -1.25rem;
  left: 50%;
  width: 64px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(201, 169, 109, 0.6), rgba(108, 126, 201, 0.4));
  transform: translateX(-50%);
}

.section--testimonial cite {
  display: block;
  margin-top: 1.75rem;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247, 245, 241, 0.7);
}

.section--cta {
  text-align: center;
  color: #fff;
  --section-gradient: linear-gradient(135deg, rgba(201, 169, 109, 0.92), rgba(108, 126, 201, 0.85));
}

.section--cta::after {
  background: radial-gradient(circle at 20% 20%, rgba(247, 245, 241, 0.25), transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.2), transparent 65%);
  opacity: 0.4;
  filter: blur(28px);
}

.section--cta h2 {
  color: inherit;
  max-width: 680px;
  margin: 0 auto;
}

.section--cta p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 520px;
  margin: 1.2rem auto 2rem;
}

.section--cta .btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.section--cta .btn--ghost:hover,
.section--cta .btn--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.section--mantra {
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(1.8rem, 4vw, 2.5rem);
  --section-gradient: linear-gradient(150deg, rgba(255, 247, 237, 0.9), rgba(255, 255, 255, 0.82), rgba(244, 247, 255, 0.65));
}

.section--balanced {
  --section-gradient: linear-gradient(145deg, rgba(14, 165, 233, 0.2), rgba(129, 140, 248, 0.2), rgba(255, 255, 255, 0.8));
}

.section--accent {
  --section-gradient: linear-gradient(150deg, rgba(236, 72, 153, 0.22), rgba(244, 114, 182, 0.16), rgba(255, 255, 255, 0.82));
}

.section--approach {
  --section-gradient: linear-gradient(150deg, rgba(56, 189, 248, 0.14), rgba(129, 140, 248, 0.14), rgba(255, 255, 255, 0.9));
}

.section--offers {
  --section-gradient: linear-gradient(150deg, rgba(59, 130, 246, 0.22), rgba(129, 140, 248, 0.2), rgba(255, 255, 255, 0.85));
}

.section--comparison {
  --section-gradient: linear-gradient(155deg, rgba(14, 116, 144, 0.16), rgba(125, 211, 252, 0.2), rgba(255, 255, 255, 0.88));
}

.section__intro {
  display: grid;
  gap: 1rem;
  max-width: 700px;
  margin-bottom: 2.5rem;
}

.section__intro--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section__intro--compact {
  max-width: 600px;
}

.section__lead {
  font-size: clamp(1.35rem, 2.3vw, 1.8rem);
  font-weight: 600;
}

.section__subtitle {
  color: var(--color-muted);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
}

.section__split {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.section__split--testimonial {
  gap: clamp(2rem, 6vw, 4rem);
}

.section__split--cta {
  align-items: center;
  gap: clamp(2rem, 5vw, 3rem);
}

.section__split > * {
  background: transparent;
}

.section__card {
  position: relative;
  background: rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 1.1rem;
  border: 1px solid rgba(148, 163, 184, 0.2);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.section__card::before {
  content: "";
  position: absolute;
  inset: -30% -20% 50% -20%;
  background: radial-gradient(circle at 20% 20%, rgba(244, 114, 182, 0.22), transparent 60%);
  opacity: 0.55;
  pointer-events: none;
}

.section__card--quote blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--color-text);
}

.section__card--quote cite {
  display: block;
  margin-top: 1rem;
  font-family: var(--font-sans);
  font-style: normal;
  color: var(--color-muted);
}

.section__actions {
  margin-top: 2rem;
}

.values {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin: 1.5rem 0;
}

.values li {
  padding: 0.55rem 1.3rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(14, 14, 16, 0.72);
  border: 1px solid rgba(14, 14, 16, 0.1);
  backdrop-filter: blur(6px);
}

.impact-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.impact-metrics__item {
  background: rgba(255, 255, 255, 0.78);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  display: grid;
  gap: 0.75rem;
}

.impact-metrics__item h3 {
  font-size: 1.1rem;
  color: rgba(15, 23, 42, 0.86);
}

.impact-metrics__item p {
  color: var(--color-muted);
}

.approach {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.approach__step {
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: grid;
  gap: 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.approach__step::after {
  content: "";
  position: absolute;
  inset: -20% -10% 60% -10%;
  background: radial-gradient(circle at 25% 25%, rgba(244, 114, 182, 0.25), transparent 65%);
  pointer-events: none;
}

.approach__index {
  font-size: 0.85rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(99, 102, 241, 0.75);
  font-weight: 600;
}

.approach__step h3 {
  font-size: 1.25rem;
}

.approach__step p:last-of-type {
  color: var(--color-muted);
}

.testimonial__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0;
  margin-top: 1.5rem;
}

.testimonial__tags li {
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.24);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.7);
}

.testimonial {
  background: rgba(15, 23, 42, 0.9);
  color: rgba(248, 250, 252, 0.95);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  display: grid;
  gap: 1rem;
  box-shadow: var(--shadow-floating);
  position: relative;
  overflow: hidden;
}

.testimonial::before {
  content: "";
  position: absolute;
  inset: -40% -30% 40% -30%;
  background: radial-gradient(circle at 20% 20%, rgba(244, 114, 182, 0.35), transparent 65%);
  opacity: 0.6;
  pointer-events: none;
}

.testimonial blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.6;
  position: relative;
}

.testimonial__author {
  font-weight: 600;
}

.testimonial__role {
  color: rgba(226, 232, 240, 0.75);
  font-size: 0.9rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

.cta-actions .btn {
  min-width: 200px;
  text-align: center;
}

.section--accent .values + .btn {
  margin-top: 1.5rem;
}

.values--stacked {
  flex-direction: column;
  gap: 1rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid--services {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid--portfolio {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid--columns {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.offres {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

.offre {
  background: rgba(255, 255, 255, 0.78);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 1.4rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  z-index: 0;
  border: 1px solid rgba(148, 163, 184, 0.24);
  backdrop-filter: blur(22px);
}

.offre::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(244, 114, 182, 0.24), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.24), transparent 60%);
  opacity: 0.25;
  transition: opacity var(--transition);
  z-index: -1;
}

.offre:hover,
.offre:focus-within {
  transform: translateY(-8px);
  box-shadow: var(--shadow-floating);
}

.offre:hover::before,
.offre:focus-within::before {
  opacity: 0.6;
}

.offre__title {
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
}

.offre__subtitle {
  color: var(--color-muted);
}

.offre__price {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 600;
}

.offre__price span {
  font-size: 1rem;
  font-weight: 400;
  margin-left: 0.35rem;
}

.offre__commitment {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--color-muted);
}

.offre__list {
  display: grid;
  gap: 0.5rem;
  padding-left: 1.2rem;
  list-style: disc;
  color: var(--color-muted);
}

.offre__list li {
  margin-left: 0.5rem;
}

.offre--featured {
  background: linear-gradient(150deg, rgba(244, 114, 182, 0.32), rgba(59, 130, 246, 0.24), rgba(255, 255, 255, 0.88));
  border: 1px solid rgba(244, 114, 182, 0.32);
}

.offre--featured .offre__price {
  color: var(--color-text);
}

.offre--featured .btn {
  justify-self: flex-start;
}

.offre a.btn {
  margin-top: auto;
  justify-self: flex-start;
}

.card,
.service-card,
.project-card {
  background: rgba(255, 255, 255, 0.78);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 1rem;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(148, 163, 184, 0.2);
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}

.card::before,
.service-card::before,
.project-card::before {
  content: "";
  position: absolute;
  inset: -40% -30% 60% -30%;
  background: radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.22), transparent 65%);
  opacity: 0.5;
  pointer-events: none;
}

.card:hover,
.service-card:hover,
.project-card:hover,
.card:focus-within,
.service-card:focus-within,
.project-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 32px 80px rgba(15, 23, 42, 0.16);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.22), rgba(244, 114, 182, 0.22));
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(15, 23, 42, 0.92);
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.22);
}

.service-card__points {
  display: grid;
  gap: 0.5rem;
  padding-left: 1.2rem;
  list-style: disc;
  color: var(--color-muted);
}

.service-card__points li {
  margin-left: 0.5rem;
}

.service-card--animated .service-card__points li {
  opacity: 0;
  transform: translateX(-14px);
}

.service-card--animated.is-visible .service-card__points li {
  animation: servicePointReveal 0.5s ease forwards;
  animation-delay: calc(var(--point-index, 0) * 0.12s);
}

@media (prefers-reduced-motion: reduce) {
  .service-card--animated .service-card__points li,
  .service-card--animated.is-visible .service-card__points li {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

@keyframes servicePointReveal {
  from {
    opacity: 0;
    transform: translateX(-14px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.project-card {
  overflow: hidden;
}

.project-card__cover {
  border-radius: var(--radius-sm);
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.16), rgba(244, 114, 182, 0.14));
  display: grid;
  place-items: center;
  color: rgba(15, 23, 42, 0.68);
  font-weight: 600;
  letter-spacing: 0.05em;
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.18);
}

.project-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: var(--color-muted);
  font-size: 0.85rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(59, 130, 246, 0.18), rgba(244, 114, 182, 0.14));
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.78);
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.2);
}

.filter-bar {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.filter-bar__button {
  border: 1px solid rgba(148, 163, 184, 0.32);
  border-radius: 999px;
  padding: 0.5rem 1.25rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.7);
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
  backdrop-filter: blur(8px);
}

.filter-bar__button:hover,
.filter-bar__button:focus-visible {
  border-color: rgba(99, 102, 241, 0.4);
  box-shadow: 0 12px 26px rgba(59, 130, 246, 0.18);
}

.filter-bar__button.is-active {
  background-image: var(--gradient-ember);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 18px 36px rgba(236, 72, 153, 0.28);
}


.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 11vw, 6.5rem) 0 clamp(2.2rem, 6vw, 3.5rem);
  color: rgba(15, 23, 42, 0.94);
}

.page-hero__background {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.page-hero__background::before {
  content: "";
  position: absolute;
  inset: -30% -28% -15% -28%;
  background-image: var(--gradient-aurora);
  filter: blur(52px);
  opacity: 0.38;
  animation: heroGradientPulse 28s ease-in-out infinite;
}

.page-hero__background::after {
  content: "";
  position: absolute;
  inset: -35% -20% 5% -20%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.08) 0%, rgba(148, 163, 184, 0.12) 40%, transparent 75%);
  mix-blend-mode: screen;
  transform: perspective(1200px) rotateX(62deg) translateY(6%);
  opacity: 0.28;
  animation: heroGridDrift 32s linear infinite;
}

.page-hero__orb {
  position: absolute;
  aspect-ratio: 1;
  border-radius: 50%;
  mix-blend-mode: screen;
  filter: drop-shadow(0 28px 60px rgba(14, 116, 144, 0.24));
  transform-style: preserve-3d;
}

.page-hero__orb--one {
  width: clamp(200px, 32vw, 340px);
  top: -18%;
  left: -10%;
  background: radial-gradient(circle at 30% 30%, rgba(244, 114, 182, 0.7), rgba(236, 72, 153, 0.32) 55%, transparent 75%);
  animation: heroOrbThree 24s ease-in-out infinite;
}

.page-hero__orb--two {
  width: clamp(180px, 28vw, 300px);
  bottom: -12%;
  right: -6%;
  background: radial-gradient(circle at 70% 70%, rgba(59, 130, 246, 0.7), rgba(37, 99, 235, 0.32) 55%, transparent 72%);
  animation: heroOrbTwo 26s ease-in-out infinite reverse;
}

.page-hero p {
  max-width: 680px;
  color: rgba(30, 41, 59, 0.72);
}

.page-hero__content {
  display: grid;
  gap: clamp(1.25rem, 4vw, 2.1rem);
  justify-items: center;
  text-align: center;
}

.page-hero__eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(17, 24, 39, 0.55);
}

.page-hero__lead {
  margin: 0;
  font-size: clamp(1.1rem, 1.85vw, 1.35rem);
  line-height: 1.75;
  color: rgba(30, 41, 59, 0.76);
}

.page-hero__meta {
  width: min(100%, 880px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(1rem, 3vw, 1.6rem);
}

.page-hero__meta-item {
  position: relative;
  padding: clamp(1.35rem, 3vw, 1.75rem);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(201, 169, 109, 0.22);
  backdrop-filter: blur(18px);
  text-align: left;
  display: grid;
  gap: 0.4rem;
}

.page-hero__meta-item::after {
  content: "";
  position: absolute;
  inset: -40% -20% 40% -20%;
  background: radial-gradient(circle at 20% 20%, rgba(244, 114, 182, 0.18), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.page-hero__meta-item:hover::after,
.page-hero__meta-item:focus-within::after {
  opacity: 1;
}

.page-hero__meta-title {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.page-hero__meta-caption {
  color: rgba(30, 41, 59, 0.65);
  font-size: 0.96rem;
  line-height: 1.6;
}

.page-hero__quote {
  margin-top: 1.5rem;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--color-text);
}

.page--philosophy {
  background-color: var(--color-background);
  background-image:
    radial-gradient(90% 120% at 12% 12%, rgba(236, 72, 153, 0.18), transparent 65%),
    radial-gradient(80% 110% at 85% 0%, rgba(56, 189, 248, 0.2), transparent 68%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(245, 243, 255, 0.92));
  color: var(--color-text);
}

.page--philosophy main {
  background: transparent;
}

.page--philosophy p,
.page--philosophy li,
.page--philosophy blockquote,
.page--philosophy figcaption {
  font-family: var(--font-sans);
  color: rgba(15, 23, 42, 0.78);
}

.page--philosophy h1,
.page--philosophy h2,
.page--philosophy h3 {
  font-family: var(--font-sans);
  letter-spacing: 0.015em;
}

.page-hero--dolmen {
  position: relative;
  background:
    radial-gradient(120% 140% at 10% -10%, rgba(148, 163, 184, 0.16), transparent 70%),
    radial-gradient(110% 120% at 92% 4%, rgba(100, 116, 139, 0.14), transparent 68%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(229, 231, 235, 0.9));
  color: rgba(15, 23, 42, 0.92);
  text-align: center;
  padding: clamp(5rem, 12vw, 8rem) 0 clamp(3rem, 8vw, 6.5rem);
  overflow: hidden;
}

.page-hero--dolmen::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(148, 163, 184, 0.28), transparent 72%);
  mix-blend-mode: soft-light;
  animation: dolmenDawn 14s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

.page-hero--dolmen .page-hero__background::before,
.page-hero--dolmen .page-hero__background::after,
.page-hero--dolmen .page-hero__orb {
  display: none;
}

.page-hero--dolmen .page-hero__background {
  z-index: -1;
  opacity: 1;
}

.page-hero--dolmen .page-hero__content {
  position: relative;
  display: grid;
  gap: 1.75rem;
  justify-items: center;
  z-index: 1;
}

.page-hero--dolmen .page-hero__eyebrow {
  color: rgba(71, 85, 105, 0.76);
}

.page-hero--dolmen .page-hero__meta-item {
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(148, 163, 184, 0.24);
  box-shadow: 0 26px 65px rgba(15, 23, 42, 0.1);
}

.page-hero--dolmen .page-hero__meta-item::after {
  background: radial-gradient(circle at 20% 20%, rgba(14, 165, 233, 0.18), transparent 62%);
}

.page-hero--dolmen h1 {
  max-width: 18ch;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.page-hero--dolmen p {
  max-width: 60ch;
  margin: 0;
  font-size: clamp(1.1rem, 1.8vw, 1.25rem);
  line-height: 1.7;
  color: rgba(71, 85, 105, 0.76);
}

.dolmen-structure {
  position: absolute;
  left: 50%;
  bottom: clamp(-1.75rem, -6vw, -0.75rem);
  width: clamp(320px, 50vw, 540px);
  height: clamp(220px, 36vw, 320px);
  transform-origin: center bottom;
  pointer-events: none;
}

.dolmen-structure__stone {
  position: absolute;
  display: block;
  border-radius: 26px;
  background:
    linear-gradient(165deg, rgba(203, 213, 225, 0.9), rgba(148, 163, 184, 0.78)),
    linear-gradient(25deg, rgba(255, 255, 255, 0.28), transparent 70%);
  box-shadow: 0 28px 55px rgba(15, 23, 42, 0.15);
  opacity: 0;
  --dolmen-shift-x: 0;
  transform: translateX(var(--dolmen-shift-x)) translateY(-160%);
  animation: dolmenStoneDrop 1.25s cubic-bezier(0.18, 0.88, 0.24, 1) var(--delay, 0s) forwards;
}

.dolmen-structure__stone::after {
  content: "";
  position: absolute;
  inset: 16% 18% 18% 20%;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.24), transparent 78%);
  opacity: 0.75;
  mix-blend-mode: screen;
}

.dolmen-structure__stone--ground,
.dolmen-structure__stone--lintel,
.dolmen-structure__stone--center {
  left: 50%;
  --dolmen-shift-x: -50%;
}

.dolmen-structure__stone--ground {
  --delay: 1.05s;
  bottom: 0;
  width: clamp(320px, 50vw, 560px);
  height: clamp(58px, 9vw, 90px);
  border-radius: 999px;
  clip-path: polygon(2% 58%, 12% 28%, 28% 14%, 50% 6%, 74% 16%, 90% 32%, 98% 60%, 100% 100%, 0 100%);
  background:
    linear-gradient(180deg, rgba(226, 232, 240, 0.9), rgba(148, 163, 184, 0.78) 55%, rgba(100, 116, 139, 0.72));
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.14);
}

.dolmen-structure__stone--ground::after {
  display: none;
}

.dolmen-structure__stone--left {
  --delay: 0.85s;
  left: clamp(26px, 7vw, 70px);
  bottom: clamp(42px, 11vw, 86px);
  width: clamp(82px, 12vw, 128px);
  height: clamp(160px, 27vw, 244px);
  clip-path: polygon(18% 2%, 82% 0, 96% 24%, 88% 98%, 24% 100%, 6% 18%);
  background:
    linear-gradient(170deg, rgba(226, 232, 240, 0.94), rgba(148, 163, 184, 0.82)),
    linear-gradient(20deg, rgba(255, 255, 255, 0.26), transparent 75%);
}

.dolmen-structure__stone--center {
  --delay: 0.45s;
  bottom: clamp(48px, 12vw, 96px);
  width: clamp(88px, 13vw, 140px);
  height: clamp(178px, 28vw, 260px);
  clip-path: polygon(24% 0, 80% 2%, 100% 24%, 86% 100%, 16% 100%, 0 20%);
  background:
    linear-gradient(175deg, rgba(226, 232, 240, 0.94), rgba(148, 163, 184, 0.84)),
    linear-gradient(45deg, rgba(255, 255, 255, 0.24), transparent 70%);
  z-index: 2;
}

.dolmen-structure__stone--right {
  --delay: 0.7s;
  right: clamp(24px, 6vw, 68px);
  bottom: clamp(46px, 12vw, 92px);
  width: clamp(78px, 11vw, 124px);
  height: clamp(150px, 25vw, 232px);
  clip-path: polygon(12% 6%, 78% 0, 94% 20%, 90% 100%, 18% 100%, 0 30%);
  background:
    linear-gradient(170deg, rgba(226, 232, 240, 0.92), rgba(148, 163, 184, 0.8)),
    linear-gradient(12deg, rgba(255, 255, 255, 0.24), transparent 70%);
  z-index: 1;
}

.dolmen-structure__stone--lintel {
  --delay: 0s;
  bottom: clamp(188px, 30vw, 252px);
  width: clamp(300px, 44vw, 480px);
  height: clamp(70px, 10vw, 110px);
  border-radius: 42px;
  clip-path: polygon(2% 42%, 10% 12%, 34% 0, 62% 6%, 88% 18%, 98% 40%, 92% 72%, 76% 94%, 18% 90%);
  background:
    linear-gradient(160deg, rgba(226, 232, 240, 0.9), rgba(148, 163, 184, 0.82) 60%, rgba(100, 116, 139, 0.68)),
    radial-gradient(circle at 18% 40%, rgba(255, 255, 255, 0.3), transparent 60%),
    radial-gradient(circle at 72% 26%, rgba(255, 255, 255, 0.22), transparent 66%);
  box-shadow: 0 30px 60px rgba(30, 41, 59, 0.18);
  z-index: 3;
}

.dolmen-structure__stone--lintel::after {
  inset: 18% 20% 26% 18%;
  border-radius: 38px;
}

.section--stones {
  --section-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(236, 72, 153, 0.12), rgba(99, 102, 241, 0.14));
}

.section--stones::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(245, 243, 255, 0.78)),
    radial-gradient(circle at 18% 20%, rgba(244, 114, 182, 0.25), transparent 65%),
    radial-gradient(circle at 82% 32%, rgba(56, 189, 248, 0.22), transparent 70%),
    linear-gradient(135deg, rgba(99, 102, 241, 0.12), rgba(236, 72, 153, 0.12));
  background-blend-mode: soft-light, normal, normal, screen;
}

.section--stones::after {
  display: none;
}

.section--stones h2 {
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1.5rem, 4vw, 2.5rem);
  margin-top: clamp(2.5rem, 6vw, 3.5rem);
}

.stone {
  background: rgba(255, 255, 255, 0.85);
  padding: clamp(2rem, 5vw, 2.75rem);
  border-radius: 1.75rem;
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(32px);
  animation: stoneReveal 0.8s ease forwards;
  display: grid;
  gap: 1.25rem;
}

.stone::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(236, 72, 153, 0.16), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stone:nth-child(2) {
  animation-delay: 0.12s;
}

.stone:nth-child(3) {
  animation-delay: 0.24s;
}

.stone h3 {
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stone p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
}

.stone__icon {
  width: 3rem;
  aspect-ratio: 1;
  border-radius: 0.85rem;
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: rgba(17, 24, 39, 0.72);
  background: var(--gradient-ember);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.stone__body {
  display: grid;
  gap: 1rem;
}

.stone__list {
  display: grid;
  gap: 0.65rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.stone__list li {
  position: relative;
  padding-left: 1.5rem;
  color: rgba(30, 41, 59, 0.68);
  font-size: 0.95rem;
}

.stone__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background-image: var(--gradient-ember);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.9);
}

.stone:hover,
.stone:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 32px 85px rgba(0, 0, 0, 0.1);
}

.stone:hover::before,
.stone:focus-within::before {
  opacity: 1;
}

.section--manifest {
  --section-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(99, 102, 241, 0.12), rgba(236, 72, 153, 0.1));
  text-align: center;
}

.section--manifest::after {
  display: none;
}

.section--manifest blockquote {
  margin: 0 auto clamp(2.5rem, 6vw, 3.2rem);
  max-width: 680px;
  padding: 0 0 clamp(1.8rem, 5vw, 2.4rem);
  font-size: clamp(1.35rem, 2.4vw, 1.6rem);
  font-style: italic;
  color: rgba(15, 23, 42, 0.78);
  border: none;
  position: relative;
}

.section--manifest blockquote::after {
  content: "";
  width: 140px;
  height: 3px;
  background: var(--gradient-ember);
  border-radius: 999px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

.section--manifest cite {
  display: block;
  margin-top: 1.5rem;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(30, 41, 59, 0.55);
}

.section--manifest p {
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(30, 41, 59, 0.7);
}

.section--illustration {
  --section-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(56, 189, 248, 0.16), rgba(99, 102, 241, 0.12));
  text-align: center;
}

.section--illustration::after {
  display: none;
}

.section--illustration .container.center {
  display: grid;
  justify-items: center;
  gap: 1.5rem;
}

.dolmen-visual {
  margin: 0;
  display: grid;
  gap: 1.25rem;
  justify-items: center;
  position: relative;
}

.dolmen-visual__canvas {
  position: relative;
  width: min(100%, 860px);
  aspect-ratio: 2 / 1;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(248, 250, 252, 0.96) 0%, rgba(229, 231, 235, 0.9) 48%, rgba(203, 213, 225, 0.46) 100%),
    radial-gradient(circle at 18% 26%, rgba(148, 163, 184, 0.22), transparent 60%),
    radial-gradient(circle at 78% 18%, rgba(100, 116, 139, 0.18), transparent 58%),
    linear-gradient(160deg, rgba(71, 85, 105, 0.08), rgba(100, 116, 139, 0.12));
  box-shadow: 0 32px 90px rgba(15, 23, 42, 0.12);
  overflow: hidden;
}

.dolmen-visual__stone {
  position: absolute;
  display: block;
  border-radius: 28px;
  background: linear-gradient(170deg, rgba(226, 232, 240, 0.92), rgba(148, 163, 184, 0.74));
  opacity: 0;
  filter: drop-shadow(0 28px 46px rgba(15, 23, 42, 0.16));
  --dolmen-shift-x: 0;
  transform: translateX(var(--dolmen-shift-x)) translateY(-160%);
  animation: dolmenStoneDrop 1.1s cubic-bezier(0.18, 0.88, 0.24, 1) var(--delay, 0s) forwards;
}

.dolmen-visual__stone::after {
  content: "";
  position: absolute;
  inset: 16% 18% 20% 18%;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.26), transparent 72%);
  opacity: 0.65;
  mix-blend-mode: screen;
}

.dolmen-visual__stone--ground,
.dolmen-visual__stone--lintel,
.dolmen-visual__stone--center {
  left: 50%;
  --dolmen-shift-x: -50%;
}

.dolmen-visual__stone--ground {
  --delay: 0.7s;
  bottom: 6%;
  width: 86%;
  height: 26%;
  border-radius: 40% 40% 50% 50%;
  clip-path: polygon(2% 62%, 10% 34%, 26% 20%, 50% 12%, 74% 22%, 90% 36%, 98% 60%, 100% 100%, 0 100%);
  background:
    linear-gradient(180deg, rgba(229, 231, 235, 0.9), rgba(148, 163, 184, 0.78) 52%, rgba(100, 116, 139, 0.64)),
    radial-gradient(circle at 32% 32%, rgba(255, 255, 255, 0.28), transparent 60%),
    radial-gradient(circle at 72% 44%, rgba(255, 255, 255, 0.18), transparent 70%);
  filter: drop-shadow(0 26px 46px rgba(30, 41, 59, 0.18));
}

.dolmen-visual__stone--ground::after {
  display: none;
}

.dolmen-visual__stone--left {
  --delay: 0.45s;
  left: 16%;
  bottom: 20%;
  width: 18%;
  height: 54%;
  clip-path: polygon(22% 0, 82% 2%, 96% 18%, 90% 100%, 16% 100%, 0 24%);
  background:
    linear-gradient(170deg, rgba(226, 232, 240, 0.92), rgba(148, 163, 184, 0.76)),
    linear-gradient(20deg, rgba(255, 255, 255, 0.24), transparent 68%);
}

.dolmen-visual__stone--center {
  --delay: 0.35s;
  bottom: 24%;
  width: 20%;
  height: 58%;
  clip-path: polygon(26% 0, 78% 4%, 96% 28%, 84% 100%, 18% 100%, 0 26%);
  background:
    linear-gradient(180deg, rgba(226, 232, 240, 0.94), rgba(148, 163, 184, 0.86) 55%, rgba(100, 116, 139, 0.66)),
    linear-gradient(38deg, rgba(255, 255, 255, 0.3), transparent 70%);
  z-index: 2;
}

.dolmen-visual__stone--right {
  --delay: 0.45s;
  right: 14%;
  bottom: 22%;
  width: 17%;
  height: 52%;
  clip-path: polygon(18% 6%, 80% 0, 96% 18%, 88% 100%, 16% 100%, 0 32%);
  background:
    linear-gradient(170deg, rgba(226, 232, 240, 0.92), rgba(148, 163, 184, 0.76)),
    linear-gradient(20deg, rgba(255, 255, 255, 0.24), transparent 68%);
  z-index: 1;
}

.dolmen-visual__stone--lintel {
  --delay: 0s;
  bottom: 58%;
  width: 72%;
  height: 22%;
  border-radius: 40px;
  clip-path: polygon(2% 36%, 8% 14%, 30% 0, 58% 6%, 86% 18%, 98% 38%, 94% 68%, 76% 90%, 16% 86%);
  background:
    linear-gradient(165deg, rgba(226, 232, 240, 0.92), rgba(148, 163, 184, 0.82) 55%, rgba(100, 116, 139, 0.66)),
    radial-gradient(circle at 24% 46%, rgba(255, 255, 255, 0.28), transparent 58%),
    radial-gradient(circle at 70% 32%, rgba(255, 255, 255, 0.2), transparent 64%);
  filter: drop-shadow(0 24px 50px rgba(30, 41, 59, 0.2));
  z-index: 3;
}

.dolmen-visual__stone--lintel::after {
  inset: 18% 20% 28% 18%;
  border-radius: 32px;
}

.section--principles {
  --section-gradient: linear-gradient(160deg, rgba(56, 189, 248, 0.18), rgba(236, 72, 153, 0.15), rgba(255, 255, 255, 0.9));
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

.principle {
  background: rgba(255, 255, 255, 0.82);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 2.4rem);
  border: 1px solid rgba(99, 102, 241, 0.18);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(12px);
  display: grid;
  gap: 1rem;
}

.principle h3 {
  margin: 0;
  font-size: clamp(1.2rem, 1.9vw, 1.5rem);
}

.principle p {
  margin: 0;
  color: rgba(30, 41, 59, 0.72);
  line-height: 1.7;
}

.principle__list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  list-style: none;
}

.principle__list li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 0.95rem;
  color: rgba(17, 24, 39, 0.68);
}

.principle__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--gradient-ember);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.9);
}

.dolmen-visual figcaption {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.55);
  position: relative;
  z-index: 1;
}

.section--co-create {
  --section-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(99, 102, 241, 0.14), rgba(236, 72, 153, 0.12));
}

.section--co-create::after {
  display: none;
}

.section__split--co-create {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 6vw, 3.5rem);
}

.co-create__intro {
  display: grid;
  gap: 1.2rem;
}

.co-create__intro .section__lead {
  font-size: 0.9rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(99, 102, 241, 0.68);
}

.co-create__intro h2 {
  margin: 0;
}

.co-create__intro p {
  margin: 0;
  color: rgba(30, 41, 59, 0.72);
  line-height: 1.75;
}

.co-create__pillars {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.co-create__pillars li {
  position: relative;
  padding-left: 1.8rem;
  font-size: 0.96rem;
  color: rgba(17, 24, 39, 0.72);
}

.co-create__pillars li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 1rem;
  height: 1rem;
  border-radius: 0.5rem;
  background: var(--gradient-ember);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.co-create__steps {
  display: grid;
  gap: 1rem;
}

.co-create__step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(99, 102, 241, 0.18);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(12px);
  transition: transform var(--transition), box-shadow var(--transition);
}

.co-create__step h3 {
  margin: 0;
}

.co-create__step p {
  margin: 0.5rem 0 0;
  color: rgba(30, 41, 59, 0.68);
  line-height: 1.6;
}

.co-create__step-index {
  display: grid;
  place-items: center;
  width: 2.5rem;
  aspect-ratio: 1;
  border-radius: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(15, 23, 42, 0.75);
  background: var(--gradient-ember);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.co-create__step:hover,
.co-create__step:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.16);
}

.page--philosophy .card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(99, 102, 241, 0.18);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.1);
}

.page--philosophy .card::before {
  content: none;
}

.page--philosophy .grid--columns {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.page--philosophy .container.narrow {
  width: min(100% - 3rem, 760px);
}

@keyframes dolmenStoneDrop {
  0% {
    opacity: 0;
    transform: translateX(var(--dolmen-shift-x, 0)) translateY(-160%);
  }
  100% {
    opacity: 1;
    transform: translateX(var(--dolmen-shift-x, 0)) translateY(0);
  }
}

@keyframes dolmenDawn {
  0% {
    transform: translateY(-12%);
    opacity: 0.35;
  }
  50% {
    transform: translateY(4%);
    opacity: 0.5;
  }
  100% {
    transform: translateY(-12%);
    opacity: 0.35;
  }
}

@keyframes stoneReveal {
  0% {
    opacity: 0;
    transform: translateY(32px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 720px) {
  .page-hero--dolmen {
    padding-top: clamp(4rem, 14vw, 6rem);
  }

  .page-hero--dolmen h1 {
    letter-spacing: 0.08em;
  }

  .dolmen-structure {
    width: clamp(260px, 72vw, 380px);
    height: clamp(200px, 58vw, 280px);
  }

  .dolmen-structure__stone--lintel {
    bottom: clamp(152px, 46vw, 210px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-hero--dolmen::after,
  .dolmen-structure__stone,
  .dolmen-visual__stone,
  .stone,
  .stone::before {
    animation: none !important;
    transition: none !important;
  }

  .dolmen-structure__stone,
  .dolmen-visual__stone,
  .stone {
    opacity: 1;
  }

  .dolmen-structure__stone,
  .dolmen-visual__stone {
    transform: translateX(var(--dolmen-shift-x, 0)) translateY(0) !important;
  }

  .stone {
    transform: none !important;
  }
}

.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  background: var(--color-surface);
}

.offer-filter {
  display: none;
}

.offer-filter__label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-muted);
}

.offers-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

.offers-table thead th {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.28);
}

.offers-table thead th:first-child,
.offers-table tbody th {
  text-align: left;
}

.offers-table thead th:not(:first-child),
.offers-table tbody td {
  text-align: center;
}

.offers-table tbody th,
.offers-table tbody td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.offers-table tbody th {
  font-weight: 600;
  color: var(--color-text);
}

.offers-table tbody td {
  color: var(--color-muted);
}

.offers-table tbody tr:last-child th,
.offers-table tbody tr:last-child td {
  border-bottom: none;
}

.offers-table tbody tr:nth-child(even) td {
  background: rgba(148, 163, 184, 0.1);
}

.offers-table thead th:nth-child(3),
.offers-table tbody td:nth-child(3) {
  background: rgba(201, 169, 109, 0.16);
  color: var(--color-text);
  font-weight: 600;
}

@media (max-width: 640px) {
  .section--comparison .table-wrapper {
    background: transparent;
    box-shadow: none;
  }

  .offers-table {
    min-width: 0;
  }

  .offer-filter {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1rem;
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(148, 163, 184, 0.28);
    padding: 0.9rem 1rem;
    box-shadow: var(--shadow-soft);
  }

  .offer-filter__options {
    display: grid;
    gap: 0.55rem;
    margin: 0;
    padding: 0;
    border: 0;
  }

  .offer-filter__chip {
    position: relative;
    display: block;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  }

  .offer-filter__chip input {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
  }

  .offer-filter__chip-body {
    display: grid;
    gap: 0.15rem;
    padding: 0.85rem 0.95rem;
    border-radius: var(--radius-lg);
    transition: background var(--transition), box-shadow var(--transition);
  }

  .offer-filter__chip-icon {
    font-size: 1.4rem;
    line-height: 1;
  }

  .offer-filter__chip-title {
    font-weight: 600;
    color: var(--color-text);
  }

  .offer-filter__chip-desc {
    font-size: 0.85rem;
    color: var(--color-muted);
  }

  .offer-filter__chip:focus-within {
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.18);
  }

  .offer-filter__chip:hover .offer-filter__chip-body {
    background: linear-gradient(140deg, rgba(148, 163, 184, 0.15), rgba(255, 255, 255, 0.9));
  }

  .offer-filter__chip input:checked + .offer-filter__chip-body {
    background: linear-gradient(140deg, rgba(59, 130, 246, 0.14), rgba(244, 114, 182, 0.12));
    box-shadow: inset 0 0 0 1px rgba(99, 102, 241, 0.25);
  }

  .offer-filter__chip input:checked + .offer-filter__chip-body .offer-filter__chip-desc {
    color: var(--color-text);
  }

  .offers-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    border: 0;
  }

  .offers-table tbody {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .offers-table tbody tr {
    display: flex;
    flex-direction: column;
    background: var(--color-surface);
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    box-shadow: var(--shadow-soft);
  }

  .offers-table tbody th,
  .offers-table tbody td {
    padding: 0.35rem 0;
    border-bottom: none;
    text-align: left;
  }

  .offers-table tbody th {
    font-size: 1rem;
  }

  .offers-table tbody td {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    color: var(--color-text);
  }

  .offers-table tbody td::before {
    content: attr(data-label);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-muted);
  }

  .offers-table[data-selected-plan] tbody td[data-plan] {
    display: none;
  }

  .offers-table[data-selected-plan='emergence'] tbody td[data-plan='emergence'],
  .offers-table[data-selected-plan='expansion'] tbody td[data-plan='expansion'],
  .offers-table[data-selected-plan='maitrise'] tbody td[data-plan='maitrise'] {
    display: flex;
  }

  .offers-table tbody tr:nth-child(even) td {
    background: transparent;
  }

  .offers-table thead th:nth-child(3),
  .offers-table tbody td:nth-child(3) {
    background: transparent;
    font-weight: 600;
  }
}

.process {
  display: grid;
  gap: 1.25rem;
  counter-reset: steps;
  padding: 0;
}

.process li {
  counter-increment: steps;
  padding-left: 3.25rem;
  position: relative;
  color: var(--color-muted);
}

.process li strong {
  color: var(--color-text);
}

.process li::before {
  content: counter(steps, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: linear-gradient(140deg, rgba(59, 130, 246, 0.22), rgba(244, 114, 182, 0.18));
  display: grid;
  place-items: center;
  font-weight: 600;
  color: rgba(15, 23, 42, 0.92);
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.22);
}

.contact {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

.contact__info {
  display: grid;
  gap: 1.5rem;
}

.contact__list {
  display: grid;
  gap: 0.5rem;
  color: var(--color-muted);
}

.contact__form {
  display: grid;
  gap: 1.25rem;
  background: rgba(255, 255, 255, 0.78);
  padding: 2.25rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.22);
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}

.contact__form::before {
  content: "";
  position: absolute;
  inset: -35% -25% 60% -25%;
  background: radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.22), transparent 60%);
  opacity: 0.45;
  pointer-events: none;
}

.form-note {
  margin: 0;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.18), rgba(244, 114, 182, 0.16));
  color: rgba(15, 23, 42, 0.88);
  font-weight: 600;
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.18);
}

.form-field {
  display: grid;
  gap: 0.5rem;
}

.form-field label {
  font-weight: 600;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(148, 163, 184, 0.32);
  background: rgba(255, 255, 255, 0.92);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(99, 102, 241, 0.48);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.18);
  background: rgba(255, 255, 255, 0.98);
}

.form-field__error {
  min-height: 1.25rem;
  font-size: 0.85rem;
  color: #dc2626;
}

.site-footer {
  position: relative;
  background: linear-gradient(165deg, #0f172a 0%, #1f2937 40%, #312e81 100%);
  color: #e2e8f0;
  padding: 3.5rem 0 2.5rem;
  margin-top: auto;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: -40% -20% 10% -20%;
  background: radial-gradient(circle at 20% 20%, rgba(244, 114, 182, 0.28), transparent 60%),
    radial-gradient(circle at 80% 10%, rgba(59, 130, 246, 0.26), transparent 55%);
  opacity: 0.55;
  filter: blur(60px);
  pointer-events: none;
}

.site-footer__inner {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-bottom: 2rem;
}

.site-footer__title {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.site-footer__list {
  display: grid;
  gap: 0.5rem;
}

.site-footer__list a {
  color: inherit;
  opacity: 0.85;
  transition: opacity var(--transition), color var(--transition);
}

.site-footer__list a:hover,
.site-footer__list a:focus {
  opacity: 1;
  color: #f8fafc;
}

.site-footer__copy {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(226, 232, 240, 0.72);
}

.floating-cta {
  position: fixed;
  bottom: clamp(1rem, 2vw + 0.5rem, 2.5rem);
  right: clamp(1rem, 2vw + 0.5rem, 2.5rem);
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}

.floating-cta__button {
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.95), rgba(79, 70, 229, 0.88));
  color: #f8fafc;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid rgba(148, 163, 184, 0.28);
  box-shadow: 0 18px 45px rgba(30, 64, 175, 0.28);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.floating-cta__button:hover,
.floating-cta__button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 60px rgba(59, 130, 246, 0.32);
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.98), rgba(59, 130, 246, 0.9));
}

.floating-cta__overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(6px);
  z-index: 50;
}

.floating-cta__modal {
  position: fixed;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: min(92vw, 540px);
  max-height: min(90vh, 720px);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-floating);
  border: 1px solid rgba(148, 163, 184, 0.28);
  overflow: hidden;
  z-index: 60;
  display: flex;
}

.floating-cta__modal[aria-hidden='true'] {
  visibility: hidden;
}

.floating-cta__content {
  display: grid;
  gap: 1.5rem;
  padding: clamp(1.75rem, 2vw + 1rem, 2.5rem);
  width: 100%;
  overflow-y: auto;
}

.floating-cta__intro {
  display: grid;
  gap: 0.75rem;
}

.floating-cta__avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.72), rgba(59, 130, 246, 0.72));
  border: 3px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 14px 30px rgba(79, 70, 229, 0.25);
}

.floating-cta__title {
  font-size: 1.5rem;
}

.floating-cta__subtitle,
.floating-cta__reminder {
  color: var(--color-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.floating-cta__list {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.45rem;
  color: rgba(17, 24, 39, 0.88);
  font-size: 0.95rem;
}

.floating-cta__list li {
  list-style: disc;
}

.floating-cta__form {
  display: grid;
  gap: 1rem;
}

.form-field--file input[type='file'] {
  padding: 0.45rem 0;
  border: none;
  background: transparent;
  font-size: 0.95rem;
}

.floating-cta__agreement {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: rgba(17, 24, 39, 0.9);
}

.floating-cta__agreement input {
  margin-top: 0.2rem;
  accent-color: var(--color-accent-strong);
}

.floating-cta__note {
  font-size: 0.75rem;
  line-height: 1.5;
  color: rgba(71, 85, 105, 0.88);
  background: rgba(226, 232, 240, 0.32);
  padding: 0.75rem;
  border-radius: var(--radius-sm);
}

.floating-cta__actions {
  display: flex;
  justify-content: flex-end;
}

.floating-cta__submit {
  min-width: 150px;
}

.floating-cta__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(15, 23, 42, 0.75);
  font-size: 1.5rem;
  background: rgba(226, 232, 240, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.28);
  transition: background var(--transition), transform var(--transition);
}

.floating-cta__close:hover,
.floating-cta__close:focus-visible {
  background: rgba(99, 102, 241, 0.15);
  transform: scale(1.05);
}

.floating-cta__close span {
  line-height: 1;
}

body.has-floating-modal {
  overflow: hidden;
}

@media (max-width: 720px) {
  .floating-cta {
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .floating-cta__button {
    width: auto;
    padding: 0.85rem 1.4rem;
  }

  .floating-cta__modal {
    width: min(96vw, 480px);
    max-height: 92vh;
  }
}

@media (max-width: 540px) {
  .floating-cta__modal {
    inset: auto 0 0 0;
    transform: none;
    width: 100vw;
    max-height: 100vh;
    border-radius: 22px 22px 0 0;
  }

  .floating-cta__content {
    padding: 1.5rem;
  }

  .floating-cta__close {
    right: 1rem;
  }
}

.toast {
  position: fixed;
  bottom: calc(1.5rem + 72px);
  right: 1.5rem;
  max-width: 320px;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(30, 64, 175, 0.92));
  color: #f8fafc;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(96, 165, 250, 0.28);
  z-index: 80;
}

.loading-message,
.empty-message,
.error-message {
  padding: 2rem;
  text-align: center;
  color: var(--color-muted);
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-lg);
}

@media (min-width: 640px) {
  .offres {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .offres {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 720px) {
  .cta-actions {
    flex-direction: row;
    gap: 1.25rem;
    justify-content: center;
    align-items: center;
  }
}

@media (max-width: 860px) {
  .site-nav__toggle {
    display: inline-flex;
  }

  .site-nav__list {
    position: absolute;
    right: 0;
    top: calc(100% + 0.5rem);
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(241, 245, 249, 0.88));
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    box-shadow: var(--shadow-soft);
    display: none;
    flex-direction: column;
    gap: 1rem;
    min-width: 220px;
    backdrop-filter: blur(18px);
  }

  .site-nav__toggle[aria-expanded="true"] + .site-nav__list {
    display: flex;
  }

  .site-header[data-scrolled="true"] .site-nav__list {
    background: linear-gradient(160deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.85));
    border-color: rgba(37, 99, 235, 0.24);
  }

  body.theme-dark .site-nav__list {
    background: linear-gradient(150deg, rgba(4, 6, 12, 0.96), rgba(14, 19, 34, 0.9));
    border-color: rgba(148, 163, 184, 0.35);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.65);
  }

  body.theme-dark .site-header[data-scrolled="true"] .site-nav__list {
    background: linear-gradient(160deg, rgba(1, 2, 8, 0.96), rgba(11, 16, 30, 0.92));
    border-color: rgba(148, 163, 184, 0.4);
  }

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

  .hero__actions {
    justify-content: flex-start;
  }

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

  .hero__badge {
    width: 100%;
    justify-content: space-between;
  }

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

  .page-hero__meta-item {
    text-align: center;
  }

  .section__split--co-create {
    gap: 1.75rem;
  }

  .cta-actions {
    width: 100%;
    align-items: stretch;
    justify-content: center;
  }

  .cta-actions .btn {
    width: 100%;
  }

  .impact-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 720px) {
  .site-logo {
    letter-spacing: 0.24em;
  }

  .site-logo__tagline {
    font-size: 0.5rem;
    letter-spacing: 0.36em;
  }

  .hero__badge {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .hero__badge-link::after {
    margin-left: 0.1rem;
  }

  .steps-grid::before {
    display: none;
  }

  .steps-grid article::before {
    left: 1.5rem;
    transform: none;
  }

  .offers-table {
    min-width: 520px;
  }

  .page-hero__quote {
    font-size: 1rem;
  }

  .co-create__step {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .co-create__step-index {
    width: 2.2rem;
  }

  .co-create__pillars li {
    padding-left: 1.4rem;
  }
}

@media (max-width: 540px) {
  .hero__meta {
    padding: 1.1rem;
  }

  .impact-metrics {
    grid-template-columns: 1fr;
  }

  .testimonial {
    padding: 1.75rem;
  }

  .cta-actions {
    gap: 0.75rem;
  }

  .cta-actions .btn {
    width: 100%;
  }
}

@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes orbFloat {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(4%, -4%, 0) scale(1.05);
  }

  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
    scroll-behavior: auto !important;
  }
}
.steps-grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.step {
  display: grid;
  gap: 1.25rem;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 28px 60px rgba(14, 14, 16, 0.08);
  border: 1px solid rgba(14, 14, 16, 0.08);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.step:hover,
.step:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 32px 72px rgba(14, 14, 16, 0.12);
}

.step h3 {
  font-size: 1.5rem;
  letter-spacing: 0.02em;
}

.step-subtitle {
  margin: -0.5rem 0 0;
  font-family: 'Inter', 'Poppins', 'Segoe UI', system-ui, sans-serif;
  color: rgba(14, 14, 16, 0.58);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.step-details {
  display: grid;
  gap: 0.75rem;
  font-family: 'Inter', 'Poppins', 'Segoe UI', system-ui, sans-serif;
  font-size: 0.98rem;
  color: rgba(14, 14, 16, 0.78);
}

.step-summary {
  font-family: 'Inter', 'Poppins', 'Segoe UI', system-ui, sans-serif;
  color: rgba(14, 14, 16, 0.72);
}

.step .btn {
  justify-self: start;
}

.step--highlight {
  position: relative;
  background: linear-gradient(160deg, rgba(201, 169, 109, 0.16), rgba(201, 169, 109, 0.05) 55%, #ffffff 100%);
  border: 1px solid rgba(201, 169, 109, 0.5);
}

.step--highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 40px 90px rgba(201, 169, 109, 0.35);
  opacity: 0;
  transition: opacity 240ms ease;
  pointer-events: none;
}

.step--highlight:hover::before,
.step--highlight:focus-within::before {
  opacity: 1;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  background: #c9a96d;
  color: #0e0e10;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section--offers {
  --section-gradient: linear-gradient(150deg, rgba(255, 255, 255, 0.94), rgba(232, 230, 239, 0.78));
}

.section--offers .btn--primary {
  background: #0e0e10;
  color: #fafafa;
  border-color: transparent;
}

.section--offers .btn--primary:hover,
.section--offers .btn--primary:focus-visible {
  background: #c9a96d;
  color: #0e0e10;
}

.section--comparison {
  --section-gradient: linear-gradient(155deg, rgba(201, 169, 109, 0.16), rgba(129, 140, 248, 0.15), rgba(255, 255, 255, 0.92));
}

.section--cases {
  --section-gradient: linear-gradient(160deg, rgba(232, 230, 239, 0.82), rgba(247, 245, 241, 0.94));
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

.case {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 22px 60px rgba(14, 14, 16, 0.08);
  border: 1px solid rgba(14, 14, 16, 0.08);
  color: rgba(14, 14, 16, 0.78);
  font-family: 'Inter', 'Poppins', 'Segoe UI', system-ui, sans-serif;
}

.case img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: inset 0 0 0 1px rgba(14, 14, 16, 0.06);
}

.case p {
  margin: 0;
  line-height: 1.7;
}

.section--faq {
  --section-gradient: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(232, 230, 239, 0.72));
}

.faq-list {
  margin: 2rem 0 0;
  display: grid;
  gap: 0.5rem;
}

.faq-list dt {
  padding: 1.1rem 1.25rem;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(14, 14, 16, 0.12);
  font-weight: 600;
  font-family: 'Poppins', 'Inter', 'Segoe UI', system-ui, sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.faq-list dt::after {
  content: "+";
  font-size: 1.3rem;
  line-height: 1;
  color: rgba(14, 14, 16, 0.45);
  transition: transform 200ms ease;
}

.faq-list dt[aria-expanded="true"]::after {
  transform: rotate(45deg);
}

.faq-list dd {
  margin: 0;
  padding: 0 1.25rem 1.25rem;
  border-radius: 0 0 14px 14px;
  border: 1px solid rgba(14, 14, 16, 0.12);
  border-top: none;
  background: #ffffff;
  font-family: 'Inter', 'Poppins', 'Segoe UI', system-ui, sans-serif;
  color: rgba(14, 14, 16, 0.72);
  line-height: 1.7;
}

.faq-list dt + dd {
  display: none;
}

.faq-list dt[aria-expanded="true"] + dd {
  display: block;
  animation: faq-expand 240ms ease forwards;
}

@keyframes faq-expand {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section--cta-final {
  --section-gradient: linear-gradient(135deg, rgba(201, 169, 109, 0.4), rgba(201, 169, 109, 0.12));
  text-align: center;
}

.section--cta-final .cta-text {
  font-size: 1.4rem;
  font-family: 'Poppins', 'Inter', 'Segoe UI', system-ui, sans-serif;
  margin-bottom: 1.5rem;
}

.section--cta-final .btn--primary {
  background: #0e0e10;
  color: #fafafa;
  border-color: transparent;
}

.section--cta-final .btn--primary:hover,
.section--cta-final .btn--primary:focus-visible {
  background: #fafafa;
  color: #0e0e10;
  border-color: #0e0e10;
}

/* Dark theme overrides */
body.theme-dark .site-header {
  background: rgba(4, 6, 12, 0.82);
  border-color: rgba(148, 163, 184, 0.25);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.55);
}

body.theme-dark .site-header::before {
  opacity: 0.2;
  filter: blur(70px);
}

body.theme-dark .site-header[data-scrolled='true'] {
  background: rgba(1, 2, 8, 0.92);
  border-color: rgba(148, 163, 184, 0.35);
}

body.theme-dark .site-logo__tagline {
  color: rgba(226, 232, 240, 0.68);
}

body.theme-dark .site-nav__toggle {
  background: rgba(148, 163, 184, 0.12);
}

body.theme-dark .site-nav__toggle:hover,
body.theme-dark .site-nav__toggle:focus-visible {
  background: rgba(148, 163, 184, 0.24);
}

body.theme-dark .site-nav__toggle .site-nav__bar,
body.theme-dark .site-nav__toggle .site-nav__bar::before,
body.theme-dark .site-nav__toggle .site-nav__bar::after {
  background-color: #f5f7ff;
}

body.theme-dark .site-nav__list a {
  color: #f5f7ff;
}

body.theme-dark .theme-toggle {
  background: linear-gradient(135deg, rgba(4, 7, 17, 0.85), rgba(15, 23, 42, 0.75));
  border-color: rgba(148, 163, 184, 0.35);
  color: #f5f7ff;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.55);
}

body.theme-dark .theme-toggle:hover,
body.theme-dark .theme-toggle:focus-visible {
  background: linear-gradient(135deg, rgba(7, 11, 22, 0.95), rgba(15, 23, 42, 0.85));
}

body.theme-dark .theme-toggle::before {
  transform: translateX(calc(var(--toggle-width) - var(--toggle-height)));
  background: radial-gradient(circle at 70% 35%, rgba(103, 92, 255, 0.45), transparent 55%),
    rgba(12, 19, 43, 0.95);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.55);
}

body.theme-dark .theme-toggle__icon--sun {
  opacity: 0.45;
  transform: scale(0.9);
}

body.theme-dark .theme-toggle__icon--moon {
  opacity: 1;
  transform: scale(1.08);
}

body.theme-dark .hero::before {
  background: radial-gradient(circle at 12% 20%, rgba(236, 72, 153, 0.24), transparent 62%),
    radial-gradient(circle at 88% 16%, rgba(14, 165, 233, 0.2), transparent 60%),
    linear-gradient(160deg, rgba(6, 8, 18, 0.95) 0%, rgba(2, 3, 9, 0.85) 100%);
}

body.theme-dark .orb {
  opacity: 0.32;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.45));
}

body.theme-dark .section::before {
  background: linear-gradient(160deg, rgba(6, 8, 18, 0.96), rgba(14, 19, 34, 0.85));
}

body.theme-dark .section::after {
  background: radial-gradient(circle at 12% 22%, rgba(236, 72, 153, 0.24), transparent 60%),
    radial-gradient(circle at 90% 12%, rgba(14, 165, 233, 0.2), transparent 55%);
  opacity: 0.35;
}

body.theme-dark .section--audience::before {
  background: radial-gradient(circle at 20% 30%, rgba(14, 165, 233, 0.25), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.25), transparent 55%);
}

body.theme-dark .section--method::before {
  background: radial-gradient(circle at 10% 80%, rgba(236, 72, 153, 0.18), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(14, 165, 233, 0.18), transparent 50%);
}

body.theme-dark .method-steps::before,
body.theme-dark .steps-grid::before {
  background: linear-gradient(90deg, rgba(214, 178, 120, 0.35), rgba(99, 102, 241, 0.35));
}

body.theme-dark .method-steps article::before {
  border-color: rgba(214, 178, 120, 0.65);
  background: rgba(1, 2, 8, 0.9);
}

body.theme-dark .hero__note,
body.theme-dark .eyebrow,
body.theme-dark .section--metrics .eyebrow,
body.theme-dark .metric__label,
body.theme-dark .subtitle,
body.theme-dark .section__subtitle,
body.theme-dark .page-hero__eyebrow,
body.theme-dark .page-hero__lead,
body.theme-dark .page-hero__meta-caption,
body.theme-dark .page-hero__quote,
body.theme-dark .audience-list li,
body.theme-dark .services-grid p,
body.theme-dark .method-steps p,
body.theme-dark .step-subtitle,
body.theme-dark .step-summary,
body.theme-dark .step-details li,
body.theme-dark .contact__list,
body.theme-dark .portfolio-card__summary,
body.theme-dark .portfolio-cta p,
body.theme-dark .faq-list dd,
body.theme-dark .tag,
body.theme-dark .filter-bar__button,
body.theme-dark .floating-cta__subtitle,
body.theme-dark .floating-cta__reminder,
body.theme-dark .floating-cta__note,
body.theme-dark .floating-cta__list,
body.theme-dark .contact__info p {
  color: rgba(226, 232, 240, 0.78);
}

body.theme-dark .hero__note {
  border-color: rgba(214, 178, 120, 0.45);
}

body.theme-dark .metric__value[data-animate='metric'] {
  color: #f8fafc;
}

body.theme-dark .btn {
  background: rgba(7, 11, 22, 0.85);
  color: var(--color-text);
  border-color: rgba(148, 163, 184, 0.25);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.5);
}

body.theme-dark .btn--ghost {
  border-color: rgba(148, 163, 184, 0.5);
  color: rgba(241, 245, 249, 0.92);
}

body.theme-dark .btn--ghost:hover,
body.theme-dark .btn--ghost:focus-visible {
  border-color: rgba(148, 163, 184, 0.65);
  background: rgba(148, 163, 184, 0.12);
}

body.theme-dark .btn--text {
  color: rgba(241, 245, 249, 0.9);
}

body.theme-dark .btn--accent {
  background: linear-gradient(120deg, rgba(30, 64, 175, 0.55), rgba(14, 165, 233, 0.45));
  color: #e0f2fe;
  border-color: rgba(14, 165, 233, 0.5);
}

body.theme-dark
  :is(
    .expertises-grid article,
    .services-grid article,
    .method-steps article,
    .steps-grid article,
    .step,
    .reason-card,
    .offer-card,
    .case,
    .page-hero__meta-item,
    .portfolio-card,
    .portfolio-cta,
    .contact__form,
    .form-note,
    .floating-cta__modal,
    .faq-list dt,
    .faq-list dd,
    .card,
    .service-card,
    .project-card,
    .impact-metrics__item,
    .approach__step,
    .section__card,
    .co-create__step,
    .principle,
    .stone
  ) {
  background: var(--color-surface);
  border-color: var(--color-border);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.55);
  color: var(--color-text);
}

body.theme-dark .section__card::before {
  opacity: 0.45;
}

body.theme-dark .form-note {
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.25);
}

body.theme-dark .offer-card--refonte {
  background: linear-gradient(
      135deg,
      rgba(14, 165, 233, 0.18),
      rgba(79, 70, 229, 0.24)
    ),
    var(--color-surface);
}

body.theme-dark .contact__form::before {
  background: radial-gradient(circle at 25% 25%, rgba(99, 102, 241, 0.22), transparent 60%);
}

body.theme-dark .form-field input,
body.theme-dark .form-field textarea {
  background: rgba(4, 7, 17, 0.85);
  border-color: rgba(148, 163, 184, 0.35);
  color: var(--color-text);
}

body.theme-dark .form-field input:focus,
body.theme-dark .form-field textarea:focus {
  border-color: rgba(59, 130, 246, 0.55);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.22);
  background: rgba(7, 11, 22, 0.95);
}

body.theme-dark .faq-list dt::after {
  color: rgba(226, 232, 240, 0.65);
}

body.theme-dark .page-hero {
  color: var(--color-text);
}

body.theme-dark .page-hero__background::before,
body.theme-dark .page-hero__background::after {
  opacity: 0.42;
  filter: blur(70px);
}

body.theme-dark .tag {
  background: linear-gradient(120deg, rgba(30, 64, 175, 0.35), rgba(236, 72, 153, 0.28));
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.32);
}

body.theme-dark .badge {
  background: linear-gradient(120deg, rgba(252, 211, 77, 0.35), rgba(236, 72, 153, 0.28));
  color: var(--color-text);
}

body.theme-dark .filter-bar__button {
  background: rgba(4, 7, 17, 0.8);
  border-color: rgba(148, 163, 184, 0.32);
  color: var(--color-text);
}

body.theme-dark .filter-bar__button:hover,
body.theme-dark .filter-bar__button:focus-visible {
  border-color: rgba(59, 130, 246, 0.45);
  box-shadow: 0 12px 26px rgba(14, 165, 233, 0.25);
}

body.theme-dark .filter-bar__button.is-active {
  background-image: var(--gradient-ember);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 18px 36px rgba(236, 72, 153, 0.35);
}

body.theme-dark .floating-cta__button {
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.55);
}

body.theme-dark
  :is(
    .section-heading__eyebrow,
    .offer-card__eyebrow,
    .offer-card__features,
    .offer-card__price span,
    .impact-metrics__item h3,
    .co-create__intro .section__lead,
    .co-create__intro p,
    .co-create__pillars li,
    .co-create__step p,
    .approach__step p:last-of-type,
    .principle p,
    .principle__list li,
    .dolmen-visual figcaption,
    .stone p,
    .stone__list li,
    .testimonial__tags li,
    .project-card__cover
  ) {
  color: rgba(226, 232, 240, 0.82);
}

body.theme-dark .offer-card__features li::before,
body.theme-dark .principle__list li::before,
body.theme-dark .co-create__pillars li::before,
body.theme-dark .stone__list li::before {
  box-shadow: 0 0 0 2px rgba(5, 6, 12, 0.65);
}

body.theme-dark .offer-card__features li,
body.theme-dark .principle__list li,
body.theme-dark .stone__list li,
body.theme-dark .co-create__pillars li {
  color: rgba(226, 232, 240, 0.76);
}

body.theme-dark :is(.impact-metrics__item h3, .co-create__step h3, .principle h3) {
  color: var(--color-text);
}

body.theme-dark .project-card__cover {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.45), rgba(14, 165, 233, 0.35));
  box-shadow: inset 0 0 0 1px rgba(14, 165, 233, 0.35);
}

body.theme-dark .service-card__icon,
body.theme-dark .co-create__step-index,
body.theme-dark .stone__icon {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.55), rgba(236, 72, 153, 0.45));
  color: var(--color-text);
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.35);
}

body.theme-dark .testimonial__tags li {
  background: rgba(4, 7, 17, 0.85);
  border-color: rgba(148, 163, 184, 0.35);
}

body.theme-dark .page--philosophy :is(p, li, blockquote, figcaption) {
  color: rgba(226, 232, 240, 0.85);
}

body.theme-dark .page-hero--dolmen {
  background: linear-gradient(180deg, rgba(6, 8, 18, 0.96), rgba(2, 3, 9, 0.9));
  color: var(--color-text);
}

body.theme-dark .page-hero--dolmen::after {
  background: linear-gradient(180deg, rgba(79, 70, 229, 0.35), transparent 72%);
}

body.theme-dark .page-hero--dolmen .page-hero__eyebrow,
body.theme-dark .page-hero--dolmen p {
  color: rgba(226, 232, 240, 0.78);
}

body.theme-dark .page-hero--dolmen .page-hero__meta-item {
  background: rgba(4, 7, 17, 0.85);
}

body.theme-dark .section--manifest blockquote {
  color: rgba(248, 250, 252, 0.82);
}

@media (max-width: 1024px) {
  .steps-grid,
  .cases-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .steps-grid,
  .cases-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .step {
    padding: 1.75rem;
  }

  .offers-table {
    min-width: 480px;
  }
}

@media (max-width: 520px) {
  .offers-table {
    min-width: 420px;
  }
}

.page--article main {
  padding: clamp(2rem, 5vw, 4rem) 0 clamp(3rem, 6vw, 6rem);
}

.article {
  width: min(100% - 2.5rem, 920px);
  margin: 0 auto;
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  padding: clamp(2rem, 4vw, 3.75rem);
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.article-hero {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.article-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.8rem;
  color: var(--color-muted);
}

.article-lead {
  font-size: 1.15rem;
  line-height: 1.7;
}

.article-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
}

.article-meta div {
  background: var(--color-surface-alt);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
}

.article-meta dt {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-muted);
  margin-bottom: 0.25rem;
}

.article-meta dd {
  margin: 0;
  font-weight: 600;
}

.article-content {
  display: flex;
  flex-direction: column;
  gap: clamp(1.75rem, 3vw, 2.5rem);
}

.article-content h2 {
  font-size: clamp(1.5rem, 2vw, 1.9rem);
  margin-bottom: 0.75rem;
}

.article-content p + p {
  margin-top: 0.5rem;
}

.article-content ul,
.article-content ol {
  list-style: disc;
  padding-left: 1.5rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.article-content ol {
  list-style: decimal;
}

.article-content li {
  line-height: 1.6;
}

.article-content blockquote {
  margin: 0;
  padding: 1.25rem 1.5rem;
  border-left: 4px solid var(--color-accent);
  background: rgba(201, 169, 109, 0.08);
  border-radius: 0 var(--radius-md, 18px) var(--radius-md, 18px) 0;
}

.article-content blockquote p {
  font-style: italic;
  margin: 0;
}

.table-wrapper {
  width: 100%;
  overflow-x: auto;
}

.article-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  min-width: 520px;
}

.article-content caption {
  text-align: left;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.article-content th,
.article-content td {
  padding: 0.85rem;
  border: 1px solid var(--color-border);
  text-align: left;
}

.article-content thead {
  background: var(--color-surface-alt);
}

.article-cta {
  background: var(--gradient-soft);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}

.article-cta p {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0;
}

.section--resources {
  background: rgba(255, 255, 255, 0.7);
  position: relative;
  overflow: hidden;
}

.section--resources::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--gradient-aurora);
  opacity: 0.2;
  pointer-events: none;
}

.section--resources .container {
  position: relative;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.resource-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 18px 40px rgba(14, 14, 16, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border: 1px solid rgba(14, 14, 16, 0.04);
  transition: transform var(--transition), box-shadow var(--transition);
}

.resource-card:hover,
.resource-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(14, 14, 16, 0.12);
}

.resource-card__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.7rem;
  color: var(--color-muted);
}

.resource-card h3 {
  font-size: 1.1rem;
  margin: 0;
}

.resource-card p {
  margin: 0;
  color: var(--color-muted);
}

.resource-card__link {
  margin-top: auto;
  font-weight: 600;
  color: var(--color-accent-strong);
  text-decoration: none;
}

.resource-card__link:hover,
.resource-card__link:focus {
  text-decoration: underline;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1rem, 2vw, 1.75rem);
}

.article-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 100%;
}

.article-card__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.72rem;
  color: var(--color-muted);
}

.article-card h3 {
  font-size: 1.25rem;
  margin: 0;
}

.article-card__summary {
  color: var(--color-muted);
  margin: 0;
}

.article-card__tags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.article-card__tags li {
  background: rgba(99, 102, 241, 0.12);
  color: rgba(17, 24, 39, 0.85);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
}

.article-card__link {
  margin-top: auto;
  font-weight: 600;
  color: var(--color-accent-strong);
  text-decoration: none;
}

.article-card__link:hover,
.article-card__link:focus-visible {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .article {
    width: min(100% - 1.5rem, 960px);
    padding: 1.5rem;
  }

  .article-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .article-content table {
    min-width: unset;
  }
}
