:root {
  --ink: #020d1d;
  --navy: #041329;
  --blue: #358cff;
  --white: #f5f7fb;
  --muted: #b8c0cc;
  --line: rgba(226, 235, 248, 0.18);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: var(--ink);
}
body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: Arial, sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
:focus-visible {
  outline: 2px solid #78b5ff;
  outline-offset: 4px;
}
svg {
  display: block;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  background: #f5f7fb;
  color: #020d1d;
  font-size: 13px;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}
.skip-link:focus {
  transform: translateY(0);
}
.shell {
  width: min(1440px, calc(100% - 96px));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 784px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-background {
  position: absolute;
  inset: -1.5%;
  background-image:
    linear-gradient(
      90deg,
      rgba(1, 10, 24, 0.45) 0%,
      rgba(1, 10, 24, 0.12) 48%,
      rgba(1, 10, 24, 0.03) 100%
    ),
    url("polar-hero-background.webp");
  background-size: cover;
  background-position: center bottom;
  transform: scale(1.02);
  animation: hero-breathe 18s ease-in-out infinite alternate;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(0, 8, 20, 0.18),
    transparent 45%,
    rgba(0, 8, 20, 0.42)
  );
}
.hero-polar-star {
  position: absolute;
  z-index: 1;
  left: 68.8%;
  top: 14%;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  pointer-events: none;
  filter: drop-shadow(0 0 14px rgba(112, 184, 255, 0.95));
  animation: polar-star-breathe 3.8s ease-in-out infinite;
}
.hero-polar-star::before,
.hero-polar-star::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 999px;
}
.hero-polar-star::before {
  width: 2px;
  height: 58px;
  background: linear-gradient(
    transparent,
    rgba(180, 220, 255, 0.85) 30%,
    white 50%,
    rgba(180, 220, 255, 0.85) 70%,
    transparent
  );
}
.hero-polar-star::after {
  width: 58px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(180, 220, 255, 0.8) 30%,
    white 50%,
    rgba(180, 220, 255, 0.8) 70%,
    transparent
  );
}
.hero-polar-star span {
  width: 13px;
  height: 13px;
  transform: rotate(45deg);
  background: #f9fcff;
  border: 1px solid #b9ddff;
  box-shadow:
    0 0 12px 4px rgba(74, 154, 255, 0.8),
    0 0 35px 8px rgba(45, 124, 229, 0.28);
}

.site-header {
  position: relative;
  z-index: 2;
  height: 188px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 24px;
  animation: header-enter 0.75s ease-out both;
}
.brand {
  width: 236px;
  display: block;
  flex: 0 0 auto;
}
.brand-logo-image {
  display: block;
  width: 100%;
  aspect-ratio: 423 / 296;
  background: url("polar-logo-official-light.png") center / contain no-repeat;
  filter: drop-shadow(0 8px 24px rgba(0, 9, 22, 0.25));
  transition:
    filter 0.35s ease,
    transform 0.35s ease;
}
.brand:hover .brand-logo-image {
  filter: drop-shadow(0 0 20px rgba(52, 142, 255, 0.24));
  transform: translateY(-2px);
}
nav {
  display: flex;
  align-items: center;
  gap: 42px;
  padding-top: 14px;
  font-size: 12px;
  letter-spacing: 0.12em;
}
nav a {
  position: relative;
  opacity: 0.92;
  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}
nav a:not(.nav-contact)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0.12em;
  bottom: -8px;
  height: 1px;
  background: #5aa2ff;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.28s ease;
}
nav a:not(.nav-contact):hover::after,
nav a:not(.nav-contact):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}
nav a:hover,
nav a:focus-visible {
  color: #62a5ff;
  opacity: 1;
}
.nav-contact {
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 13px 23px;
  margin-left: 2px;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.nav-contact:hover,
.nav-contact:focus-visible {
  color: white;
  border-color: #5aa2ff;
  background: rgba(47, 134, 244, 0.13);
  box-shadow: 0 0 24px rgba(53, 143, 255, 0.12);
}

.hero-content {
  position: relative;
  z-index: 2;
}
.hero-copy {
  max-width: 600px;
  animation: hero-enter 0.9s 0.12s cubic-bezier(0.2, 0.75, 0.25, 1) both;
}
.hero-copy h1 {
  margin: 0;
  font-size: clamp(48px, 4.05vw, 66px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 330;
}
.blue-rule {
  display: block;
  width: 58px;
  height: 2px;
  margin: 27px 0 20px;
  background: var(--blue);
}
.hero-copy > p {
  margin: 0;
  color: #c4c9d2;
  font-size: 18px;
  line-height: 1.65;
  font-weight: 330;
}
.outline-button {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  margin-top: 25px;
  min-height: 44px;
  padding: 0 19px;
  border: 1px solid var(--blue);
  color: #55a0ff;
  font-size: 12px;
  letter-spacing: 0.08em;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
}
.outline-button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  transition: transform 0.25s ease;
}
.outline-button:hover,
.outline-button:focus-visible {
  background: var(--blue);
  color: white;
}
.outline-button:hover svg,
.outline-button:focus-visible svg {
  transform: translateX(5px);
}

.hero-expertises {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 640px;
  margin-top: 54px;
}
.hero-expertises article {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  min-height: 106px;
  padding-right: 22px;
  animation: hero-enter 0.75s cubic-bezier(0.2, 0.75, 0.25, 1) both;
}
.hero-expertises article:nth-child(1) {
  animation-delay: 0.35s;
}
.hero-expertises article:nth-child(2) {
  animation-delay: 0.45s;
}
.hero-expertises article:nth-child(3) {
  animation-delay: 0.55s;
}
.hero-expertises article + article {
  border-left: 1px solid var(--line);
  padding-left: 31px;
}
.expertise-icon svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: #e9edf4;
  stroke-width: 1.35;
  transition:
    stroke 0.3s ease,
    transform 0.3s ease,
    filter 0.3s ease;
}
.hero-expertises article:hover .expertise-icon svg {
  stroke: #6eafff;
  transform: translateY(-4px);
  filter: drop-shadow(0 0 10px rgba(70, 151, 255, 0.3));
}
.hero-expertises h2 {
  margin: 8px 0 10px;
  font-size: 15px;
  font-weight: 420;
  letter-spacing: 0.04em;
}
.hero-expertises p {
  margin: 0;
  color: #b8bec8;
  font-size: 13px;
  line-height: 1.65;
}
.hero-expertises article div > span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--blue);
  margin-top: 14px;
}

.manifesto {
  min-height: 240px;
  padding: 15px 48px 14px;
  text-align: center;
  background: radial-gradient(
    circle at 50% 10%,
    #09234a 0,
    #04152c 24%,
    #020d1d 65%
  );
}
.manifesto-star {
  height: 38px;
  color: #87c2ff;
  font-size: 38px;
  line-height: 1;
  text-shadow: 0 0 18px #4299ff;
  animation: star-pulse 3.2s ease-in-out infinite;
}
.manifesto h2 {
  margin: 2px 0 25px;
  font-size: clamp(26px, 2.1vw, 34px);
  font-weight: 340;
  letter-spacing: -0.018em;
}
.manifesto > p {
  margin: 0;
  color: #aeb7c5;
  font-size: 14px;
  line-height: 1.6;
}
.principles {
  width: min(1020px, 100%);
  margin: 10px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.principles > div {
  min-height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
}
.principles > div + div {
  border-left: 1px solid var(--line);
}
.principles svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: #edf3fb;
  stroke-width: 1.15;
}
.principles b {
  font-size: 11px;
  letter-spacing: 0.1em;
  font-weight: 420;
  color: #d3d8e0;
}
.handshake {
  color: var(--blue);
  font-size: 32px;
  line-height: 1;
  transform: rotate(45deg);
}

.section-shell {
  width: min(1280px, calc(100% - 96px));
  margin: 0 auto;
}
.section-kicker {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #58a0ff;
  font-size: 11px;
  letter-spacing: 0.22em;
}
.section-kicker > span {
  width: 30px;
  height: 1px;
  background: #58a0ff;
}
.section-heading {
  margin-top: 22px;
}
.split-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 70px;
}
.section-heading h2,
.approach-copy h2,
.about-copy h2,
.contact-layout h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 320;
}
.section-heading > p,
.split-heading > p {
  margin: 0 0 4px;
  color: #9eaabb;
  font-size: 16px;
  line-height: 1.8;
}

.services-section {
  padding: 118px 0 128px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  margin-top: 64px;
}
.service-card {
  position: relative;
  min-height: 320px;
  padding: 47px 50px 40px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(
    135deg,
    rgba(9, 33, 67, 0.38),
    rgba(3, 14, 31, 0.08)
  );
  transition:
    background 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
.service-card:hover {
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(17, 57, 112, 0.58),
    rgba(3, 14, 31, 0.18)
  );
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 5, 14, 0.34);
}
.service-number {
  color: #4d96f3;
  font-size: 12px;
  letter-spacing: 0.12em;
}
.service-top {
  display: flex !important;
  align-items: flex-start;
  justify-content: space-between;
  margin: 0 !important;
}
.service-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  color: #86bdfc;
  border: 1px solid rgba(89, 159, 248, 0.28);
  background: rgba(36, 111, 206, 0.08);
  transition:
    transform 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}
.service-card:hover .service-icon {
  color: #b7d8ff;
  border-color: rgba(95, 166, 255, 0.58);
  transform: translateY(-4px) rotate(2deg);
  box-shadow: 0 0 24px rgba(47, 135, 246, 0.14);
}
.service-icon svg {
  width: 43px;
  height: 43px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card h3 {
  margin: 39px 0 17px;
  font-size: 26px;
  font-weight: 380;
}
.service-card p {
  max-width: 475px;
  margin: 0;
  color: #9faaba;
  font-size: 15px;
  line-height: 1.75;
}
.service-card > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 27px;
}
.service-card > div span {
  padding: 7px 10px;
  border: 1px solid rgba(85, 148, 232, 0.25);
  color: #99bde9;
  font-size: 10px;
  letter-spacing: 0.06em;
}

.approach-section {
  padding: 120px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(120deg, #061936, #020d1e 62%);
}
.approach-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 120px;
}
.approach-copy h2 {
  margin-top: 26px;
}
.approach-copy > p {
  max-width: 430px;
  margin: 31px 0;
  color: #a5afbd;
  font-size: 15px;
  line-height: 1.8;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: #59a1ff;
  font-size: 11px;
  letter-spacing: 0.12em;
}
.text-link svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  transition: transform 0.2s ease;
}
.text-link:hover svg {
  transform: translateX(5px);
}
.approach-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.approach-steps li {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 10px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.approach-steps > li > span {
  color: #4d96f3;
  font-size: 11px;
  letter-spacing: 0.12em;
  padding-top: 6px;
}
.approach-steps h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 380;
}
.approach-steps p {
  margin: 0;
  color: #9da8b7;
  font-size: 14px;
  line-height: 1.7;
}

.about-section {
  padding: 128px 0;
}
.about-panel {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  min-height: 600px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #041630, #020c1b);
}
.about-visual {
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background:
    radial-gradient(
      circle at 50% 48%,
      rgba(29, 106, 212, 0.25),
      transparent 36%
    ),
    linear-gradient(145deg, #061a38, #010914);
  display: grid;
  place-items: center;
}
.north-star {
  position: absolute;
  top: 58px;
  left: 50%;
  color: #8ec7ff;
  font-size: 48px;
  text-shadow: 0 0 28px #348eff;
  animation: star-pulse 3.2s ease-in-out infinite;
}
.orbit {
  position: absolute;
  border: 1px solid rgba(69, 144, 241, 0.2);
  border-radius: 50%;
}
.orbit::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #62a8ff;
  box-shadow: 0 0 12px #3b91ff;
}
.orbit-one {
  width: 360px;
  height: 360px;
  border-style: dashed;
  animation: orbit-spin 30s linear infinite;
}
.orbit-two {
  width: 520px;
  height: 520px;
  animation: orbit-spin 44s linear infinite reverse;
}
.about-mark {
  display: block;
  width: 205px;
  aspect-ratio: 134 / 117;
  background: url("polar-mark-official-light.png") center / contain no-repeat;
  transform: translateY(35px);
  filter: drop-shadow(0 0 28px rgba(64, 139, 235, 0.2));
}
.about-copy {
  padding: 76px 72px;
}
.about-copy h2 {
  margin-top: 28px;
  max-width: 650px;
  font-size: clamp(36px, 3.2vw, 52px);
}
.about-copy > p {
  max-width: 680px;
  margin: 29px 0 0;
  color: #a6b0bf;
  font-size: 15px;
  line-height: 1.85;
}
.experience-line {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.experience-line span {
  color: #7f8c9f;
  font-size: 11px;
  line-height: 1.5;
}
.experience-line b {
  display: block;
  margin-bottom: 7px;
  color: #d7dce5;
  font-size: 10px;
  letter-spacing: 0.12em;
}

.resources-section {
  padding: 30px 0 130px;
}
.resources-section .split-heading {
  grid-template-columns: 1fr 0.7fr;
}
.resources-section .section-kicker {
  margin-bottom: 22px;
}
.resources-section .section-heading > div h2 {
  margin: 0;
}
.resource-list {
  margin-top: 65px;
  border-top: 1px solid var(--line);
}
.resource-list article {
  display: grid;
  grid-template-columns: 140px 1.15fr 0.85fr 45px;
  gap: 28px;
  align-items: center;
  min-height: 126px;
  border-bottom: 1px solid var(--line);
  transition:
    background 0.25s ease,
    padding 0.25s ease;
}
.resource-list article:hover {
  background: rgba(35, 91, 160, 0.09);
}
.resource-list article > span {
  color: #4d96f3;
  font-size: 10px;
  letter-spacing: 0.14em;
}
.resource-list h3 {
  margin: 0;
  font-size: 19px;
  font-weight: 380;
}
.resource-list p {
  margin: 0;
  color: #8f9bac;
  font-size: 13px;
  line-height: 1.65;
}
.resource-list a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(87, 155, 244, 0.35);
  display: grid;
  place-items: center;
  color: #58a0ff;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}
.resource-list article:hover a {
  transform: translateX(5px);
  color: white;
  background: rgba(56, 143, 251, 0.25);
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: 112px 0;
  border-top: 1px solid rgba(108, 166, 241, 0.3);
  background:
    radial-gradient(
      circle at 77% 12%,
      rgba(40, 124, 236, 0.28),
      transparent 22%
    ),
    linear-gradient(115deg, #09254e, #03132a 62%);
}
.contact-star {
  position: absolute;
  right: 14%;
  top: 14px;
  color: #a7d5ff;
  font-size: 55px;
  text-shadow: 0 0 32px #398fff;
  animation: star-pulse 3.2s ease-in-out infinite;
}
.contact-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 82px;
  align-items: start;
}
.contact-layout h2 {
  margin-top: 22px;
}
.contact-intro > p {
  max-width: 470px;
  margin: 30px 0 0;
  color: #b3bdca;
  font-size: 15px;
  line-height: 1.8;
}
.contact-assurances {
  display: grid;
  gap: 17px;
  margin-top: 42px;
  padding-top: 26px;
  border-top: 1px solid rgba(194, 218, 249, 0.18);
}
.contact-assurances span {
  color: #8e9db0;
  font-size: 12px;
  line-height: 1.55;
}
.contact-assurances b {
  display: block;
  margin-bottom: 3px;
  color: #dbe7f7;
  font-size: 10px;
  font-weight: 480;
  letter-spacing: 0.13em;
}
.contact-form {
  position: relative;
  padding: 42px;
  border: 1px solid rgba(126, 176, 239, 0.24);
  background: linear-gradient(
    145deg,
    rgba(3, 18, 40, 0.88),
    rgba(2, 11, 25, 0.78)
  );
  box-shadow: 0 24px 65px rgba(0, 6, 16, 0.24);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.contact-form label {
  display: grid;
  gap: 9px;
}
.contact-form label > span {
  color: #cbd7e6;
  font-size: 11px;
  letter-spacing: 0.055em;
}
.contact-form label > span b {
  color: #68aaff;
  font-weight: 500;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(125, 165, 218, 0.26);
  border-radius: 0;
  outline: none;
  background: rgba(2, 13, 29, 0.78);
  color: #f5f8fc;
  font: inherit;
  font-size: 14px;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}
.contact-form input,
.contact-form select {
  height: 49px;
  padding: 0 14px;
}
.contact-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #77adf2 50%),
    linear-gradient(135deg, #77adf2 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 21px,
    calc(100% - 13px) 21px;
  background-size:
    5px 5px,
    5px 5px;
  background-repeat: no-repeat;
  padding-right: 38px;
}
.contact-form textarea {
  min-height: 142px;
  padding: 13px 14px;
  line-height: 1.65;
  resize: vertical;
}
.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover {
  border-color: rgba(111, 173, 255, 0.48);
}
.contact-form input:focus-visible,
.contact-form select:focus-visible,
.contact-form textarea:focus-visible {
  border-color: #5ba3ff;
  background: rgba(3, 19, 43, 0.94);
  box-shadow: 0 0 0 3px rgba(67, 146, 247, 0.12);
}
.message-field {
  margin-top: 22px;
}
.honeypot {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.privacy-notice,
.form-noscript {
  margin-top: 20px;
  color: #9eabbb;
  font-size: 11px;
  line-height: 1.55;
}
.privacy-notice a,
.form-noscript a {
  color: #9fc9ff;
  text-decoration: underline;
  text-decoration-color: rgba(159, 201, 255, 0.45);
  text-underline-offset: 3px;
}
.privacy-notice a:hover,
.privacy-notice a:focus-visible,
.form-noscript a:hover,
.form-noscript a:focus-visible {
  color: #d8eaff;
}
.captcha-row {
  display: grid;
  grid-template-columns: minmax(250px, 310px) 1fr;
  gap: 18px;
  align-items: center;
  min-height: 72px;
  margin-top: 23px;
}
.turnstile-widget {
  min-height: 65px;
}
.captcha-state {
  color: #8d9aab;
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.captcha-state::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: #738195;
}
.captcha-state.is-ready {
  color: #9fc9ff;
}
.captcha-state.is-ready::before {
  background: #4a9fff;
  box-shadow: 0 0 9px rgba(57, 148, 255, 0.7);
}
.form-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 24px;
}
.form-actions > p {
  max-width: 250px;
  margin: 0;
  color: #77869a;
  font-size: 10px;
  line-height: 1.55;
}
.form-status {
  min-height: 20px;
  margin: 16px 0 0;
  font-size: 12px;
  line-height: 1.5;
}
.form-status.error {
  color: #ffb1b7;
}
.form-status.success {
  color: #9ed0ff;
}
.form-status.sending {
  color: #aab8ca;
}
.solid-button {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  padding: 15px 22px;
  background: #368ffb;
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.12em;
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}
.solid-button svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  transition: transform 0.25s ease;
}
.solid-button:hover {
  background: #55a2ff;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(27, 115, 226, 0.25);
}
.solid-button:hover svg {
  transform: translateX(5px);
}
.solid-button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
  transform: none;
  box-shadow: none;
}

footer {
  padding: 74px 0 28px;
  background: #010916;
}
.footer-layout {
  display: grid;
  grid-template-columns: 260px 1.3fr 0.65fr 0.8fr;
  gap: 50px;
}
.footer-layout .brand {
  width: 190px;
}
.footer-layout > div:not(.brand) {
  display: flex;
  flex-direction: column;
  gap: 9px;
  color: #778496;
  font-size: 12px;
}
.footer-layout b {
  margin-bottom: 8px;
  color: #d7dce4;
  font-size: 10px;
  letter-spacing: 0.14em;
}
.footer-layout a:hover {
  color: #58a0ff;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 65px;
  padding-top: 23px;
  border-top: 1px solid var(--line);
  color: #596678;
  font-size: 10px;
  letter-spacing: 0.05em;
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 20px;
}
.footer-legal-links a:hover,
.footer-legal-links a:focus-visible {
  color: #8fc3ff;
}

/* Pages d'information */
.utility-page {
  min-height: 100vh;
  background:
    radial-gradient(
      circle at 78% 0%,
      rgba(48, 132, 242, 0.14),
      transparent 28%
    ),
    linear-gradient(150deg, #041329 0%, #020d1d 54%, #010914 100%);
}
.utility-header {
  min-height: 150px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 24px;
  border-bottom: 1px solid var(--line);
}
.utility-header .brand {
  width: 190px;
}
.utility-back {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  color: #aeb9c8;
  font-size: 11px;
  letter-spacing: 0.12em;
}
.utility-back::before {
  content: "←";
  color: #58a0ff;
  font-size: 17px;
  line-height: 1;
}
.utility-back:hover,
.utility-back:focus-visible {
  color: #f5f7fb;
}
.legal-shell {
  width: min(900px, calc(100% - 96px));
  margin: 0 auto;
  padding: 94px 0 118px;
}
.legal-shell > .section-kicker {
  margin-bottom: 25px;
}
.legal-shell h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(44px, 6vw, 74px);
  line-height: 1.03;
  letter-spacing: -0.045em;
  font-weight: 320;
}
.legal-lead {
  max-width: 750px;
  margin: 28px 0 58px;
  color: #b0bac8;
  font-size: 17px;
  line-height: 1.75;
}
.legal-meta {
  display: block;
  margin-top: 18px;
  color: #718096;
  font-size: 11px;
  letter-spacing: 0.06em;
}
.legal-card {
  padding: 38px 0 42px;
  border-top: 1px solid var(--line);
}
.legal-card:last-of-type {
  border-bottom: 1px solid var(--line);
}
.legal-card h2 {
  margin: 0 0 23px;
  color: #edf3fb;
  font-size: clamp(23px, 3vw, 31px);
  line-height: 1.25;
  font-weight: 370;
}
.legal-card h3 {
  margin: 29px 0 12px;
  color: #dce7f5;
  font-size: 16px;
  font-weight: 500;
}
.legal-card p,
.legal-card li,
.legal-card dd,
.legal-card address {
  color: #a5b0c0;
  font-size: 15px;
  line-height: 1.8;
}
.legal-card p {
  margin: 0 0 15px;
}
.legal-card p:last-child {
  margin-bottom: 0;
}
.legal-card ul {
  margin: 0;
  padding-left: 20px;
}
.legal-card li + li {
  margin-top: 8px;
}
.legal-card address {
  font-style: normal;
}
.legal-card a {
  color: #8fc3ff;
  text-decoration: underline;
  text-decoration-color: rgba(143, 195, 255, 0.4);
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}
.legal-card a:hover,
.legal-card a:focus-visible {
  color: #d8eaff;
}
.legal-details {
  display: grid;
  grid-template-columns: minmax(150px, 0.42fr) 1fr;
  gap: 12px 28px;
  margin: 0;
}
.legal-details dt {
  color: #6f9fdc;
  font-size: 11px;
  line-height: 1.8;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.legal-details dd {
  margin: 0;
}
.legal-callout {
  margin: 25px 0 0;
  padding: 22px 24px;
  border-left: 2px solid #358cff;
  background: rgba(40, 112, 205, 0.09);
}
.utility-footer {
  padding: 0 0 28px;
  background: #010916;
}
.utility-footer .footer-bottom {
  margin-top: 0;
}
.error-page {
  min-height: calc(100vh - 150px);
  display: grid;
  place-items: center;
  padding: 70px 24px 110px;
  text-align: center;
}
.error-code {
  display: block;
  color: #58a0ff;
  font-size: 12px;
  letter-spacing: 0.28em;
}
.error-page h1 {
  margin: 23px 0 18px;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 320;
}
.error-page p {
  max-width: 610px;
  margin: 0 auto;
  color: #a9b4c4;
  font-size: 16px;
  line-height: 1.75;
}
.error-page .outline-button {
  margin-top: 36px;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}
.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.8s cubic-bezier(0.2, 0.75, 0.25, 1),
    transform 0.8s cubic-bezier(0.2, 0.75, 0.25, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@keyframes header-enter {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes hero-breathe {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.055) translate3d(-0.35%, -0.2%, 0);
  }
}

@keyframes polar-star-breathe {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(0.86) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: scale(1.08) rotate(5deg);
  }
}

@keyframes star-pulse {
  0%,
  100% {
    opacity: 0.7;
    transform: scale(0.94) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: scale(1.08) rotate(8deg);
  }
}

@keyframes orbit-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1050px) {
  .shell {
    width: min(100% - 48px, 960px);
  }
  nav {
    gap: 22px;
  }
  nav a:not(.nav-contact) {
    display: none;
  }
  .hero {
    min-height: 830px;
  }
  .hero-expertises {
    width: 610px;
  }
  .section-shell {
    width: min(100% - 48px, 960px);
  }
  .approach-layout {
    gap: 60px;
  }
  .about-panel {
    grid-template-columns: 0.7fr 1.3fr;
  }
  .about-copy {
    padding: 60px 45px;
  }
  .experience-line {
    grid-template-columns: 1fr;
  }
  .resource-list article {
    grid-template-columns: 115px 1.15fr 0.85fr 40px;
    gap: 18px;
  }
  .contact-layout {
    grid-template-columns: 0.7fr 1.3fr;
    gap: 48px;
  }
  .contact-form {
    padding: 34px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .captcha-row {
    grid-template-columns: 1fr;
  }
  .footer-layout {
    grid-template-columns: 220px 1fr 1fr;
  }
  .footer-layout > div:last-child {
    grid-column: 2;
  }
}

@media (max-width: 720px) {
  .shell {
    width: calc(100% - 34px);
  }
  .hero {
    min-height: auto;
    padding-bottom: 28px;
  }
  .hero-background {
    background-position: 67% bottom;
    opacity: 0.74;
  }
  .hero-polar-star {
    left: 67.5%;
    top: 18%;
    width: 56px;
    height: 56px;
  }
  .hero-polar-star::before {
    height: 45px;
  }
  .hero-polar-star::after {
    width: 45px;
  }
  .hero-polar-star span {
    width: 10px;
    height: 10px;
  }
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
      180deg,
      rgba(1, 9, 22, 0.08),
      rgba(1, 9, 22, 0.48) 42%,
      rgba(1, 9, 22, 0.92) 72%
    );
  }
  .site-header {
    height: 136px;
    padding-top: 18px;
  }
  .brand {
    width: 150px;
  }
  nav {
    padding-top: 12px;
  }
  .nav-contact {
    font-size: 10px;
    padding: 10px 13px;
  }
  .hero-copy h1 {
    font-size: 43px;
  }
  .hero-copy > p {
    font-size: 16px;
  }
  .desktop-only {
    display: none;
  }
  .hero-expertises {
    width: 100%;
    grid-template-columns: 1fr;
    margin-top: 50px;
    gap: 18px;
  }
  .hero-expertises article {
    min-height: 84px;
    padding: 0 0 16px;
    border-bottom: 1px solid var(--line);
  }
  .hero-expertises article + article {
    border-left: 0;
    padding-left: 0;
  }
  .manifesto {
    padding: 28px 20px 30px;
  }
  .manifesto h2 {
    line-height: 1.28;
  }
  .principles {
    grid-template-columns: 1fr 1fr;
    margin-top: 24px;
    gap: 8px 0;
  }
  .principles > div {
    min-height: 50px;
  }
  .principles > div:nth-child(3) {
    border-left: 0;
  }
  .section-shell {
    width: calc(100% - 34px);
  }
  .services-section {
    padding: 84px 0;
  }
  .split-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .services-grid {
    grid-template-columns: 1fr;
    margin-top: 45px;
  }
  .service-card {
    min-height: 280px;
    padding: 35px 28px;
  }
  .service-card h3 {
    margin-top: 38px;
  }
  .approach-section {
    padding: 84px 0;
  }
  .approach-layout {
    grid-template-columns: 1fr;
    gap: 65px;
  }
  .about-section {
    padding: 84px 0;
  }
  .about-panel {
    grid-template-columns: 1fr;
  }
  .about-visual {
    min-height: 350px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .orbit-one {
    width: 250px;
    height: 250px;
  }
  .orbit-two {
    width: 350px;
    height: 350px;
  }
  .about-mark {
    width: 150px;
  }
  .about-copy {
    padding: 45px 28px;
  }
  .experience-line {
    grid-template-columns: 1fr;
  }
  .resources-section {
    padding-bottom: 88px;
  }
  .resources-section .split-heading {
    grid-template-columns: 1fr;
  }
  .resource-list {
    margin-top: 42px;
  }
  .resource-list article {
    grid-template-columns: 1fr 38px;
    gap: 12px;
    padding: 25px 0;
  }
  .resource-list article > span,
  .resource-list article > p {
    grid-column: 1;
  }
  .resource-list article > a {
    grid-column: 2;
    grid-row: 1 / span 3;
  }
  .contact-section {
    padding: 84px 0;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .contact-form {
    padding: 29px 22px;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .form-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .form-actions > p {
    max-width: none;
  }
  .footer-layout {
    grid-template-columns: 1fr 1fr;
    gap: 45px 25px;
  }
  .footer-layout .brand {
    grid-column: 1 / -1;
  }
  .footer-layout > div:last-child {
    grid-column: auto;
  }
  .footer-bottom {
    gap: 20px;
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-legal-links {
    justify-content: flex-start;
  }
  .utility-header {
    min-height: 122px;
    padding-top: 18px;
  }
  .utility-header .brand {
    width: 150px;
  }
  .utility-back {
    margin-top: 14px;
    font-size: 9px;
  }
  .legal-shell {
    width: calc(100% - 34px);
    padding: 68px 0 84px;
  }
  .legal-lead {
    margin-bottom: 42px;
    font-size: 16px;
  }
  .legal-details {
    grid-template-columns: 1fr;
    gap: 3px;
  }
  .legal-details dd + dt {
    margin-top: 13px;
  }
}

/* V9 — historique : verticale protection numérique */
.hero { min-height: 930px; }
.hero-expertises { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.hero-expertises article { grid-template-columns: 42px 1fr; gap: 14px; padding-right: 18px; }
.hero-expertises article + article { padding-left: 22px; }
.hero-expertises h2 { min-height: 30px; font-size: 10px; line-height: 1.4; }
.hero-expertises p { font-size: 12px; }
.expertise-private { background: linear-gradient(135deg, rgba(53, 140, 255, 0.14), transparent); }
.private-service-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 70px 0.72fr 1.28fr;
  gap: 22px;
  min-height: 215px !important;
  align-items: start;
  background: linear-gradient(135deg, rgba(18, 57, 112, 0.62), rgba(3, 14, 31, 0.16));
}
.private-service-card h3 { margin: 0; }
.private-service-card .text-link { grid-column: 2; margin-top: -44px; }
.private-service-card > p { max-width: 610px; }

.private-header {
  min-height: 152px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 20px;
}
.private-header .brand { width: 190px; }
.private-header .utility-back { margin-top: 24px; }
.private-hero {
  min-height: 590px;
  display: flex;
  align-items: center;
  padding: 50px 0 96px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 80% 12%, rgba(52, 133, 237, 0.18), transparent 34%),
    linear-gradient(135deg, #061a38, #020c1b);
}
.private-hero h1 {
  max-width: 1080px;
  margin: 30px 0 26px;
  font-size: clamp(48px, 5.6vw, 80px);
  line-height: 1.04;
  letter-spacing: -0.05em;
  font-weight: 300;
}
.private-hero p {
  max-width: 790px;
  margin: 0;
  color: #aeb9c8;
  font-size: 17px;
  line-height: 1.8;
}
.private-scope { padding: 118px 0; }
.private-scope-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 60px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.private-scope-grid article {
  min-height: 250px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(9, 33, 67, 0.32), rgba(3, 14, 31, 0.06));
}
.private-scope-grid article > span { color: #4d96f3; font-size: 11px; }
.private-scope-grid h3 { margin: 34px 0 14px; font-size: 21px; font-weight: 380; }
.private-scope-grid p { margin: 0; color: #9faaba; font-size: 14px; line-height: 1.7; }
.private-approach { border-top: 1px solid var(--line); }
.private-deliverables { padding: 110px 0; }
.private-deliverable-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 45px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.private-deliverable-grid div {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.private-deliverable-grid b { color: #4d96f3; font-size: 11px; font-weight: 400; }
.private-deliverable-grid span { color: #d6dde7; font-size: 15px; line-height: 1.5; }
.private-boundary {
  margin: 28px 0 0;
  padding: 24px 28px;
  border-left: 2px solid var(--blue);
  background: rgba(29, 92, 175, 0.1);
  color: #aeb9c8;
  font-size: 14px;
  line-height: 1.7;
}
.private-cta { padding: 108px 0; border-top: 1px solid var(--line); background: #04142c; }
.private-cta > .section-shell { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: end; }
.private-cta h2 { margin: 24px 0 0; font-size: clamp(38px, 4vw, 62px); line-height: 1.08; letter-spacing: -0.04em; font-weight: 320; }
.private-cta > div > div:last-child > p { margin: 0; color: #aeb9c8; font-size: 15px; line-height: 1.8; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

@media (max-width: 1180px) {
  .hero { min-height: 1080px; }
  .hero-expertises { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hero-expertises article:nth-child(4) { border-left: 0; }
  .hero-expertises article:nth-child(n + 4) { border-top: 1px solid var(--line); }
  .hero-expertises .expertise-private { grid-column: span 2; }
}

@media (max-width: 720px) {
  .hero { min-height: auto; }
  .hero-expertises { grid-template-columns: 1fr; }
  .hero-expertises article,
  .hero-expertises article + article { grid-template-columns: 50px 1fr; padding: 22px 0; border-left: 0; border-top: 1px solid var(--line); }
  .hero-expertises .expertise-private { grid-column: auto; }
  .private-service-card { grid-column: auto; display: block; min-height: 0 !important; }
  .private-service-card h3 { margin: 28px 0 15px; }
  .private-service-card .text-link { display: inline-flex; margin-top: 28px; }
  .private-header { min-height: 124px; }
  .private-header .brand { width: 150px; }
  .private-header .utility-back { margin-top: 14px; font-size: 9px; }
  .private-hero { min-height: 520px; padding: 55px 0 78px; }
  .private-hero h1 { font-size: 40px; }
  .private-scope,.private-deliverables,.private-cta { padding: 82px 0; }
  .private-scope-grid { grid-template-columns: 1fr; margin-top: 45px; }
  .private-scope-grid article { min-height: 0; }
  .private-deliverable-grid { grid-template-columns: 1fr 1fr; }
  .private-cta > .section-shell { grid-template-columns: 1fr; gap: 38px; }
}

@media (max-width: 460px) {
  .private-hero h1 { font-size: 36px; }
  .private-deliverable-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
  .motion-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* V8 — contenu factuel, axe IA et capacité OSINT complémentaire */
.hero { min-height: 900px; }
.hero-content { padding-bottom: 78px; }
.hero-copy > p { max-width: 620px; }
.hero-expertises {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  margin-top: 105px;
  border-top: 1px solid var(--line);
}
.hero-expertises article {
  min-height: 150px;
  padding: 28px 24px 10px 0;
}
.hero-expertises article + article {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}
.hero-expertises h2 { font-size: 11px; }
.hero-expertises p { max-width: 220px; }
.expertise-ai { background: linear-gradient(135deg, rgba(53, 140, 255, .08), transparent); }
.section-heading {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: end;
  gap: 70px;
}
.section-heading > div h2 { margin-top: 24px; }
.v8-services .service-card { min-height: 265px; }
.v8-services .service-card h3 { margin-top: 34px; }
.ai-card { background: linear-gradient(135deg, rgba(21, 65, 126, .62), rgba(3, 14, 31, .16)); }
.osint-note {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 80px;
  margin-top: 34px;
  padding: 38px 42px;
  border: 1px solid rgba(92, 161, 249, .24);
  background: rgba(8, 27, 57, .42);
}
.osint-note h3 { margin: 18px 0 0; font-size: 26px; font-weight: 380; }
.osint-note p { margin: 0; color: #a7b2c1; font-size: 15px; line-height: 1.8; }
.resources-section { padding: 118px 0; border-top: 1px solid var(--line); }
.v8-offers { margin-top: 58px; }
.v8-offers article { grid-template-columns: 70px 1fr 1fr 46px; }
.about-mark { object-fit: contain; }

@media (max-width: 1100px) {
  .hero { min-height: 1020px; }
  .hero-expertises { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 80px; }
  .hero-expertises article:nth-child(3) { border-left: 0; }
  .hero-expertises article:nth-child(n+3) { border-top: 1px solid var(--line); }
  .section-heading { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 720px) {
  .hero { min-height: auto; }
  .hero-content { padding-bottom: 58px; }
  .hero-expertises { grid-template-columns: 1fr; margin-top: 55px; }
  .hero-expertises article,
  .hero-expertises article + article { min-height: 0; padding: 22px 0; border-left: 0; border-top: 1px solid var(--line); }
  .osint-note { grid-template-columns: 1fr; gap: 24px; padding: 30px 26px; }
  .v8-offers article { grid-template-columns: 1fr 38px; }
  .v8-offers article > span,
  .v8-offers article > p { grid-column: 1; }
  .v8-offers article > a { grid-column: 2; grid-row: 1 / span 3; }
}

/* V9 final cascade */
.hero { min-height: 930px; }
.hero-expertises { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.hero-expertises article { grid-template-columns: 42px 1fr; gap: 14px; padding: 28px 18px 10px 0; }
.hero-expertises article + article { padding-left: 22px; }
.hero-expertises h2 { min-height: 30px; font-size: 10px; line-height: 1.4; }
.v8-services .private-service-card { min-height: 215px; }
.v8-services .private-service-card h3 { margin: 0; }

@media (max-width: 1180px) {
  .hero { min-height: 1080px; }
  .hero-expertises { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 80px; }
  .hero-expertises article:nth-child(3) { border-left: 1px solid var(--line); }
  .hero-expertises article:nth-child(4) { border-left: 0; }
  .hero-expertises article:nth-child(n + 4) { border-top: 1px solid var(--line); }
  .hero-expertises .expertise-private { grid-column: span 2; }
}

@media (max-width: 720px) {
  .hero { min-height: auto; }
  .hero-expertises { grid-template-columns: 1fr; margin-top: 55px; }
  .hero-expertises article,
  .hero-expertises article + article { grid-template-columns: 50px 1fr; min-height: 0; padding: 22px 0; border-left: 0; border-top: 1px solid var(--line); }
  .hero-expertises .expertise-private { grid-column: auto; }
  .v8-services .private-service-card { min-height: 0; }
  .v8-services .private-service-card h3 { margin: 28px 0 15px; }
}

/* V10 — pages métiers et référencement local */
.hero-expertises article div > a {
  display: inline-block;
  margin-top: 11px;
  color: #86bdfc;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-expertises article div > a:hover,
.hero-expertises article div > a:focus-visible {
  color: #d8eaff;
}
.service-card > .text-link {
  margin-top: 25px;
}
.text-link > span {
  font-size: 17px;
  transition: transform 0.2s ease;
}
.text-link:hover > span,
.text-link:focus-visible > span {
  transform: translateX(5px);
}
.local-section {
  padding: 0 0 124px;
}
.local-panel {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 90px;
  align-items: end;
  padding: 62px 66px;
  border: 1px solid rgba(92, 161, 249, 0.25);
  background:
    radial-gradient(circle at 88% 20%, rgba(52, 140, 255, 0.17), transparent 35%),
    linear-gradient(135deg, #061a38, #020c1b);
}
.local-panel h2 {
  margin: 24px 0 0;
  font-size: clamp(38px, 4vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 320;
}
.local-panel p {
  margin: 0;
  color: #aeb9c8;
  font-size: 15px;
  line-height: 1.8;
}
.service-header-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  padding-top: 22px;
}
.service-header-actions a {
  color: #aeb9c8;
  font-size: 10px;
  letter-spacing: 0.1em;
}
.service-header-actions a:hover,
.service-header-actions a:focus-visible {
  color: #f5f7fb;
}
.service-header-actions .utility-back {
  margin-top: 0;
}
.service-page .private-hero {
  min-height: 560px;
}
.service-page .private-hero h1 {
  max-width: 1120px;
}
.service-page .private-hero p {
  max-width: 820px;
}
.service-breadcrumb {
  margin: 0 0 24px;
  color: #7f8da0;
  font-size: 10px;
  letter-spacing: 0.08em;
}
.service-breadcrumb a {
  color: #9fc9ff;
}
.service-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 42px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.service-facts div {
  min-height: 112px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.service-facts b {
  display: block;
  margin-bottom: 9px;
  color: #74aff8;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.service-facts span {
  color: #d2d9e3;
  font-size: 14px;
  line-height: 1.55;
}
.service-related {
  padding: 102px 0;
  border-top: 1px solid var(--line);
}
.service-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 38px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.service-related-grid a {
  min-height: 150px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 27, 58, 0.3);
}
.service-related-grid b {
  display: block;
  margin-bottom: 18px;
  color: #4d96f3;
  font-size: 10px;
  font-weight: 450;
  letter-spacing: 0.12em;
}
.service-related-grid span {
  color: #d7dee8;
  font-size: 17px;
  line-height: 1.5;
}
.service-related-grid a:hover,
.service-related-grid a:focus-visible {
  background: rgba(27, 84, 158, 0.24);
}

@media (max-width: 900px) {
  .local-panel {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .service-header-actions a:not(.utility-back) {
    display: none;
  }
  .service-facts,
  .service-related-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .local-section { padding-bottom: 82px; }
  .local-panel { padding: 38px 26px; }
  .service-header-actions { padding-top: 12px; }
  .service-page .private-hero { min-height: 500px; }
  .service-facts { grid-template-columns: 1fr; }
}

/* V11 — expérience, décisions et scénarios d’intervention */
.experience-section,
.decision-section,
.trigger-section {
  padding: 118px 0;
  border-top: 1px solid var(--line);
}
.experience-section {
  background: linear-gradient(135deg, rgba(6, 25, 54, 0.56), rgba(2, 13, 29, 0.22));
}
.experience-grid,
.decision-grid,
.trigger-grid {
  display: grid;
  margin-top: 58px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.experience-grid,
.decision-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.trigger-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.experience-grid article,
.decision-grid article,
.trigger-grid article {
  min-height: 220px;
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(9, 33, 67, 0.36), rgba(3, 14, 31, 0.08));
}
.experience-grid article > span,
.decision-grid article > span,
.trigger-grid article > span {
  color: #4d96f3;
  font-size: 11px;
  letter-spacing: 0.08em;
}
.experience-grid h3,
.decision-grid h3,
.trigger-grid h3 {
  margin: 32px 0 14px;
  font-size: 20px;
  font-weight: 380;
  line-height: 1.35;
}
.experience-grid p,
.decision-grid p,
.trigger-grid p {
  margin: 0;
  color: #9faaba;
  font-size: 14px;
  line-height: 1.7;
}
.experience-more {
  margin-top: 36px;
}
.about-link {
  margin-top: 28px;
}
.decision-section {
  background: #031225;
}
.trigger-section {
  background: linear-gradient(145deg, #041630, #020c1b);
}

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

@media (max-width: 720px) {
  .experience-section,
  .decision-section,
  .trigger-section {
    padding: 82px 0;
  }
  .experience-grid,
  .decision-grid,
  .trigger-grid {
    grid-template-columns: 1fr;
    margin-top: 44px;
  }
  .experience-grid article,
  .decision-grid article,
  .trigger-grid article {
    min-height: 0;
  }
}

/* V12 — pictogrammes métiers et animation orbitale premium */
.svg-symbols {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

.topic-emblem {
  position: relative;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #8cc4ff;
  filter: drop-shadow(0 0 14px rgba(61, 145, 255, 0.12));
}
.topic-emblem::before,
.topic-emblem::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.topic-emblem::before {
  inset: 0;
  border: 1px solid rgba(105, 173, 255, 0.34);
  background: radial-gradient(circle, rgba(45, 126, 229, 0.12), transparent 67%);
  box-shadow: inset 0 0 22px rgba(31, 104, 202, 0.1);
}
.topic-emblem::after {
  inset: 6px;
  border: 1px solid transparent;
  border-top-color: rgba(126, 190, 255, 0.78);
  border-left-color: rgba(126, 190, 255, 0.22);
  transform: rotate(-38deg);
  transition: transform 0.65s cubic-bezier(0.2, 0.75, 0.2, 1);
}
.topic-emblem svg {
  position: relative;
  z-index: 2;
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: color 0.3s ease, transform 0.3s ease;
}
.topic-emblem b {
  position: absolute;
  z-index: 3;
  top: -5px;
  right: -7px;
  min-width: 27px;
  height: 20px;
  display: grid;
  place-items: center;
  padding: 0 5px;
  border: 1px solid rgba(104, 174, 255, 0.45);
  background: #04152e;
  color: #8cc4ff;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.08em;
  box-shadow: 0 0 14px rgba(43, 126, 232, 0.14);
}
.topic-emblem--small {
  width: 56px;
  height: 56px;
}
.topic-emblem--small svg {
  width: 29px;
  height: 29px;
}
.topic-emblem--small b {
  min-width: 24px;
  height: 18px;
  font-size: 8px;
}
.topic-emblem--medium {
  width: 62px;
  height: 62px;
}
.topic-emblem--medium svg {
  width: 32px;
  height: 32px;
}
.service-card:hover .topic-emblem::after,
.resource-list article:hover .topic-emblem::after,
.experience-grid article:hover .topic-emblem::after {
  transform: rotate(76deg);
}
.service-card:hover .topic-emblem svg,
.resource-list article:hover .topic-emblem svg,
.experience-grid article:hover .topic-emblem svg {
  color: #d7eaff;
  transform: scale(1.06);
}
.service-card h3 {
  margin-top: 29px;
}
.private-service-card h3 {
  margin-top: 7px;
}
.resource-list article {
  grid-template-columns: 96px 1.15fr 0.85fr 45px;
}
.resource-list article > .topic-emblem {
  justify-self: start;
}
.experience-grid article {
  transition: background 0.3s ease, transform 0.3s ease;
}
.experience-grid article:hover {
  background: linear-gradient(135deg, rgba(19, 58, 113, 0.52), rgba(3, 14, 31, 0.12));
  transform: translateY(-4px);
}
.experience-grid article > .topic-emblem {
  display: grid;
}
.experience-grid h3 {
  margin-top: 26px;
}
.audit-format-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.audit-format-grid article {
  min-height: 245px;
}
.external-exposure-section {
  border-top: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(6, 28, 60, 0.86), rgba(2, 12, 27, 0.96));
}

.about-visual {
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 50%, rgba(39, 126, 239, 0.3), transparent 31%),
    radial-gradient(circle at 50% 50%, rgba(11, 53, 111, 0.35), transparent 57%),
    linear-gradient(145deg, #061b3b, #010914);
}
.orbital-field {
  position: absolute;
  z-index: 0;
  inset: 0;
  opacity: 0.3;
  background-image: radial-gradient(circle, rgba(120, 184, 255, 0.28) 1px, transparent 1px);
  background-size: 29px 29px;
  mask-image: radial-gradient(circle at 50% 50%, #000 0, transparent 72%);
}
.orbital-field::before,
.orbital-field::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: linear-gradient(90deg, transparent, rgba(108, 177, 255, 0.23), transparent);
  transform: translate(-50%, -50%);
}
.orbital-field::before {
  width: 82%;
  height: 1px;
}
.orbital-field::after {
  width: 1px;
  height: 82%;
  background: linear-gradient(180deg, transparent, rgba(108, 177, 255, 0.18), transparent);
}
.about-visual .orbit {
  z-index: 1;
  border-color: rgba(82, 157, 249, 0.24);
  box-shadow: inset 0 0 22px rgba(36, 118, 223, 0.05);
}
.about-visual .orbit::before,
.about-visual .orbit::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #67b2ff;
  box-shadow: 0 0 8px #3b91ff, 0 0 20px rgba(59, 145, 255, 0.75);
}
.about-visual .orbit::after {
  left: 50%;
  top: -3px;
}
.about-visual .orbit::before {
  right: 7%;
  bottom: 18%;
  width: 4px;
  height: 4px;
  opacity: 0.7;
}
.about-visual .orbit-one {
  width: 286px;
  height: 286px;
  border-style: dashed;
  animation: orbit-spin 24s linear infinite;
}
.about-visual .orbit-two {
  width: 404px;
  height: 404px;
  animation: orbit-spin 36s linear infinite reverse;
}
.about-visual .orbit-three {
  width: 482px;
  height: 274px;
  border-color: rgba(94, 169, 255, 0.2);
  animation: orbit-spin 28s linear infinite;
}
.about-visual .orbit-four {
  width: 588px;
  height: 588px;
  border-style: dashed;
  border-color: rgba(94, 169, 255, 0.12);
  animation: orbit-spin 58s linear infinite reverse;
}
.orbit-scan {
  position: absolute;
  z-index: 2;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: conic-gradient(from 20deg, transparent 0 69%, rgba(97, 172, 255, 0.48) 82%, transparent 91%);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 0);
  mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 0);
  opacity: 0.68;
  animation: orbit-spin 16s linear infinite;
}
.polar-core {
  position: absolute;
  z-index: 2;
  width: 242px;
  height: 242px;
  border: 1px solid rgba(112, 181, 255, 0.1);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(49, 134, 245, 0.18), transparent 66%);
  box-shadow: 0 0 52px rgba(40, 126, 235, 0.14);
  animation: core-breathe 6s ease-in-out infinite;
}
.about-mark {
  position: relative;
  z-index: 4;
  transform: none;
  filter: drop-shadow(0 0 30px rgba(76, 156, 255, 0.35));
  animation: mark-float 7s ease-in-out infinite;
}

.private-scope-grid article > span:not(.topic-emblem),
.decision-grid article > span:not(.topic-emblem),
.trigger-grid article > span:not(.topic-emblem) {
  position: relative;
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(91, 162, 251, 0.32);
  border-radius: 50%;
  background: rgba(26, 89, 169, 0.08);
}
.private-scope-grid article > span:not(.topic-emblem)::after,
.decision-grid article > span:not(.topic-emblem)::after,
.trigger-grid article > span:not(.topic-emblem)::after {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid transparent;
  border-top-color: rgba(115, 184, 255, 0.72);
  border-radius: 50%;
  transform: rotate(-32deg);
}
.private-scope-grid h3,
.decision-grid h3,
.trigger-grid h3 {
  margin-top: 26px;
}
.approach-steps li {
  grid-template-columns: 62px 1fr;
}
.approach-steps > li > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(91, 162, 251, 0.3);
  border-radius: 50%;
  background: rgba(26, 89, 169, 0.08);
}
.private-deliverable-grid b,
.service-related-grid b {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(91, 162, 251, 0.28);
  border-radius: 50%;
  background: rgba(26, 89, 169, 0.07);
}

@keyframes core-breathe {
  0%, 100% { opacity: 0.58; transform: scale(0.94); }
  50% { opacity: 1; transform: scale(1.06); }
}
@keyframes mark-float {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, -7px, 0) scale(1.025); }
}

@media (max-width: 1050px) {
  .resource-list article {
    grid-template-columns: 78px 1.15fr 0.85fr 40px;
  }
  .about-visual .orbit-four {
    width: 500px;
    height: 500px;
  }
}

@media (max-width: 720px) {
  .audit-format-grid {
    grid-template-columns: 1fr;
  }
  .private-service-card h3 {
    margin-top: 24px;
  }
  .resource-list article {
    grid-template-columns: 66px 1fr 38px;
    gap: 12px 16px;
    padding: 25px 0;
  }
  .resource-list article > .topic-emblem {
    grid-column: 1;
    grid-row: 1 / span 2;
  }
  .resource-list article > h3 {
    grid-column: 2;
    grid-row: 1;
  }
  .resource-list article > p {
    grid-column: 2;
    grid-row: 2;
  }
  .resource-list article > a {
    grid-column: 3;
    grid-row: 1 / span 2;
  }
  .about-visual .orbit-one {
    width: 224px;
    height: 224px;
  }
  .about-visual .orbit-two {
    width: 310px;
    height: 310px;
  }
  .about-visual .orbit-three {
    width: 340px;
    height: 200px;
  }
  .about-visual .orbit-four {
    width: 410px;
    height: 410px;
  }
  .orbit-scan {
    width: 270px;
    height: 270px;
  }
  .polar-core {
    width: 190px;
    height: 190px;
  }
  .about-mark {
    width: 142px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-visual .orbit,
  .orbit-scan,
  .polar-core,
  .about-mark {
    animation: none !important;
  }
  .topic-emblem::after,
  .topic-emblem svg {
    transition: none !important;
  }
}

/* V13 — système de mouvement homogène */
:root {
  --motion-ease: cubic-bezier(0.2, 0.75, 0.25, 1);
  --motion-fast: 0.28s;
  --motion-base: 0.38s;
}

/* Les deux expertises ajoutées après la première version suivent la même entrée. */
.hero-expertises article:nth-child(4) {
  animation-delay: 0.65s;
}
.hero-expertises article:nth-child(5) {
  animation-delay: 0.75s;
}

/* Entrée progressive commune aux grilles et listes, sans gêner leurs survols. */
[data-reveal-group] > * {
  opacity: 1;
  translate: none;
}
.motion-ready [data-reveal-group] > * {
  opacity: 0;
  translate: 0 18px;
}
.motion-ready [data-reveal-group].is-visible > * {
  animation: motion-item-enter 0.68s var(--motion-ease) both;
  animation-delay: var(--item-delay, 0ms);
}

/* Même rythme pour les cartes ajoutées au fil des versions. */
.service-card,
.experience-grid article,
.private-scope-grid article,
.decision-grid article,
.trigger-grid article,
.service-facts > div,
.private-deliverable-grid > div,
.service-related-grid > a,
.resource-list article,
.approach-steps > li {
  transition-duration: var(--motion-base);
  transition-timing-function: var(--motion-ease);
}
.private-scope-grid article,
.decision-grid article,
.trigger-grid article,
.service-facts > div,
.private-deliverable-grid > div,
.service-related-grid > a {
  transition-property: background, border-color, box-shadow, transform;
}
.approach-steps > li {
  transition-property: background, padding, transform;
}
.resource-list article {
  transition-property: background, box-shadow, transform;
}

@media (hover: hover) {
  .private-scope-grid article:hover,
  .decision-grid article:hover,
  .trigger-grid article:hover,
  .service-facts > div:hover,
  .private-deliverable-grid > div:hover,
  .service-related-grid > a:hover,
  .service-related-grid > a:focus-visible {
    z-index: 1;
    border-color: rgba(103, 174, 255, 0.34);
    background: linear-gradient(
      135deg,
      rgba(19, 58, 113, 0.52),
      rgba(3, 14, 31, 0.12)
    );
    box-shadow: 0 18px 42px rgba(0, 6, 18, 0.22);
    transform: translateY(-4px);
  }
  .resource-list article:hover,
  .resource-list article:focus-within,
  .approach-steps > li:hover {
    background: rgba(35, 91, 160, 0.12);
    transform: translateX(5px);
  }
}

/* Les éléments contenant un lien réagissent aussi à la navigation clavier. */
.service-card:focus-within {
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(17, 57, 112, 0.58),
    rgba(3, 14, 31, 0.18)
  );
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 5, 14, 0.34);
}
.service-card:focus-within .topic-emblem::after,
.resource-list article:focus-within .topic-emblem::after,
.experience-grid article:focus-within .topic-emblem::after {
  transform: rotate(76deg);
}
.service-card:focus-within .topic-emblem svg,
.resource-list article:focus-within .topic-emblem svg,
.experience-grid article:focus-within .topic-emblem svg {
  color: #d7eaff;
  transform: scale(1.06);
}
.hero-expertises article:focus-within .expertise-icon svg {
  stroke: #6eafff;
  transform: translateY(-4px);
  filter: drop-shadow(0 0 10px rgba(70, 151, 255, 0.3));
}

/* Même rotation orbitale pour tous les indices, pas seulement les pictogrammes. */
.approach-steps > li > span,
.private-deliverable-grid b,
.service-related-grid b {
  position: relative;
}
.approach-steps > li > span::after,
.private-deliverable-grid b::after,
.service-related-grid b::after {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid transparent;
  border-top-color: rgba(115, 184, 255, 0.72);
  border-radius: 50%;
  transform: rotate(-32deg);
  transition: transform 0.65s var(--motion-ease);
}
.private-scope-grid article > span:not(.topic-emblem)::after,
.decision-grid article > span:not(.topic-emblem)::after,
.trigger-grid article > span:not(.topic-emblem)::after {
  transition: transform 0.65s var(--motion-ease);
}
.private-scope-grid article:hover > span:not(.topic-emblem)::after,
.decision-grid article:hover > span:not(.topic-emblem)::after,
.trigger-grid article:hover > span:not(.topic-emblem)::after,
.approach-steps > li:hover > span::after,
.private-deliverable-grid > div:hover b::after,
.service-related-grid > a:hover b::after,
.service-related-grid > a:focus-visible b::after {
  transform: rotate(76deg);
}

/* Les flèches texte des nouveaux boutons suivent les flèches SVG historiques. */
.outline-button > span {
  display: inline-block;
  font-size: 17px;
  transition: transform var(--motion-fast) var(--motion-ease);
}
.outline-button:hover > span,
.outline-button:focus-visible > span {
  transform: translateX(5px);
}

@keyframes motion-item-enter {
  from {
    opacity: 0;
    translate: 0 18px;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .motion-ready [data-reveal-group] > *,
  .motion-ready [data-reveal-group].is-visible > * {
    opacity: 1 !important;
    translate: none !important;
    animation: none !important;
  }
  .approach-steps > li > span::after,
  .private-deliverable-grid b::after,
  .service-related-grid b::after,
  .private-scope-grid article > span:not(.topic-emblem)::after,
  .decision-grid article > span:not(.topic-emblem)::after,
  .trigger-grid article > span:not(.topic-emblem)::after,
  .outline-button > span {
    transition: none !important;
  }
}


/* V14 — catalogue d'offres et simplification éditoriale */
.v14-hero { min-height: 760px; }
.v14-hero .hero-content { padding-top: 88px; padding-bottom: 94px; }
.v14-hero .hero-copy { max-width: 760px; }
.v14-hero .hero-copy h1 { max-width: 720px; }
.hero-kicker { margin-bottom: 26px; }
.hero-location { display: inline-block; margin-top: 10px; color: #7f8d9f; font-size: 13px; letter-spacing: .04em; }
.v14-univers { padding-top: 112px; }
.universe-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
.universe-grid .service-card { min-height: 305px; }
.universe-grid .service-card h3 { margin-top: 30px; }
.v14-packages { background: linear-gradient(145deg,#031329,#020c1b); }
.package-list { margin-top: 56px; border-top: 1px solid var(--line); }
.package-list article { display: grid; grid-template-columns: 72px minmax(220px,.85fr) minmax(280px,1.25fr) 170px 44px; gap: 24px; align-items: center; min-height: 124px; border-bottom: 1px solid var(--line); transition: background .3s var(--motion-ease), transform .3s var(--motion-ease); }
.package-list article:hover, .package-list article:focus-within { background: rgba(35,91,160,.10); transform: translateX(4px); }
.package-index { color: #519af4; font-size: 11px; letter-spacing: .08em; }
.package-list h3 { margin: 0; color: #eef4fc; font-size: 20px; font-weight: 390; }
.package-list p { margin: 0; color: #9eabba; font-size: 14px; line-height: 1.65; }
.package-price { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; }
.package-price small { color: #71819a; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.package-price b { color: #8ec5ff; font-size: 18px; font-weight: 480; }
.package-list article > a { color: #63a8ff; font-size: 20px; text-align: center; }
.compact-heading { margin-bottom: 52px; }
.v14-boundary-section { padding: 0 0 104px; background: #020d1d; }
.v14-boundary-section .private-boundary { margin-top: 0; }
.v14-service-page .private-hero h1 { max-width: 880px; }
.v14-service-page .private-hero > .section-shell > p:not(.service-breadcrumb) { max-width: 840px; }
.v14-four-grid { grid-template-columns: repeat(4,minmax(0,1fr)); }
.v14-independence { padding: 112px 0; border-top: 1px solid var(--line); background: linear-gradient(135deg,rgba(6,25,54,.56),rgba(2,13,29,.22)); }

/* Catalogue */
.v14-catalog-hero { min-height: 600px; }
.offer-category { padding: 108px 0; border-top: 1px solid var(--line); }
.offer-category:nth-of-type(even) { background: #031225; }
.offer-category-heading { display: grid; grid-template-columns: 90px 1fr; gap: 30px; align-items: start; max-width: 900px; }
.offer-category-heading .topic-emblem { margin-top: 3px; }
.offer-category-heading h2 { margin: 15px 0 10px; font-size: clamp(35px,4vw,56px); line-height: 1.05; font-weight: 330; letter-spacing: -.035em; }
.offer-category-heading p { max-width: 720px; margin: 0; color: #9faaba; font-size: 15px; line-height: 1.75; }
.offer-category-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); margin-top: 50px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.offer-card { min-height: 300px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: linear-gradient(135deg,rgba(9,33,67,.36),rgba(3,14,31,.08)); transition: background .34s var(--motion-ease), transform .34s var(--motion-ease), box-shadow .34s var(--motion-ease); }
.offer-card:hover, .offer-card:focus-within { z-index:1; background: linear-gradient(135deg,rgba(19,58,113,.52),rgba(3,14,31,.12)); transform: translateY(-4px); box-shadow: 0 18px 42px rgba(0,6,18,.22); }
.offer-card-top { display: flex; justify-content: space-between; gap: 16px; align-items: flex-start; min-height: 46px; }
.offer-number { color: #519af4; font-size: 11px; letter-spacing: .08em; }
.offer-mode { max-width: 180px; color: #8391a5; font-size: 9px; line-height: 1.45; letter-spacing: .08em; text-align:right; text-transform: uppercase; }
.offer-price { display:flex; flex-direction:column; align-items:flex-end; }
.offer-price small { color:#71819a; font-size:8px; letter-spacing:.10em; text-transform:uppercase; }
.offer-price b { margin-top:3px; color:#8ec5ff; font-size:15px; font-weight:500; }
.offer-card h3 { margin: 32px 0 14px; color: #edf3fb; font-size: 22px; font-weight: 390; line-height: 1.3; }
.offer-card p { margin:0; color:#9faaba; font-size:14px; line-height:1.72; }
.offer-card .text-link { margin-top: 28px; }

@media (max-width: 1100px) {
  .universe-grid, .offer-category-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .package-list article { grid-template-columns: 54px minmax(180px,.85fr) minmax(220px,1.15fr) 150px 36px; gap:18px; }
  .v14-four-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 720px) {
  .v14-hero { min-height: 620px; }
  .v14-hero .hero-content { padding-top: 44px; padding-bottom: 70px; }
  .v14-hero .hero-copy h1 { font-size: 42px; }
  .universe-grid, .offer-category-grid, .v14-four-grid { grid-template-columns: 1fr; }
  .package-list article { grid-template-columns: 38px 1fr 34px; gap: 10px 14px; padding: 24px 0; }
  .package-list h3 { grid-column:2; grid-row:1; }
  .package-list p { grid-column:2; grid-row:2; }
  .package-price { grid-column:2; grid-row:3; margin-top:4px; }
  .package-list article > a { grid-column:3; grid-row:1 / span 3; }
  .package-index { grid-column:1; grid-row:1 / span 3; }
  .offer-category { padding: 82px 0; }
  .offer-category-heading { grid-template-columns: 1fr; gap:18px; }
  .offer-category-heading .topic-emblem { width:64px; height:64px; }
  .offer-category-grid { margin-top:38px; }
  .offer-card { min-height:0; }
  .v14-boundary-section { padding-bottom:82px; }
}


/* V14.1 — navigation mobile accessible sans JavaScript */
.mobile-nav { display: none; position: relative; z-index: 50; }
.mobile-nav summary { list-style: none; cursor: pointer; user-select: none; color: #dbe8f7; border: 1px solid rgba(99,168,255,.42); padding: 10px 13px; font-size: 10px; letter-spacing: .12em; line-height: 1; }
.mobile-nav summary::-webkit-details-marker { display: none; }
.mobile-nav summary::after { content: "+"; display: inline-block; margin-left: 9px; color: #63a8ff; }
.mobile-nav[open] summary::after { content: "−"; }
.mobile-nav-panel { position: absolute; right: 0; top: calc(100% + 10px); width: 210px; display: grid; background: rgba(2,13,29,.98); border: 1px solid rgba(119,166,220,.25); box-shadow: 0 18px 40px rgba(0,6,18,.36); }
.mobile-nav-panel a { min-height: 44px; display: flex; align-items: center; padding: 0 16px; color: #c7d2e0; border-bottom: 1px solid rgba(119,166,220,.14); font-size: 10px; letter-spacing: .11em; }
.mobile-nav-panel a:last-child { border-bottom: 0; }
.mobile-nav-panel a:hover, .mobile-nav-panel a:focus-visible { color: #fff; background: rgba(45,119,207,.16); }
@media (max-width: 1050px) {
  .site-header > nav, .service-header-actions { display: none; }
  .mobile-nav { display: block; margin-left: auto; }
  .site-header .mobile-nav { padding-top: 12px; }
  .private-header .mobile-nav { padding-top: 16px; }
}
@media (max-width: 430px) {
  .mobile-nav-panel { width: min(210px, calc(100vw - 48px)); }
}
