:root {
  --ink: #1d1d1f;
  --ink-soft: #424245;
  --muted: #6e6e73;
  --paper: #f5f5f7;
  --surface: #ffffff;
  --surface-soft: #fbfbfd;
  --line: rgba(0, 0, 0, 0.08);
  --dark: #000000;
  --white: #ffffff;
  --blue: #0071e3;
  --blue-soft: #eaf3ff;
  --green: #00a67e;
  --pink: #ff375f;
  --violet: #7d5fff;
  --amber: #f5a623;
  --radius: 28px;
  --radius-small: 18px;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.1);
  --header-height: 56px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 320px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "SF Pro Display",
    "SF Pro Text",
    "Segoe UI",
    sans-serif;
  line-height: 1.38;
  text-rendering: geometricPrecision;
}

body::selection {
  background: rgba(0, 113, 227, 0.18);
}

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

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

#services,
#tools,
#process,
#signature,
#contact,
#tarifs-content,
#pricing-content,
#legal-content {
  scroll-margin-top: 5rem;
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--violet), var(--pink));
  transform: scaleX(0);
  transform-origin: left center;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  min-height: var(--header-height);
  padding: 0 0.75rem;
  background: rgba(251, 251, 253, 0.72);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: saturate(180%) blur(22px);
  -webkit-backdrop-filter: saturate(180%) blur(22px);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    transform 240ms ease;
}

.nav-shell {
  display: grid;
  grid-template-areas: "brand menu cta";
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.55rem;
  width: min(1120px, 100%);
  min-height: var(--header-height);
  margin: 0 auto;
  padding: 0.42rem 0;
  transition:
    min-height 220ms ease,
    padding 220ms ease;
}

.nav-shell > * {
  min-width: 0;
}

.brand,
.nav-menu-toggle,
.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.48rem;
  border-radius: 999px;
  font-weight: 650;
}

.brand {
  grid-area: brand;
  font-size: 0.86rem;
}

.nav-menu-toggle {
  position: relative;
  grid-area: menu;
  justify-self: end;
  width: 2.1rem;
  min-height: 2.1rem;
  padding: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.045);
  color: var(--ink);
  font: inherit;
  font-size: 0.78rem;
  cursor: pointer;
}

.nav-menu-toggle span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.nav-menu-toggle i,
.nav-menu-toggle i::before,
.nav-menu-toggle i::after {
  display: block;
  width: 0.95rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.nav-menu-toggle i {
  position: relative;
}

.nav-menu-toggle i::before,
.nav-menu-toggle i::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-menu-toggle i::before {
  transform: translateY(-0.34rem);
}

.nav-menu-toggle i::after {
  transform: translateY(0.34rem);
}

.site-header.is-menu-open .nav-menu-toggle i {
  background: transparent;
}

.site-header.is-menu-open .nav-menu-toggle i::before {
  transform: rotate(45deg);
}

.site-header.is-menu-open .nav-menu-toggle i::after {
  transform: rotate(-45deg);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.brand-mark img {
  width: 1.62rem;
  height: 1.62rem;
  object-fit: contain;
}

.nav-links {
  position: fixed;
  top: calc(var(--header-height) + 0.72rem);
  left: 0.75rem;
  right: 0.75rem;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.48rem;
  max-height: calc(100svh - var(--header-height) - 1.5rem);
  overflow: auto;
  overscroll-behavior-inline: contain;
  padding: 0.72rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 24px;
  background: rgba(251, 251, 253, 0.94);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.14);
  color: rgba(29, 29, 31, 0.74);
  font-size: 0.78rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.45rem) scale(0.98);
  transition:
    opacity 180ms ease,
    visibility 180ms ease,
    transform 220ms ease;
  visibility: hidden;
}

.site-header.is-menu-open .nav-links {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  visibility: visible;
}

.nav-links::-webkit-scrollbar {
  display: none;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.45rem;
  padding: 0.48rem 0.62rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.035);
}

.nav-links a,
.nav-menu-toggle,
.nav-cta,
.button {
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
}

.language-switch {
  font-weight: 800;
  letter-spacing: 0.03em;
}

.nav-cta {
  grid-area: cta;
  justify-self: end;
  min-height: 2.1rem;
  padding: 0 0.85rem;
  background: var(--blue);
  color: var(--white);
  font-size: 0.78rem;
}

.nav-cta svg,
.button svg {
  width: 0.95rem;
  height: 0.95rem;
}

.hero {
  position: relative;
  overflow: hidden;
  overflow: clip;
  overflow-clip-margin: 96px;
  display: grid;
  align-items: center;
  min-height: 100svh;
  padding: 7.5rem 1.25rem 5.5rem;
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 113, 227, 0.08), transparent 30rem),
    radial-gradient(circle at 68% 70%, rgba(125, 95, 255, 0.061), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%);
  isolation: isolate;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(44px);
}

.hero::before {
  left: -16rem;
  top: 20%;
  width: min(34rem, 56vw);
  height: min(34rem, 56vw);
  background: rgba(0, 113, 227, 0.061);
}

.hero::after {
  right: -17rem;
  bottom: 8%;
  width: min(36rem, 58vw);
  height: min(36rem, 58vw);
  background: rgba(125, 95, 255, 0.061);
}

.showcase-aura {
  position: absolute;
  left: 50%;
  top: 58%;
  z-index: -1;
  width: min(980px, 92vw);
  height: min(520px, 58vw);
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 38%, rgba(0, 113, 227, 0.2), transparent 32%),
    radial-gradient(circle at 72% 42%, rgba(125, 95, 255, 0.143), transparent 30%),
    radial-gradient(circle at 50% 78%, rgba(255, 55, 95, 0.094), transparent 36%);
  filter: blur(38px);
  opacity: 0.86;
  transform: translate3d(-50%, -50%, 0);
  animation: auraFloat 12s ease-in-out infinite;
}

.hero-inner {
  display: grid;
  gap: 3rem;
  min-width: 0;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.hero-copy {
  min-width: 0;
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
}

.hero-logo {
  width: min(34rem, 78vw);
  height: auto;
  margin: 0 auto 1.25rem;
  object-fit: contain;
}

.eyebrow,
.section-kicker,
.service-index {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hero h1,
.legal-hero h1,
.section-heading h2,
.contact-shell h2 {
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.hero h1 {
  max-width: 12ch;
  margin-inline: auto;
  font-size: clamp(3.6rem, 9vw, 7.4rem);
  font-weight: 760;
  line-height: 1.06;
}

.legal-page {
  min-height: 100svh;
  background: var(--paper);
}

.legal-hero {
  position: relative;
  overflow: hidden;
  overflow: clip;
  overflow-clip-margin: 96px;
  padding: 8rem 1.25rem 4rem;
  background:
    radial-gradient(circle at 50% 36%, rgba(0, 113, 227, 0.08), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%);
  isolation: isolate;
}

.pricing-hero {
  position: relative;
  overflow: hidden;
  overflow: clip;
  overflow-clip-margin: 96px;
  padding: 8rem 1.25rem 4.5rem;
  background:
    radial-gradient(circle at 28% 24%, rgba(0, 113, 227, 0.12), transparent 28rem),
    radial-gradient(circle at 76% 72%, rgba(255, 55, 95, 0.07), transparent 25rem),
    linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%);
  isolation: isolate;
}

.pricing-hero-inner {
  width: min(980px, 100%);
  margin: 0 auto;
  text-align: center;
}

.pricing-hero h1 {
  max-width: 11ch;
  margin: 0 auto;
  color: var(--ink);
  font-size: clamp(3.7rem, 9.4vw, 8rem);
  font-weight: 770;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.pricing-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.85rem;
}

.legal-hero-inner {
  width: min(920px, 100%);
  margin: 0 auto;
  text-align: center;
}

.legal-logo {
  width: min(24rem, 72vw);
  margin-bottom: 1.6rem;
}

.legal-hero h1 {
  font-size: clamp(4.2rem, 11vw, 8.8rem);
  font-weight: 770;
  line-height: 0.96;
}

.referral-hero {
  position: relative;
  overflow: hidden;
  overflow: clip;
  overflow-clip-margin: 96px;
  padding: 8rem 1.25rem 4rem;
  background:
    radial-gradient(circle at 78% 0%, rgba(0, 113, 227, 0.18), transparent 24rem),
    radial-gradient(circle at 12% 82%, rgba(0, 113, 227, 0.11), transparent 26rem),
    linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%);
  isolation: isolate;
}

.referral-hero::before {
  content: "JP";
  position: absolute;
  left: 50%;
  top: 48%;
  z-index: -1;
  color: rgba(0, 0, 0, 0.035);
  font-size: min(46vw, 34rem);
  font-weight: 900;
  letter-spacing: -0.12em;
  transform: translate(-50%, -50%);
}

.referral-image-hero {
  padding: 8rem 1rem 1.25rem;
  background: linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%);
}

.referral-image-hero::before {
  content: none;
}

.referral-art-shell {
  width: min(1420px, 100%);
  margin: 0 auto;
}

.referral-art {
  width: 100%;
  height: auto;
  border-radius: clamp(18px, 2.4vw, 34px);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.08);
}

.referral-hero-inner {
  display: grid;
  gap: 2rem;
  align-items: center;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.referral-copy {
  max-width: 720px;
}

.referral-copy .legal-logo {
  margin-inline: 0;
}

.referral-copy h1 {
  margin: 0;
  max-width: 9ch;
  color: var(--ink);
  font-size: clamp(4rem, 10vw, 8.6rem);
  font-weight: 820;
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.referral-copy h1 span {
  color: var(--blue);
}

.referral-amount {
  display: grid;
  gap: 0.25rem;
  margin-top: 1.4rem;
}

.referral-amount span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 760;
  text-transform: uppercase;
}

.referral-amount strong {
  color: var(--blue);
  font-size: clamp(5rem, 16vw, 10rem);
  line-height: 0.86;
  letter-spacing: -0.08em;
  text-shadow: 0 18px 34px rgba(0, 113, 227, 0.14);
}

.referral-device {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 1rem;
  width: min(22rem, 84vw);
  min-height: 31rem;
  margin: 0 auto;
  padding: 2.1rem 1.3rem;
  border: 9px solid #1d1d1f;
  border-radius: 42px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 245, 247, 0.94)),
    var(--white);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.82);
  transform: rotate(-5deg);
}

.referral-device::before {
  content: "";
  width: 5.6rem;
  height: 1.25rem;
  border-radius: 999px;
  background: var(--ink);
}

.referral-device-logo {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 16px;
  background: var(--blue);
  color: var(--white);
  font-weight: 900;
}

.referral-device strong {
  color: var(--ink);
  font-size: 2.7rem;
  line-height: 0.92;
  letter-spacing: -0.055em;
  text-align: center;
}

.referral-device small {
  padding: 0.75rem 1rem;
  border-radius: 16px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 760;
  text-transform: uppercase;
}

.referral-device b {
  color: var(--blue);
  font-size: 4.5rem;
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.legal-lead {
  max-width: 620px;
  margin: 1.25rem auto 0;
  color: var(--ink-soft);
  font-size: clamp(1.12rem, 2vw, 1.42rem);
  font-weight: 520;
  letter-spacing: -0.02em;
}

.legal-content {
  padding: 1.25rem 1.25rem 6rem;
}

.pricing-content {
  padding: 1.25rem 1.25rem 6rem;
}

.pricing-shell {
  display: grid;
  gap: 4.5rem;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.pricing-block {
  display: grid;
  gap: 1rem;
}

.pricing-category-heading {
  max-width: 780px;
}

.pricing-category-heading h2,
.pricing-note h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.25rem, 5.2vw, 4.35rem);
  line-height: 1.02;
  letter-spacing: -0.052em;
}

.pricing-category-heading p:not(.section-kicker),
.pricing-note p:not(.section-kicker) {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.55vw, 1.18rem);
}

.package-grid,
.pricing-grid,
.rate-columns,
.support-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.price-card,
.rate-panel,
.support-card,
.pricing-note {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
}

.price-card,
.rate-panel {
  padding: clamp(1.1rem, 2.4vw, 1.55rem);
}

.price-card::before,
.rate-panel::before,
.pricing-note::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 113, 227, 0.26), transparent);
}

.featured-price {
  background:
    radial-gradient(circle at 100% 0%, rgba(0, 113, 227, 0.13), transparent 16rem),
    var(--surface);
  box-shadow: 0 24px 70px rgba(0, 113, 227, 0.13);
}

.price-card-top {
  display: grid;
  gap: 0.55rem;
}

.price-tag {
  width: max-content;
  max-width: 100%;
  padding: 0.34rem 0.62rem;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 790;
}

.price-card h3,
.rate-panel h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.45rem, 3.2vw, 2.35rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.price-value {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0.42rem;
  margin: 1.1rem 0 0;
  color: var(--ink);
  font-size: clamp(3.35rem, 8vw, 5.4rem);
  font-weight: 790;
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.price-value small {
  flex: 0 0 100%;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 760;
  line-height: 1.1;
  letter-spacing: 0;
}

.price-list {
  display: grid;
  gap: 0.54rem;
  margin: 1.2rem 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.price-list li {
  font-size: 0.98rem;
}

.price-list li::before {
  content: "";
  display: inline-block;
  width: 0.36rem;
  height: 0.36rem;
  margin-right: 0.58rem;
  border-radius: 999px;
  background: var(--blue);
  vertical-align: 0.1rem;
}

.rate-list {
  display: grid;
  gap: 0.48rem;
  margin-top: 1rem;
}

.rate-list p {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  padding: 0.78rem 0;
  border-top: 1px solid var(--line);
}

.rate-list span {
  min-width: 0;
  color: var(--ink-soft);
}

.rate-list strong {
  color: var(--ink);
  font-size: 0.98rem;
  text-align: right;
  white-space: nowrap;
}

.support-card {
  display: grid;
  align-content: space-between;
  gap: 1.2rem;
  min-height: 10.4rem;
  padding: 1.15rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.7)),
    var(--surface);
}

.support-card span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.support-card strong {
  color: var(--ink);
  font-size: clamp(2.45rem, 6vw, 4rem);
  line-height: 0.9;
  letter-spacing: -0.065em;
}

.support-card small {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 720;
  letter-spacing: 0;
}

.pricing-note {
  display: grid;
  gap: 1.2rem;
  align-items: center;
  padding: clamp(1.25rem, 3vw, 2rem);
  background:
    radial-gradient(circle at 100% 0%, rgba(0, 113, 227, 0.12), transparent 18rem),
    var(--surface);
}

.pricing-note .button {
  justify-self: start;
}

.legal-shell {
  display: grid;
  gap: 1rem;
  width: min(920px, 100%);
  margin: 0 auto;
}

.legal-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--radius);
  background: var(--surface);
}

.legal-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 113, 227, 0.26), transparent);
}

.legal-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.9rem, 4.4vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.legal-copy {
  display: grid;
  gap: 1rem;
  margin-top: 1.15rem;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
}

.legal-copy p {
  margin: 0;
}

.legal-copy strong {
  color: var(--ink);
}

.legal-copy a {
  color: var(--blue);
  font-weight: 650;
  overflow-wrap: anywhere;
}

.legal-copy .button-primary {
  color: var(--white);
}

.recruitment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}

.referral-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}

.recruitment-role {
  padding: 1rem;
  border-radius: var(--radius-small);
  background: var(--paper);
}

.recruitment-role span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 760;
}

.recruitment-role strong {
  display: block;
  color: var(--ink);
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.recruitment-role p {
  margin-top: 0.45rem;
  color: var(--muted);
}

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

.recruitment-list li {
  color: var(--ink-soft);
}

.recruitment-list li::before {
  content: "";
  display: inline-block;
  width: 0.36rem;
  height: 0.36rem;
  margin-right: 0.62rem;
  border-radius: 999px;
  background: var(--blue);
  vertical-align: 0.1rem;
}

.recruitment-actions {
  justify-content: flex-start;
  margin-top: 0.2rem;
}

.referral-contact {
  background:
    radial-gradient(circle at 100% 0%, rgba(0, 113, 227, 0.11), transparent 20rem),
    var(--surface);
}

.legal-copy a:hover,
.legal-copy a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.hero-lead {
  max-width: 760px;
  margin: 1.35rem auto 0;
  color: var(--ink-soft);
  font-size: clamp(1.22rem, 2.15vw, 1.7rem);
  font-weight: 520;
  letter-spacing: -0.02em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.85rem;
}

.button {
  min-height: 2.75rem;
  padding: 0 1.1rem;
  border: 1px solid transparent;
  font-size: 0.95rem;
}

.button:hover,
.button:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  transform: scale(1.025);
}

.button-primary {
  background: var(--blue);
  color: var(--white);
}

.button-secondary {
  background: rgba(0, 113, 227, 0.1);
  color: var(--blue);
}

.button-secondary.dark {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.22);
}

.hero-product {
  position: relative;
  min-width: 0;
  width: min(980px, 100%);
  margin: 0 auto;
  padding: clamp(0.8rem, 2vw, 1.25rem);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 38px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.68)),
    rgba(255, 255, 255, 0.76);
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(150%) blur(18px);
  -webkit-backdrop-filter: saturate(150%) blur(18px);
}

.dashboard-services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  min-width: 0;
}

.glass-module {
  --accent: var(--blue);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.28rem 0.78rem;
  align-items: center;
  min-width: 0;
  min-height: 8.6rem;
  padding: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition:
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 520ms cubic-bezier(0.16, 1, 0.3, 1),
    background 220ms ease;
}

.glass-module:hover,
.glass-module:focus-visible {
  transform: translateY(-5px);
  background: var(--white);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.12);
}

.glass-module svg {
  grid-row: span 3;
  width: 3rem;
  height: 3rem;
  padding: 0.68rem;
  border-radius: 18px;
  background: color-mix(in srgb, var(--accent) 12%, white);
  color: var(--accent);
}

.glass-module span {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 750;
}

.glass-module strong {
  min-width: 0;
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.05;
  letter-spacing: -0.035em;
  overflow-wrap: anywhere;
}

.glass-module small {
  min-width: 0;
  color: var(--muted);
  font-size: 0.9rem;
  overflow-wrap: anywhere;
}

.module-a {
  --accent: var(--green);
}

.module-b {
  --accent: var(--pink);
}

.module-c {
  --accent: var(--blue);
}

.module-d {
  --accent: var(--amber);
}

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.ticker-track {
  display: flex;
  width: max-content;
  min-width: 100%;
  animation: tickerMove 48s linear infinite;
}

.ticker span {
  display: inline-flex;
  align-items: center;
  min-height: 3.7rem;
  padding: 0 1.25rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
  white-space: nowrap;
}

.ticker span::before {
  content: "";
  width: 0.36rem;
  height: 0.36rem;
  margin-right: 1.25rem;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.42;
}

.motion-ribbon {
  position: relative;
  overflow: hidden;
  overflow: clip;
  overflow-clip-margin: 96px;
  padding: 5.5rem 1.25rem;
  background: var(--dark);
  color: var(--white);
}

.motion-ribbon::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.62;
  background:
    radial-gradient(circle at 16% 18%, rgba(0, 113, 227, 0.34), transparent 24rem),
    radial-gradient(circle at 84% 72%, rgba(125, 95, 255, 0.24), transparent 28rem);
  transform: translateY(calc((0.5 - var(--motion, 0)) * 18px));
}

.ribbon-inner {
  position: relative;
  display: grid;
  gap: 2rem;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.ribbon-copy {
  max-width: 620px;
}

.ribbon-copy .section-kicker,
.contact-shell .section-kicker {
  color: rgba(255, 255, 255, 0.62);
}

.ribbon-copy h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.ribbon-stage {
  position: relative;
  display: grid;
  gap: 0.9rem;
}

.ribbon-line {
  display: none;
}

.ribbon-chip {
  padding: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: saturate(150%) blur(18px);
  -webkit-backdrop-filter: saturate(150%) blur(18px);
}

.ribbon-chip span {
  display: block;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.74rem;
  font-weight: 700;
}

.ribbon-chip strong {
  display: block;
  margin-top: 0.24rem;
  color: var(--white);
  font-size: 1.18rem;
}

.section {
  position: relative;
  z-index: 0;
  padding: 5.5rem 1.25rem;
}

.section > * {
  position: relative;
  z-index: 1;
}

.services-section::before,
.signature-section::before {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(54px);
  opacity: 0.53;
}

.services-section::before {
  right: 0;
  top: 8rem;
  width: min(24rem, 46vw);
  height: min(24rem, 46vw);
  background: rgba(0, 113, 227, 0.066);
}

.signature-section::before {
  left: 0;
  bottom: 4rem;
  width: min(24rem, 48vw);
  height: min(24rem, 48vw);
  background: rgba(255, 55, 95, 0.061);
}

.services-section,
.process-section,
.signature-section {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 2rem;
}

.section-heading h2,
.contact-shell h2 {
  font-size: clamp(2.75rem, 7vw, 5.8rem);
  font-weight: 760;
}

.section-heading p,
.contact-shell p {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
}

.service-panel,
.soft-card,
.process-step,
.brief-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: none;
}

.service-panel {
  --accent: var(--blue);
  margin-top: 1rem;
  padding: clamp(1.1rem, 2.2vw, 1.65rem);
}

.service-community {
  --accent: var(--green);
}

.service-video {
  --accent: var(--pink);
}

.service-web {
  --accent: var(--blue);
}

.service-audio {
  --accent: var(--amber);
}

.service-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.service-index {
  color: var(--accent);
}

.service-top h3,
.soft-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.service-top svg {
  width: 3rem;
  height: 3rem;
  flex: 0 0 auto;
  padding: 0.65rem;
  border-radius: 18px;
  background: color-mix(in srgb, var(--accent) 12%, white);
  color: var(--accent);
}

.service-summary {
  max-width: 780px;
  margin: 1rem 0 0;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.skill-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  margin-top: 1.35rem;
}

.skill-column {
  padding: 1rem;
  border-radius: var(--radius-small);
  background: var(--paper);
}

.skill-column h4 {
  margin: 0 0 0.78rem;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.skill-column ul {
  display: grid;
  gap: 0.46rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.skill-column li {
  color: var(--muted);
  font-size: 0.96rem;
}

.skill-column li::before {
  content: "";
  display: inline-block;
  width: 0.34rem;
  height: 0.34rem;
  margin-right: 0.55rem;
  border-radius: 999px;
  background: var(--accent);
  vertical-align: 0.08rem;
}

.tool-cloud,
.soft-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.52rem;
}

.tool-cloud span,
.soft-grid span,
.brief-grid > span {
  display: inline-flex;
  align-items: center;
  min-height: 2.3rem;
  padding: 0.5rem 0.7rem;
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 650;
}

.process-section {
  padding-top: 5rem;
}

.process-shell {
  display: grid;
  gap: 1.25rem;
}

.process-board {
  position: relative;
  display: grid;
  gap: 0.8rem;
}

.process-line {
  display: none;
}

.process-step {
  min-height: 10rem;
  padding: 1.25rem;
  background: var(--surface);
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms ease,
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.process-board.is-visible .process-step {
  opacity: 1;
  transform: translateY(0);
}

.process-board.is-visible .process-step:nth-of-type(1) {
  transition-delay: 60ms;
}

.process-board.is-visible .process-step:nth-of-type(2) {
  transition-delay: 120ms;
}

.process-board.is-visible .process-step:nth-of-type(3) {
  transition-delay: 180ms;
}

.process-board.is-visible .process-step:nth-of-type(4) {
  transition-delay: 240ms;
}

.process-board.is-visible .process-step:nth-of-type(5) {
  transition-delay: 300ms;
}

.process-step h3,
.brief-panel h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.45rem;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.process-step p:not(.service-index) {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

.signature-section {
  padding-top: 2rem;
}

.signature-layout {
  display: grid;
  gap: 1.25rem;
}

.soft-card {
  padding: 1.35rem;
}

.soft-card h3 {
  margin-bottom: 1rem;
}

.contact-section {
  padding: 5.5rem 1.25rem;
  background:
    radial-gradient(circle at 16% 18%, rgba(0, 113, 227, 0.242), transparent 28rem),
    radial-gradient(circle at 84% 70%, rgba(125, 95, 255, 0.198), transparent 30rem),
    var(--dark);
  color: var(--white);
}

.contact-shell {
  display: grid;
  gap: 1.3rem;
  width: min(980px, 100%);
  margin: 0 auto;
}

.contact-shell h2 {
  color: var(--white);
}

.contact-shell p {
  color: rgba(255, 255, 255, 0.66);
}

.contact-actions {
  justify-content: flex-start;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.78rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 700;
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.social-links a:hover,
.social-links a:focus-visible {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  transform: translateY(-2px);
}

.social-links svg {
  width: 1.05rem;
  height: 1.05rem;
}

.social-mark {
  display: inline-grid;
  place-items: center;
  width: 1.05rem;
  height: 1.05rem;
  color: currentColor;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1;
}

.social-facebook {
  transform: translateY(0.08rem);
}

.brief-panel {
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.brief-panel h3 {
  color: var(--white);
}

.brief-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
  margin-top: 1rem;
}

.brief-grid > span {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  padding: 1.35rem 1.25rem;
  background: var(--dark);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.95rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 650;
}

.reveal :is(
  .hero-logo,
  .eyebrow,
  #legal-title,
  #tarifs-title,
  #pricing-title,
  .legal-lead,
  #hero-title,
  .hero-lead,
  .section-kicker,
  .section-heading h2,
  .section-heading p,
  .pricing-category-heading h2,
  .price-card h3,
  .price-value,
  .rate-panel h3,
  .support-card span,
  .support-card strong,
  .pricing-note h2,
  .pricing-note p:not(.section-kicker),
  .ribbon-copy h2,
  .service-top h3,
  .service-summary,
  .process-step h3,
  .process-step p:not(.service-index),
  .contact-shell h2,
  .contact-shell p,
  .brief-panel h3,
  .brief-grid span,
  .soft-card h3
) {
  opacity: 0;
  filter: blur(14px);
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 720ms ease,
    filter 860ms ease,
    transform 980ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--text-delay, 0ms);
  will-change: opacity, filter, transform;
}

.reveal.is-visible :is(
  .hero-logo,
  .eyebrow,
  #legal-title,
  #tarifs-title,
  #pricing-title,
  .legal-lead,
  #hero-title,
  .hero-lead,
  .section-kicker,
  .section-heading h2,
  .section-heading p,
  .pricing-category-heading h2,
  .price-card h3,
  .price-value,
  .rate-panel h3,
  .support-card span,
  .support-card strong,
  .pricing-note h2,
  .pricing-note p:not(.section-kicker),
  .ribbon-copy h2,
  .service-top h3,
  .service-summary,
  .process-step h3,
  .process-step p:not(.service-index),
  .contact-shell h2,
  .contact-shell p,
  .brief-panel h3,
  .brief-grid span,
  .soft-card h3
) {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

.reveal .hero-logo,
.reveal .eyebrow,
.reveal .section-kicker {
  --text-delay: 40ms;
}

.reveal #hero-title,
.reveal #legal-title,
.reveal #tarifs-title,
.reveal #pricing-title,
.reveal .section-heading h2,
.reveal .pricing-category-heading h2,
.reveal .price-card h3,
.reveal .rate-panel h3,
.reveal .pricing-note h2,
.reveal .ribbon-copy h2,
.reveal .contact-shell h2,
.reveal .service-top h3,
.reveal .brief-panel h3,
.reveal .soft-card h3,
.reveal .process-step h3 {
  --text-delay: 120ms;
}

.reveal .hero-lead,
.reveal .legal-lead,
.reveal .section-heading p,
.reveal .price-value,
.reveal .support-card strong,
.reveal .pricing-note p:not(.section-kicker),
.reveal .service-summary,
.reveal .contact-shell p,
.reveal .process-step p:not(.service-index) {
  --text-delay: 220ms;
}

.reveal .brief-grid span {
  --text-delay: 260ms;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 760ms ease,
    transform 960ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.hero-copy.reveal.is-visible,
.hero-stack.reveal.is-visible {
  transform: none;
}

@keyframes auraFloat {
  0%,
  100% {
    transform: translate3d(-50%, -50%, 0) scale(0.98);
  }
  50% {
    transform: translate3d(-50%, -54%, 0) scale(1.04);
  }
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (min-width: 720px) {
  .recruitment-grid,
  .referral-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .package-grid,
  .rate-columns,
  .support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .price-card-wide {
    grid-column: span 2;
  }

  .pricing-note {
    grid-template-columns: minmax(0, 1fr) auto;
  }

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

  .section {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .service-panel {
    padding: 1.65rem;
  }

  .skill-grid {
    grid-template-columns: 1fr 1fr 0.9fr;
  }

  .brief-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 860px) {
  .site-header {
    height: var(--header-height);
    padding: 0 1rem;
  }

  .nav-shell {
    grid-template-areas: "brand links cta";
    gap: 1rem;
    height: 100%;
    min-height: 0;
    padding: 0;
  }

  .nav-menu-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    grid-template-columns: none;
    justify-self: center;
    gap: clamp(0.62rem, 1.15vw, 1.2rem);
    max-height: none;
    overflow: visible;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .nav-links a {
    display: inline-flex;
    min-height: auto;
    padding: 0;
    background: transparent;
  }
}

@media (min-width: 1060px) {
  .package-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

  .pricing-grid {
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
  }

  .price-card-wide {
    grid-column: auto;
  }
}

@media (max-width: 859px) {
  .site-header.is-scrolled {
    background: rgba(251, 251, 253, 0.86);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.08);
  }

  .site-header.is-nav-hidden:not(.is-menu-open) {
    transform: translateY(calc(-100% - 0.35rem));
  }
}

@media (min-width: 1040px) {
  .hero-inner {
    gap: 3.25rem;
  }

  .referral-hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.62fr);
  }

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

  .ribbon-inner,
  .process-shell,
  .signature-layout,
  .contact-shell {
    grid-template-columns: minmax(0, 0.9fr) minmax(24rem, 0.7fr);
    align-items: start;
  }

  .process-shell .section-heading {
    position: sticky;
    top: 7rem;
  }

  .ribbon-stage {
    align-self: center;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding-inline: 0.75rem;
  }

  .brand span:last-child {
    display: none;
  }

  .nav-shell {
    gap: 0.42rem 0.7rem;
  }

  .nav-links a {
    padding-inline: 0.58rem;
  }

  .hero {
    padding: 6.35rem 1rem 4rem;
  }

  .hero h1 {
    font-size: clamp(3.05rem, 14vw, 3.6rem);
    overflow-wrap: anywhere;
  }

  .hero-lead {
    overflow-wrap: anywhere;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-product {
    border-radius: 28px;
  }

  .glass-module {
    min-height: auto;
    border-radius: 22px;
  }

  .service-top svg {
    width: 2.55rem;
    height: 2.55rem;
  }

  .legal-hero {
    padding: 6.75rem 1rem 3rem;
  }

  .legal-content {
    padding: 1rem 1rem 4.5rem;
  }

  .site-footer {
    justify-content: center;
    text-align: center;
  }
}

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

  .reveal,
  .reveal.is-visible {
    filter: none !important;
    transform: none !important;
  }
}
