@font-face {
  font-family: 'Instrument Serif';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/InstrumentSerif-Regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/Inter-Regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/Inter-SemiBold.woff2') format('woff2');
}

:root {
  --accent: #5ca0b0;
  --accent-soft: #84c0cc;
  --accent-glow: rgba(92, 160, 176, 0.06);
  --cream: #e8dfd0;
  --dark: #050810;
  --dark2: #080d18;
  --dark-card: rgba(8, 13, 24, 0.97);
  --border: rgba(92, 160, 176, 0.18);
  --border-hover: rgba(92, 160, 176, 0.35);
  --text: #eef0f2;
  --text-warm: #d8d0c4;
  --text-dim: #d0d4dc;
  --text-muted: #b8bfcc;
  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'Inter', 'Segoe UI', sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  letter-spacing: 0.018rem;
}

a {
  color: var(--accent-soft);
}

a:hover {
  color: var(--text);
}

::selection {
  background: var(--accent);
  color: var(--dark);
}

.skip-link:focus {
  position: fixed;
  top: 0.625rem;
  left: 0.625rem;
  z-index: 9999;
  padding: 0.75rem 1.5rem;
  background: var(--accent);
  color: #000;
  font-weight: 600;
  border-radius: 0.375rem;
  text-decoration: none;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(1.375rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@property --border-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: true;
}

@keyframes borderSpin {
  0% { --border-angle: 0deg; }
  100% { --border-angle: 360deg; }
}

.hero__h1,
.pagehero__h1,
.about__intro,
.about__name,
.about__label,
.sec-h2,
.cta-block__h,
.ct-cta__h,
.adv-card__h,
.adv-card__num,
.svc-card__h,
.svc-card__num,
.stat__num,
.pf-card__h,
.pf-card--feat .pf-card__h,
.pf-quality__score,
.process__h,
.ct-cta__num,
.ct__detail-label,
.ct__form-title,
.legal__h3,
.sm__legend {
  font-family: var(--serif);
  font-weight: 400;
}

.hero__h1 i,
.pagehero__h1 i,
.cta-block__h i,
.ct-cta__h i {
  font-style: italic;
  color: var(--accent-soft);
}

.adv-card__p,
.svc-card__p,
.process__p,
.pf-card__p {
  font-size: 0.92rem;
  color: var(--text-dim);
  font-weight: 300;
  line-height: 1.9;
}

.adv__header .sec-line,
.svc__header .sec-line,
.process__header .sec-line,
.pf__header .sec-line,
.apr-values__header .sec-line,
.apr-journey__header .sec-line {
  margin: 1.25rem auto 0;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 3.5rem;
  background: var(--dark);
  transition: all 0.5s var(--ease);
}

.topbar--solid {
  background: var(--dark);
  padding: 0.5rem 3.5rem;
  box-shadow: 0 0.0625rem 1.875rem rgba(0, 0, 0, 0.4);
}

.topbar--solid::before {
  content: '';
  position: absolute;
  inset: 0;
  -webkit-backdrop-filter: blur(1rem);
  backdrop-filter: blur(1rem);
  z-index: -1;
}

.topbar__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  line-height: 1;
}

.topbar__logo img {
  height: 10rem;
  width: auto;
}

.topbar__nav {
  display: flex;
  align-items: center;
  gap: 2.75rem;
}

.topbar__link {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 400;
  text-decoration: none;
  letter-spacing: 0.03125rem;
  transition: color 0.3s;
  position: relative;
}

.topbar__link:hover,
.topbar__link:focus {
  color: var(--text);
}

.topbar__link--on {
  color: var(--text);
}

.topbar__link--on::after {
  content: '';
  position: absolute;
  bottom: -0.375rem;
  left: 0;
  right: 0;
  height: 0.0625rem;
  background: var(--accent);
}

.topbar__cta {
  position: relative;
  font-size: 0.75rem;
  padding: 0.75rem 1.75rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.09375rem;
  text-transform: uppercase;
  font-weight: 500;
  border: 0.0625rem solid var(--accent);
  overflow: hidden;
  transition: color 0.35s var(--ease);
  z-index: 1;
}

.topbar__cta::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--accent);
  transition: height 0.35s var(--ease);
  z-index: -1;
}

.topbar__cta:hover {
  color: var(--dark);
}

.topbar__cta:hover::before {
  height: 100%;
}

.topbar__toggle {
  display: none;
  background: none;
  border: none;
  width: 1.75rem;
  height: 1.125rem;
  position: relative;
  cursor: pointer;
  padding: 0;
}

.topbar__toggle span {
  display: block;
  width: 100%;
  height: 0.0625rem;
  background: var(--text);
  position: absolute;
  left: 0;
  transition: all 0.3s;
}

.topbar__toggle span:nth-child(1) { top: 0; }
.topbar__toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.topbar__toggle span:nth-child(3) { bottom: 0; }

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  overflow: hidden;
}

.hero__bg,
.pagehero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/arriere-plan-ordi.webp');
  background-size: cover;
  background-repeat: no-repeat;
}

.hero__bg,
.pagehero__bg { background-size: contain; background-position: right center; }

.hero__fade,
.pagehero__fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      var(--dark) 0%,
      rgba(5, 8, 16, 0.97) 35%,
      rgba(5, 8, 16, 0.75) 52%,
      rgba(5, 8, 16, 0.25) 70%,
      rgba(5, 8, 16, 0.05) 100%
    ),
    linear-gradient(
      180deg,
      rgba(5, 8, 16, 0.2) 0%,
      transparent 20%,
      transparent 78%,
      rgba(5, 8, 16, 0.85) 92%,
      var(--dark) 100%
    );
}

.hero__left {
  position: relative;
  z-index: 2;
  width: 52%;
  min-width: 19.375rem;
  max-width: 42rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 0 0 3.5rem;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3125rem;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.6s var(--ease) 0.3s forwards;
}

.hero__tag::before {
  content: '';
  width: 2rem;
  height: 0.0625rem;
  background: var(--accent);
}

.hero__h1 {
  font-size: 3.8rem;
  line-height: 1.15;
  color: var(--text);
  letter-spacing: 0.02rem;
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.45s forwards;
}

.hero__desc {
  font-size: 1rem;
  color: var(--text-dim);
  font-weight: 300;
  line-height: 2;
  max-width: 34rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.6s forwards;
}

.hero__actions {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.75s forwards;
}

.btn-corners {
  position: relative;
  display: inline-block;
  padding: 1rem 2.25rem;
  color: var(--text);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  text-align: center;
  transition: color 0.35s var(--ease);
}

.btn-corners::before,
.btn-corners::after {
  content: '';
  position: absolute;
  width: 0.75rem;
  height: 0.75rem;
  transition: all 0.4s var(--ease);
}

.btn-corners::before {
  top: 0;
  left: 0;
  border-top: 0.0625rem solid var(--accent);
  border-left: 0.0625rem solid var(--accent);
}

.btn-corners::after {
  bottom: 0;
  right: 0;
  border-bottom: 0.0625rem solid var(--accent);
  border-right: 0.0625rem solid var(--accent);
}

.btn-corners:hover::before,
.btn-corners:hover::after {
  width: 100%;
  height: 100%;
}

.btn-corners:hover {
  color: var(--accent-soft);
}

.hero__ghost {
  color: var(--text-muted);
  font-size: 0.8rem;
  text-decoration: none;
  letter-spacing: 0.0625rem;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.hero__ghost:hover {
  color: var(--text-dim);
}

.hero__ghost span {
  display: inline-block;
  transition: transform 0.3s var(--ease);
}

.hero__ghost:hover span {
  transform: translateY(0.25rem);
}

.hero__side {
  position: absolute;
  right: 3.5rem;
  bottom: 3rem;
  z-index: 2;
  font-size: 0.8rem;
  letter-spacing: 0.25rem;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-rl;
  opacity: 0;
  animation: fadeUp 0.6s var(--ease) 1s forwards;
}

.marquee {
  overflow: hidden;
  padding: 1.75rem 0;
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.03);
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.03);
  background: var(--dark2);
}

.marquee__track {
  display: flex;
  white-space: nowrap;
  animation: marquee 8s linear infinite;
}

.marquee__item {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-muted);
  padding: 0 3rem;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.marquee__dot {
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.55;
  flex-shrink: 0;
}

.section--bg {
  position: relative;
  background: var(--dark);
}

.sec-tag {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.3125rem;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.sec-h2 {
  font-size: 2.75rem;
  color: var(--text);
  line-height: 1.35;
  letter-spacing: 0.025rem;
}

.sec-line {
  width: 1.875rem;
  height: 0.0625rem;
  background: var(--accent);
  border: none;
  margin: 1.25rem 0 0;
  opacity: 0.55;
}

.about {
  padding: 8rem 0 6rem;
}

.about__intro {
  font-size: 2.8rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.2;
  max-width: 43.75rem;
  margin-bottom: 4rem;
  position: relative;
}

.about__intro::before {
  content: '\201C';
  position: absolute;
  top: -2.5rem;
  left: -1.25rem;
  font-size: 6rem;
  color: var(--accent-soft);
  opacity: 0.7;
  line-height: 1;
  font-family: var(--serif);
}

.about__intro mark {
  background: none;
  color: var(--accent-soft);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 0.125rem 1fr;
  gap: 3.5rem;
  align-items: start;
}

.about__divider {
  width: 0.0625rem;
  height: 100%;
  background: linear-gradient(180deg, var(--accent), transparent);
  opacity: 0.28;
  justify-self: center;
}

.about__photo-side {
  position: relative;
  display: flex;
  justify-content: center;
}

.about__card {
  position: relative;
  max-width: 22rem;
  width: 100%;
  padding: 0.75rem;
  padding-bottom: 1.75rem;
}

.about__card-border {
  position: absolute;
  inset: 0;
  border: 0.0625rem solid rgba(92, 160, 176, 0.3);
  pointer-events: none;
}

.about__card-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about__photo {
  width: 100%;
  height: auto;
  display: block;
}

.about__card-label {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  padding: 0.5rem 1.75rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25rem;
  text-transform: uppercase;
  color: var(--accent-soft);
  border: 0.0625rem solid rgba(92, 160, 176, 0.38);
  background: var(--dark);
  text-align: center;
  white-space: nowrap;
  z-index: 2;
}

.about__info {
  padding-top: 0.5rem;
  padding-right: 2rem;
}

.about__name {
  font-size: 2rem;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 0.3rem;
}

.about__role {
  font-size: 0.95rem;
  color: var(--text-dim);
  font-weight: 300;
  margin-bottom: 2rem;
  margin-top: 0.4rem;
}

.about__role b {
  color: var(--accent-soft);
  font-weight: 500;
}

.about__p {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.95;
  font-weight: 300;
}

.about__label {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text);
  margin-top: 3rem;
  margin-bottom: 0.8rem;
  letter-spacing: 0.0625rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.about__label::before {
  content: '';
  width: 1.5rem;
  height: 0.0625rem;
  background: var(--accent);
  flex-shrink: 0;
  opacity: 0.5;
}

.stats {
  padding: 5rem 0;
  border-top: 0.0625rem solid var(--border);
  border-bottom: 0.0625rem solid var(--border);
}

.stat {
  text-align: center;
  padding: 1.5rem 0;
  position: relative;
}

.stat::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 0.0625rem;
  background: var(--border);
}

.stat:last-child::after {
  display: none;
}

.stat__num {
  font-size: 3.2rem;
  color: var(--accent-soft);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
  font-style: italic;
}

.stat__label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.15625rem;
  text-transform: uppercase;
  font-weight: 400;
}

.adv {
  padding: 7rem 0;
}

.adv__header {
  text-align: center;
  margin-bottom: 4rem;
}

.adv__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.adv-card {
  position: relative;
  border-radius: 0.25rem;
  padding: 0.0625rem;
  height: 100%;
  overflow: hidden;
  background:
    conic-gradient(
      from var(--border-angle, 0deg),
      rgba(5, 8, 16, 1) 0%,
      rgba(5, 8, 16, 1) 68%,
      var(--accent) 76%,
      var(--accent-soft) 80%,
      rgba(5, 8, 16, 1) 88%,
      rgba(5, 8, 16, 1) 100%
    );
  animation: borderSpin 4s linear infinite;
}

.adv-card__content {
  position: relative;
  background: var(--dark-card);
  border-radius: 0.1875rem;
  padding: 2.75rem 2.25rem 2.5rem;
  height: 100%;
  transition: box-shadow 0.4s var(--ease);
}

.adv-card:hover .adv-card__content {
  box-shadow:
    0 1.25rem 3.5rem rgba(0, 0, 0, 0.4),
    0 0 2.5rem rgba(92, 160, 176, 0.06);
}

.adv-card__glow {
  position: absolute;
  inset: -50%;
  background:
    conic-gradient(
      from var(--border-angle, 0deg),
      rgba(5, 8, 16, 0) 0%,
      rgba(5, 8, 16, 0) 66%,
      rgba(92, 160, 176, 0.12) 76%,
      rgba(132, 192, 204, 0.06) 80%,
      rgba(5, 8, 16, 0) 90%,
      rgba(5, 8, 16, 0) 100%
    );
  animation: borderSpin 4s linear infinite;
  filter: blur(1.5rem);
  z-index: -1;
  pointer-events: none;
}

.adv-card__num {
  font-size: 2.8rem;
  font-style: italic;
  color: var(--accent);
  opacity: 0.25;
  margin-bottom: 1.5rem;
  display: block;
  line-height: 1;
  transition: opacity 0.3s;
}

.adv-card:hover .adv-card__num {
  opacity: 0.4;
}

.adv-card__h {
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 0.85rem;
  letter-spacing: 0.12em;
  transition: color 0.3s;
}

.adv-card:hover .adv-card__h {
  color: var(--accent-soft);
}

@property --arrow-glow {
  syntax: '<color>';
  inherits: false;
  initial-value: transparent;
}

@keyframes arrowPulse1 {
  0%, 100% { color: var(--accent); opacity: 0.35; }
  33%       { color: #ffffff;      opacity: 0.85; }
}

@keyframes arrowPulse2 {
  0%, 100% { color: var(--accent); opacity: 0.35; }
  66%       { color: #ffffff;      opacity: 0.85; }
}

@keyframes arrowPulse3 {
  0%, 100% { color: var(--accent); opacity: 0.35; }
  0%        { color: #ffffff;      opacity: 0.85; }
}

.callout-ac {
  border-top: 0.0625rem solid var(--border);
  border-bottom: 0.0625rem solid var(--border);
  padding: 3rem 0;
}

.callout-ac__inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.callout-ac__arrows {
  display: flex;
  align-items: center;
  gap: 0.05rem;
  flex: 0 0 auto;
}

.callout-ac__arrow {
  display: block;
  width: 3rem;
  height: 3rem;
  flex: 0 0 auto;
}

.callout-ac__arrow svg {
  width: 100%;
  height: 100%;
}

.callout-ac__arrow--1 {
  animation: arrowPulse1 2.1s ease-in-out infinite;
}

.callout-ac__arrow--2 {
  animation: arrowPulse2 2.1s ease-in-out infinite;
}

.callout-ac__arrow--3 {
  animation: arrowPulse3 2.1s ease-in-out infinite;
}

.callout-ac__tag {
  flex: 0 0 auto;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.38rem;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.9;
  white-space: nowrap;
}

.callout-ac__text {
  flex: 1;
  font-size: 0.9rem;
  color: var(--text-dim);
  font-weight: 300;
  line-height: 1.85;
  margin: 0;
  min-width: 18rem;
}

.callout-ac__link {
  flex: 0 0 auto;
  position: relative;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-soft);
  text-decoration: none;
  white-space: nowrap;
  border: 0.0625rem solid var(--accent);
  padding: 0.75rem 1.5rem;
  overflow: hidden;
  transition: color 0.35s var(--ease);
  z-index: 1;
}

.callout-ac__link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--accent);
  transition: height 0.35s var(--ease);
  z-index: -1;
}

.callout-ac__link:hover {
  color: var(--dark);
}

.callout-ac__link:hover::before {
  height: 100%;
}

.callout-ac__link::after {
  content: ' \2192';
  font-size: 2em;
}

.cta-block {
  padding: 6rem 0;
  text-align: center;
}

.cta-block--tight {
  padding-top: 2.5rem;
}

.cta-block__h {
  font-size: 2.6rem;
  color: var(--text);
  line-height: 1.3;
}

.cta-block__p {
  font-size: 1rem;
  color: var(--text-dim);
  max-width: 28rem;
  margin: 1rem auto 2.75rem;
  line-height: 1.9;
  font-weight: 300;
}

.ft {
  background: var(--dark);
  border-top: 0.0625rem solid rgba(92, 160, 176, 0.2);
  padding: 2rem 0;
}

.ft a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
}

.ft a:hover {
  color: var(--text-dim);
}

.ft__copy {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.ft__soc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 0.0625rem solid rgba(92, 160, 176, 0.3);
  color: var(--text-muted);
  transition: all 0.35s var(--ease);
}

.ft__soc:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.ft__soc svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
}

.pagehero {
  position: relative;
  height: 100vh;
  display: flex;
  overflow: hidden;
}

.pagehero__inner {
  position: relative;
  z-index: 2;
  width: 52%;
  min-width: 19.375rem;
  max-width: 42rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 0 0 3.5rem;
}

.pagehero__h1 {
  font-size: 3.2rem;
  line-height: 1.2;
  color: var(--text);
  letter-spacing: 0.02rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.3s forwards;
}

.pagehero__desc {
  font-size: 1.05rem;
  color: var(--text-dim);
  font-weight: 300;
  line-height: 2;
  max-width: 38rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.5s forwards;
}

.svc {
  padding: 7rem 0;
}

.svc__header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.svc__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.svc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--dark-card);
  border: 0.0625rem solid var(--border);
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  overflow: hidden;
}

.svc-card:hover,
.pf-card:hover {
  border-color: var(--border-hover);
}

.svc-card__accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0.125rem;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
  transition: width 0.5s var(--ease);
}

.svc-card:hover .svc-card__accent {
  width: 100%;
}

.svc-card__content {
  padding: 2.75rem 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.svc-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.svc-card__num {
  font-size: 4.5rem;
  font-style: italic;
  color: var(--accent);
  opacity: 0.65;
  line-height: 1;
  transition: opacity 0.3s;
}

.svc-card:hover .svc-card__num {
  opacity: 0.85;
}

.svc-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--accent-soft);
  opacity: 0.5;
  transition: opacity 0.3s;
}

.svc-card:hover .svc-card__icon {
  opacity: 0.75;
}

.svc-card__icon svg,
.ct__detail-icon svg {
  width: 100%;
  height: 100%;
}

.svc-card__h {
  font-size: 1.35rem;
  color: var(--text);
  margin-bottom: 0.85rem;
  letter-spacing: 0.12em;
  transition: color 0.3s;
}

.svc-card:hover .svc-card__h {
  color: var(--accent-soft);
}

.svc-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 0.0625rem solid var(--border);
  padding-top: 1.25rem;
  margin-top: auto;
}

.svc-card__list li {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
  padding: 0.35rem 0 0.35rem 1.25rem;
  position: relative;
  line-height: 1.7;
}

.svc-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 0.375rem;
  height: 0.0625rem;
  background: var(--accent);
  opacity: 0.55;
}

.process {
  padding: 7rem 0;
  border-top: 0.0625rem solid var(--border);
}

.process__header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.process__track {
  position: relative;
  max-width: 42rem;
  margin: 0 auto;
}

.process__step {
  position: relative;
  padding-left: 3.5rem;
  padding-bottom: 3.5rem;
}

.process__step:last-child {
  padding-bottom: 0;
}

.process__line {
  position: absolute;
  left: 0.5rem;
  top: 1.25rem;
  bottom: 0;
  width: 0.0625rem;
  background: linear-gradient(180deg, var(--accent), transparent);
  opacity: 0.25;
}

.process__step:last-child .process__line {
  display: none;
}

.process__dot {
  position: absolute;
  left: 0;
  top: 0.25rem;
  width: 1.375rem;
  height: 1.375rem;
  border: 0.0625rem solid var(--accent);
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.process__dot::after {
  content: '';
  width: 0.4375rem;
  height: 0.4375rem;
  background: var(--accent-soft);
  opacity: 0.8;
}

.process__num {
  font-family: var(--serif);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--accent);
  opacity: 0.75;
  display: block;
  margin-bottom: 0.35rem;
  letter-spacing: 0.0625rem;
}

.process__h {
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.pf {
  padding: 7rem 0;
}

.pf__header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.pf__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.pf-card {
  position: relative;
  border-radius: 0.25rem;
  overflow: hidden;
  background: var(--dark-card);
  transition: box-shadow 0.4s var(--ease);
}

.pf-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 0.25rem;
  padding: 0.125rem;
  background: conic-gradient(
    from var(--border-angle, 0deg),
    rgba(5, 8, 16, 0) 0%,
    rgba(5, 8, 16, 0) 68%,
    var(--accent) 76%,
    var(--accent-soft) 80%,
    rgba(5, 8, 16, 0) 88%,
    rgba(5, 8, 16, 0) 100%
  );
  -webkit-mask:
    linear-gradient(#fff, #fff) content-box,
    linear-gradient(#fff, #fff);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: borderSpin 5s linear infinite;
  pointer-events: none;
  z-index: 10;
}

.pf-card--feat {
  grid-column: 1 / -1;
}

.pf-card--feat .pf-card__link {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
}

.pf-card--feat .pf-card__img {
  aspect-ratio: auto;
  height: auto;
  min-height: unset;
  width: auto;
  max-width: 26rem;
}

.pf-card--feat .pf-card__logo-wrap {
  position: relative;
  inset: auto;
  background: transparent;
}

.pf-card--feat .pf-card__logo-wrap img {
  position: relative;
  inset: auto;
  width: 100%;
  height: auto;
  object-fit: initial;
  display: block;
}

.pf-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
  overflow: hidden;
}

.pf-card__link:hover {
  color: inherit;
}

.pf-card__img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #ffffff;
  filter: brightness(0.88);
}

.pf-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 0.35rem rgba(8, 13, 24, 0.97);
  z-index: 5;
  pointer-events: none;
}

.pf-card__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  opacity: 0.12;
}

.pf-card__placeholder svg {
  width: 4.5rem;
  height: 4.5rem;
}

.pf-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5, 8, 16, 0.3) 100%);
  transition: opacity 0.4s var(--ease);
}

.pf-card:hover .pf-card__overlay {
  opacity: 0.6;
}

.pf-card--feat .pf-card__overlay {
  display: none;
}

.pf-card__body {
  padding: 2rem 2.25rem 2.25rem;
}

.pf-card--feat .pf-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem 2.75rem;
}

.pf-card__cat {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.25rem;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.pf-card__h {
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 0.75rem;
  transition: color 0.3s;
}

.pf-card:hover .pf-card__h {
  color: var(--accent-soft);
}

.pf-card--feat .pf-card__h {
  font-size: 1.6rem;
}

.pf-card__p {
  margin-bottom: 1.25rem;
  letter-spacing: 0.02rem;
  line-height: 1.7;
}

.pf-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.pf-card__tags li {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.0625rem;
  color: var(--text-muted);
  padding: 0.3rem 0.75rem;
  border: 0.0625rem solid var(--border);
  text-transform: uppercase;
  transition: border-color 0.3s, color 0.3s;
}

.pf-card:hover .pf-card__tags li {
  border-color: var(--border-hover);
  color: var(--text-dim);
}

.pf-card__arrow {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.0625rem;
  transition: color 0.3s;
}

.pf-card__arrow span {
  display: inline-block;
  font-size: 2em;
  transition: transform 0.3s var(--ease);
}

.pf-card:hover .pf-card__arrow {
  color: var(--accent-soft);
}

.pf-card:hover .pf-card__arrow span {
  transform: translateX(0.375rem);
}

.pf-quality {
  padding: 7rem 0;
  border-top: 0.0625rem solid var(--border);
}

.pf-quality__p {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.95;
  font-weight: 300;
}

.pf-quality__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.pf-quality__item {
  background: var(--dark-card);
  border: 0.0625rem solid var(--border);
  padding: 2rem 1.75rem;
  text-align: center;
  transition: border-color 0.4s var(--ease);
}

.pf-quality__item:hover {
  border-color: var(--border-hover);
}

.pf-quality__score {
  font-size: 2.6rem;
  font-style: italic;
  color: var(--accent-soft);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}

.pf-quality__score small {
  font-size: 0.55em;
}

.pf-quality__label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  font-weight: 400;
  margin: 0;
}

.apr {
  padding: 8rem 0 6rem;
}

.apr__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.apr__photo-col {
  display: flex;
  justify-content: center;
}

.apr__text-col {
  padding-top: 0.5rem;
  padding-right: 2rem;
}

.apr-values {
  padding: 7rem 0;
  border-top: 0.0625rem solid var(--border);
}

.apr-values__header {
  text-align: center;
  margin-bottom: 4rem;
}

.apr-journey {
  padding: 7rem 0;
  border-top: 0.0625rem solid var(--border);
}

.apr-journey__header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.apr-mission {
  padding: 7rem 0;
  border-top: 0.0625rem solid var(--border);
}

.ct {
  padding: 7rem 0;
}

.ct__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

.ct__desc {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.95;
  font-weight: 300;
  max-width: 28rem;
}

.ct__details {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.ct__detail {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.ct__detail-icon {
  width: 2.25rem;
  height: 2.25rem;
  color: var(--accent-soft);
  opacity: 0.6;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.ct__detail-label {
  font-size: 1.1rem;
  letter-spacing: 0.12rem;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.ct__detail-value {
  font-size: 1rem;
  letter-spacing: 0.02rem;
  color: var(--accent-soft);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.3s;
}

.ct__detail-value:hover {
  color: var(--text);
}

.ct__detail-value--text {
  color: var(--text-dim);
  margin: 0;
}

.ct__social {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 0.0625rem solid var(--border);
}

.ct__social-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.25rem;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}

.ct__form-wrap {
  position: relative;
  border: 0.0625rem solid rgba(92, 160, 176, 0.45);
}

.ct__form {
  background: #080d18;
  padding: 3rem 2.75rem;
}

.ct__form-title {
  font-size: 1.35rem;
  color: var(--text);
  margin-bottom: 2.25rem;
}

.ct__field {
  margin-bottom: 1.5rem;
}

.ct__label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.ct__optional {
  font-weight: 300;
  letter-spacing: 0.03125rem;
  text-transform: none;
  color: var(--text-dim);
}

.ct__input {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 0.0625rem solid var(--border);
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 300;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.ct__input::placeholder {
  color: var(--text-muted);
  opacity: 0.4;
}

.ct__input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 0.1875rem rgba(92, 160, 176, 0.1);
}

.ct__select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23a0a8b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.ct__select option {
  background: var(--dark);
  color: var(--text);
}

.ct__textarea {
  resize: vertical;
  min-height: 7.5rem;
}

.ct__submit {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.75rem;
  padding: 1rem 2.25rem;
  background: transparent;
  border: 0.0625rem solid var(--accent);
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.35s var(--ease);
  z-index: 1;
}

.ct__submit:hover {
  color: var(--accent-soft);
  border-color: var(--accent-soft);
  box-shadow: 0 0 0.75rem rgba(92, 160, 176, 0.25);
}

.ct__submit-icon {
  width: 1rem;
  height: 1rem;
  display: flex;
  align-items: center;
}

.ct__submit-icon svg {
  width: 100%;
  height: 100%;
}

.ct-cta {
  padding: 0 0 7rem;
}

.ct-cta__wrap {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 0;
  max-width: 78%;
  margin: 0 auto;
  border: 0.0625rem solid var(--border);
  background: var(--dark-card);
  position: relative;
  overflow: hidden;
}

.ct-cta__wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0.1875rem;
  height: 100%;
  background: linear-gradient(180deg, var(--accent), var(--accent-soft), transparent);
  opacity: 0.6;
}

.ct-cta__left {
  padding: 3.5rem 3.5rem 3.5rem 4rem;
  border-right: 0.0625rem solid var(--border);
}

.ct-cta__right {
  padding: 3.5rem 3rem;
  display: flex;
  align-items: center;
}

.ct-cta__tag {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.3125rem;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.85rem;
}

.ct-cta__h {
  font-size: 2.1rem;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 1.25rem;
}

.ct-cta__p {
  font-size: 0.92rem;
  color: var(--text-dim);
  line-height: 1.95;
  font-weight: 300;
  max-width: 30rem;
  margin-bottom: 2.5rem;
}

.ct-cta__btn {
  display: inline-block;
}

.ct-cta__list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ct-cta__item {
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

.ct-cta__num {
  font-size: 1.35rem;
  font-style: italic;
  color: var(--accent);
  opacity: 0.4;
  flex-shrink: 0;
  line-height: 1;
  transition: opacity 0.3s;
}

.ct-cta__wrap:hover .ct-cta__num {
  opacity: 0.65;
}

.ct-cta__item-text {
  font-size: 0.88rem;
  color: var(--text-dim);
  font-weight: 300;
  line-height: 1.6;
}

.testi {
  padding: 5rem 0;
}

.testi__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.testi__header .sec-line {
  margin: 1.25rem auto 0;
}

.testi__stage {
  overflow: hidden;
  position: relative;
}

.testi__track {
  position: relative;
  min-height: 22rem;
}

.testi__card {
  position: absolute;
  inset: 0;
  padding: 3rem 3.5rem;
  background: var(--dark-card);
  border: 0.0625rem solid var(--border);
  will-change: transform, opacity;
}

.testi__card:first-child {
  position: absolute;
}

.testi__card:hover {
  border-color: var(--border-hover);
}

.testi__quote {
  display: block;
  font-family: var(--serif);
  font-size: 4rem;
  line-height: 0.8;
  color: var(--accent);
  opacity: 0.25;
  margin-bottom: 0;
  user-select: none;
}

.testi__text {
  font-size: 0.975rem;
  color: var(--text-dim);
  font-weight: 300;
  line-height: 1.75;
  max-width: none;
  margin: 0 0 1.25rem;
  font-style: italic;
}

.testi__author {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.testi__name {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.05rem;
}

.testi__biz {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 400;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
}

.testi__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2.5rem;
}

.testi__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  border: 0.0625rem solid rgba(92, 160, 176, 0.45);
  background: rgba(92, 160, 176, 0.07);
  color: var(--accent-soft);
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
  flex-shrink: 0;
}

.testi__btn svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.testi__btn:hover {
  border-color: var(--accent);
  color: #fff;
  background: rgba(92, 160, 176, 0.18);
}

.testi__btn:focus-visible {
  outline: 0.125rem solid var(--accent);
  outline-offset: 0.25rem;
}

.testi__dots {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.testi__dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  border: none;
  background: rgba(92, 160, 176, 0.65);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}

.testi__dot--on {
  background: var(--accent);
  transform: scale(1.5);
}

.testi__dot:focus-visible {
  outline: 0.125rem solid var(--accent);
  outline-offset: 0.25rem;
}

.legal {
  padding: 7rem 0 6rem;
}

.legal__nav {
  position: sticky;
  top: 7rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.legal__nav-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.3125rem;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.legal__nav-link {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.45rem 0.75rem;
  border-left: 0.0625rem solid var(--border);
  transition: color 0.3s, border-color 0.3s, padding-left 0.3s var(--ease);
  line-height: 1.5;
}

.legal__nav-link:hover,
.legal__nav-link--on {
  color: var(--accent-soft);
  border-left-color: var(--accent);
  padding-left: 1.25rem;
}

.legal__nav-sep {
  height: 0.0625rem;
  background: var(--border);
  margin: 0.75rem 0;
  opacity: 0.4;
}

.legal__body {
  max-width: 48rem;
}

.legal__block {
  scroll-margin-top: 7rem;
}

.legal__block + .legal__block {
  margin-top: 5rem;
  padding-top: 5rem;
  border-top: 0.0625rem solid var(--border);
}

.legal__note {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 2.5rem;
  padding: 0.875rem 1.25rem;
  border-left: 0.125rem solid var(--accent);
  background: var(--accent-glow);
}

.legal__updated {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.15625rem;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.legal__updated::before {
  content: '';
  width: 0.4375rem;
  height: 0.4375rem;
  background: var(--accent);
  opacity: 0.45;
  border-radius: 50%;
  flex-shrink: 0;
}

.legal__section {
  margin-top: 2.75rem;
}

.legal__h3 {
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.legal__h3::before {
  content: '';
  width: 1.25rem;
  height: 0.0625rem;
  background: var(--accent);
  flex-shrink: 0;
  opacity: 0.55;
}

.legal__p {
  font-size: 0.92rem;
  color: var(--text-dim);
  line-height: 1.95;
  font-weight: 300;
  margin-bottom: 1rem;
}

.legal__p:last-child {
  margin-bottom: 0;
}

.legal__p a {
  color: var(--accent-soft);
  text-decoration: none;
  transition: color 0.3s;
}

.legal__p a:hover {
  color: var(--text);
}

.legal__list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 1rem;
}

.legal__list li {
  font-size: 0.92rem;
  color: var(--text-dim);
  font-weight: 300;
  line-height: 1.85;
  padding: 0.3rem 0 0.3rem 1.5rem;
  position: relative;
}

.legal__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.9rem;
  width: 0.5rem;
  height: 0.0625rem;
  background: var(--accent);
  opacity: 0.5;
}

.legal__box {
  margin-top: 1.5rem;
  padding: 1.5rem 1.75rem;
  background: rgba(92, 160, 176, 0.04);
  border: 0.0625rem solid var(--border);
}

.legal__box p {
  font-size: 0.9rem;
  color: var(--text-dim);
  font-weight: 300;
  line-height: 1.9;
  margin: 0;
}

.legal__box strong {
  color: var(--text);
  font-weight: 500;
}

.legal__box a {
  color: var(--accent-soft);
  text-decoration: none;
  transition: color 0.3s;
}

.legal__box a:hover {
  color: var(--text);
}

.sec-divider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 4rem;
}

.sec-divider::before,
.sec-divider::after {
  content: '';
  flex: 1;
  height: 0.0625rem;
  background: linear-gradient(90deg, transparent, rgba(92, 160, 176, 0.35), transparent);
}

.sec-divider__label {
  position: relative;
  padding: 0.5rem 1.75rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.28rem;
  text-transform: uppercase;
  color: var(--accent-soft);
  border: 0.0625rem solid rgba(92, 160, 176, 0.38);
  background: var(--dark);
  white-space: nowrap;
  margin: 0 1.5rem;
}

.ac {
  padding: 0 0 3rem;
}

.ac__header {
  margin-bottom: 4rem;
}

.ac__header .sec-h2 i {
  color: var(--accent-soft);
}

.ac-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.3125rem;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.ac__sub {
  font-size: 0.92rem;
  color: var(--text-dim);
  font-weight: 300;
  line-height: 1.9;
  max-width: 54rem;
  margin-top: 0.875rem;
}

.ac__grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 3rem;
}

.ac-card {
  position: relative;
  border-radius: 0.25rem;
  padding: 0.0625rem;
  overflow: hidden;
  background:
    conic-gradient(
      from var(--border-angle, 0deg),
      rgba(5, 8, 16, 1) 0%,
      rgba(5, 8, 16, 1) 68%,
      var(--accent) 76%,
      var(--accent-soft) 80%,
      rgba(5, 8, 16, 1) 88%,
      rgba(5, 8, 16, 1) 100%
    );
  animation: borderSpin 5s linear infinite;
}

.ac-card__glow {
  position: absolute;
  inset: -50%;
  background:
    conic-gradient(
      from var(--border-angle, 0deg),
      rgba(5, 8, 16, 0) 0%,
      rgba(5, 8, 16, 0) 66%,
      rgba(92, 160, 176, 0.1) 76%,
      rgba(132, 192, 204, 0.05) 80%,
      rgba(5, 8, 16, 0) 90%,
      rgba(5, 8, 16, 0) 100%
    );
  animation: borderSpin 5s linear infinite;
  filter: blur(1.5rem);
  z-index: -1;
  pointer-events: none;
}

.ac-card__content {
  display: grid;
  grid-template-columns: 10rem 1fr;
  align-items: start;
  padding: 2.75rem 2.5rem;
  gap: 2.5rem;
  background: var(--dark-card);
  border-radius: 0.1875rem;
  height: 100%;
}

.ac-card__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  padding-top: 0.25rem;
}

.ac-card__num {
  font-family: var(--serif);
  font-size: 4.5rem;
  font-style: italic;
  color: var(--accent);
  opacity: 0.45;
  line-height: 1;
  transition: opacity 0.3s;
}

.ac-card:hover .ac-card__num {
  opacity: 0.65;
}

.ac-card__badge {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  color: var(--accent);
  border: 0.0625rem solid rgba(92, 160, 176, 0.3);
  padding: 0.3rem 0.65rem;
  opacity: 0.9;
}

.ac-card__right {
  display: flex;
  flex-direction: column;
}

.ac-card__h {
  font-size: 1.35rem;
  color: var(--text);
  margin-bottom: 0.85rem;
  letter-spacing: 0.12em;
  transition: color 0.3s;
}

.ac-card:hover .ac-card__h {
  color: var(--accent-soft);
}

.ac-card__p {
  font-size: 0.92rem;
  color: var(--text-dim);
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.ac-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 0.0625rem solid rgba(92, 160, 176, 0.12);
  padding-top: 1.25rem;
}

.ac-card__list li {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
  padding: 0.35rem 0 0.35rem 1.25rem;
  position: relative;
  line-height: 1.7;
}

.ac-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 0.375rem;
  height: 0.0625rem;
  background: var(--accent);
  opacity: 0.55;
}

.ac-card__cta {
  display: inline-block;
  margin-top: 1.5rem;
  position: relative;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-soft);
  text-decoration: none;
  border: 0.0625rem solid var(--accent);
  padding: 0.75rem 1.5rem;
  overflow: hidden;
  transition: color 0.35s var(--ease);
  z-index: 1;
}

.ac-card__cta::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--accent);
  transition: height 0.35s var(--ease);
  z-index: -1;
}

.ac-card__cta:hover {
  color: var(--dark);
}

.ac-card__cta:hover::before {
  height: 100%;
}

.ac-card__cta-note {
  margin-top: 0.6rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.01rem;
}

.ct-choose {
  padding: 5rem 0 0;
}

#section-contact {
  scroll-margin-top: 12rem;
}

.ct-choose__intro {
  margin-bottom: 3rem;
}

.ct-choose__intro-desc {
  font-size: 1rem;
  color: var(--text-dim);
  font-weight: 300;
  line-height: 1.9;
  max-width: 42rem;
  margin-top: 1.25rem;
}

.ct-choose__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.ct-choose__card {
  position: relative;
  padding: 0.0625rem;
  overflow: hidden;
  background:
    conic-gradient(
      from var(--border-angle, 0deg),
      rgba(5, 8, 16, 1) 0%,
      rgba(5, 8, 16, 1) 68%,
      var(--accent) 76%,
      rgba(5, 8, 16, 1) 84%,
      rgba(5, 8, 16, 1) 100%
    );
  animation: borderSpin 5s linear infinite;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.ct-choose__card:hover {
  transform: translateY(-0.6rem);
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.7), 0 0 2.5rem rgba(92, 160, 176, 0.18);
}

.ct-choose__card-inner {
  display: block;
  width: 100%;
  height: 100%;
  background: #080d18;
  padding: 2.75rem 3rem;
}

.ct-choose__card--btn {
  text-align: left;
  cursor: pointer;
  font-family: var(--sans);
  color: var(--text);
  border: none;
  -webkit-appearance: none;
  appearance: none;
}

.ct-choose__card--btn .ct-choose__link {
  display: inline-block;
  transition: color 0.3s, transform 0.3s var(--ease);
}

.ct-choose__card--highlight {
  text-decoration: none;
  color: var(--text);
}

.ct-choose__card--highlight:hover {
  text-decoration: none;
  color: var(--text);
}

.ct-choose__card--highlight .ct-choose__link--accent {
  color: var(--accent-soft);
}

.ct-choose__badge {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.3125rem;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.ct-choose__h {
  font-size: 1.45rem;
  color: var(--text);
  margin-bottom: 1rem;
  font-weight: 400;
  line-height: 1.4;
}

.ct-choose__p {
  font-size: 0.95rem;
  color: var(--text-dim);
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 1.75rem;
}

.ct-choose__link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.ct-choose__link:hover {
  color: var(--text);
}

.ct-choose__link--accent {
  color: var(--accent-soft);
}

.ct-choose__link--accent:hover {
  color: var(--text);
}

.ct-choose__hint {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0;
}

.ct-choose__hint .hint-arrow {
  font-size: 1.4em;
  line-height: 1;
  vertical-align: middle;
  letter-spacing: 0;
}

.arrow-lg {
  font-size: 1.25em;
  line-height: 1;
}

.ct__input--error {
  border-color: #c0504d;
  box-shadow: 0 0 0 0.1875rem rgba(192, 80, 77, 0.08);
}

.ct__submit--sending {
  opacity: 0.7;
  cursor: not-allowed;
  pointer-events: none;
}

.ct__status {
  display: none;
  text-align: center;
  padding: 3rem 1rem;
}

.ct__status--on {
  display: block;
}

.ct__status-icon {
  width: 3rem;
  height: 3rem;
  color: var(--accent);
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ct__status-icon svg {
  width: 100%;
  height: 100%;
}

.ct__status-title {
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.ct__status-msg {
  font-size: 0.9rem;
  color: var(--text-dim);
  font-weight: 300;
  margin: 0;
}

.ct-choose__card--selected {
  outline: 0.0625rem solid var(--accent);
}

.ct__form-panel {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.6s var(--ease), opacity 0.45s var(--ease);
  pointer-events: none;
}

.ct__form-panel--on {
  max-height: 60rem;
  opacity: 1;
  pointer-events: auto;
}

.sm {
  padding: 5rem 0 7rem;
}

.sm__wrap {
  position: relative;
  max-width: 52rem;
  margin: 0 auto;
  border: 0.0625rem solid var(--accent);
  overflow: hidden;
}

.sm__form {
  background: var(--dark-card);
  padding: 3.5rem 4rem 4rem;
}

.sm__progress {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
}

.sm__step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
  flex-shrink: 0;
}

.sm__step--on {
  color: var(--accent-soft);
}

.sm__step-num {
  width: 1.5rem;
  height: 1.5rem;
  border: 0.0625rem solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  transition: border-color 0.3s, background 0.3s, color 0.3s;
  flex-shrink: 0;
}

.sm__step--on .sm__step-num {
  border-color: var(--accent);
  background: rgba(92, 160, 176, 0.1);
  color: var(--accent);
}

.sm__step-label {
  display: none;
}

.sm__step-line {
  flex: 1;
  height: 0.0625rem;
  background: var(--border);
  margin: 0 0.5rem;
}

.sm__panel {
  display: none;
}

.sm__panel--on {
  display: block;
}

.sm__legend {
  font-size: 1.75rem;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 0.5rem;
  width: 100%;
  padding: 0;
  border: none;
}

.sm__legend i {
  font-style: italic;
  color: var(--accent-soft);
}

.sm__legend-sub {
  font-size: 0.92rem;
  color: var(--text-dim);
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 2.5rem;
}

.sm__checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.sm__check {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  cursor: pointer;
}

.sm__check input[type="checkbox"] {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  margin-top: 0.2rem;
  accent-color: var(--accent);
  cursor: pointer;
}

.sm__check-text {
  font-size: 0.88rem;
  color: var(--text-dim);
  font-weight: 300;
  line-height: 1.6;
}

.sm__check--consent {
  margin-top: 1.5rem;
  align-items: flex-start;
}

.sm__check--consent .sm__check-text {
  font-size: 0.85rem;
  color: var(--text-dim);
}

.sm__radios {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.75rem;
}

.sm__radio {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.sm__radio input[type="radio"] {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  accent-color: var(--accent);
  cursor: pointer;
}

.sm__radio-text {
  font-size: 0.9rem;
  color: var(--text-dim);
  font-weight: 300;
}

.sm__url-reveal {
  display: none;
  margin-top: 1.25rem;
}

.sm__url-reveal--on {
  display: block;
}

.sm__textarea {
  min-height: 9rem;
  resize: vertical;
}

.sm__input--error {
  border-color: #c0504d !important;
  box-shadow: 0 0 0 0.1875rem rgba(192, 80, 77, 0.08) !important;
}

.sm__error-msg {
  display: none;
  font-size: 0.8rem;
  color: #e07a78;
  margin-top: 0.375rem;
  font-weight: 400;
}

.sm__error-msg--on {
  display: block;
}

.sm__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 0.0625rem solid var(--border);
}

.sm__prev {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  color: var(--text-dim);
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0.5rem 0;
  transition: color 0.3s;
}

.sm__prev:hover {
  color: var(--text);
}

.sm__prev svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.sm__next,
.sm__submit {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.25rem;
  background: transparent;
  border: 0.0625rem solid var(--accent);
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.35s var(--ease);
  z-index: 1;
}

.sm__next::before,
.sm__submit::before {
  display: none;
}

.sm__next:hover,
.sm__submit:hover {
  color: var(--accent-soft);
  border-color: var(--accent-soft);
  box-shadow: 0 0 0.75rem rgba(92, 160, 176, 0.25);
}

.sm__btn-icon {
  width: 1rem;
  height: 1rem;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.sm__btn-icon svg {
  width: 100%;
  height: 100%;
}

.sm__success {
  display: none;
  text-align: center;
  padding: 5rem 2rem;
  background: var(--dark-card);
}

.sm__success--on {
  display: block;
}

.sm__success-icon {
  width: 3.5rem;
  height: 3.5rem;
  color: var(--accent);
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sm__success-icon svg {
  width: 100%;
  height: 100%;
}

.sm__success-h {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.sm__success-p {
  font-size: 0.95rem;
  color: var(--text-dim);
  font-weight: 300;
  line-height: 1.9;
  max-width: 30rem;
  margin: 0 auto 2rem;
}

.sm__recap {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 2;
  max-width: 24rem;
  margin: 0 auto;
  text-align: left;
  border-top: 0.0625rem solid var(--border);
  padding-top: 1.5rem;
}

.pf-card__logo-wrap {
  position: absolute;
  inset: 0;
  background: #ffffff;
}

.pf-card__logo-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.4s var(--ease);
}

.pf-card:hover .pf-card__logo-wrap img {
  transform: none;
}

.pf-quality__desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.55;
  letter-spacing: 0.02rem;
  margin: 0.4rem 0 0;
}

.pf-detail {
  padding: 5rem 0 6rem;
  border-top: 0.0625rem solid var(--border);
}

.pf-detail__logo {
  max-width: 26rem;
  width: 100%;
}

.pf-detail__text-logo {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.pf-detail__text-col {
  flex: 1;
}

.pf-detail__logo-col {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pf-detail__line {
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.pf-detail__intro {
  font-size: 1rem;
  color: var(--text-dim);
  font-weight: 300;
  line-height: 1.95;
  letter-spacing: 0.025rem;
  max-width: 44rem;
  margin-bottom: 1.5rem;
}

.pf-detail__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin: 2rem 0;
  padding-bottom: 2rem;
  border-bottom: 0.0625rem solid var(--border);
}

.pf-detail__meta-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 0.25rem;
}

.pf-detail__meta-val {
  font-size: 0.9rem;
  color: var(--text-dim);
  font-weight: 300;
  margin: 0;
}

.pf-detail__back {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: 0.08rem;
  text-decoration: none;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  margin-bottom: 3rem;
  transition: color 0.3s var(--ease);
}

.pf-detail__back::before,
.pf-detail__back::after {
  content: '';
  position: absolute;
  width: 0.75rem;
  height: 0.75rem;
  transition: all 0.4s var(--ease);
}

.pf-detail__back::before {
  top: 0; left: 0;
  border-top: 0.0625rem solid var(--accent);
  border-left: 0.0625rem solid var(--accent);
}

.pf-detail__back::after {
  bottom: 0; right: 0;
  border-bottom: 0.0625rem solid var(--accent);
  border-right: 0.0625rem solid var(--accent);
}

.pf-detail__back:hover::before,
.pf-detail__back:hover::after {
  width: 100%;
  height: 100%;
}

.pf-detail__back:hover {
  color: var(--accent-soft);
}

.pf-detail__ba {
  padding: 6rem 0;
  border-top: 0.0625rem solid var(--border);
}

.pf-detail__ba-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.25rem;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 0.0625rem solid var(--border);
  padding: 0.35rem 1rem;
  margin-bottom: 0.75rem;
}

.pf-detail__ba-label--apres {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(92, 160, 176, 0.07);
}

.pf-detail__ba-img {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  border: 0.0625rem solid var(--border);
  cursor: crosshair;
}

.pf-detail__ba-img img {
  width: 100%;
  height: auto;
  display: block;
}

.pf-detail__ba .col-md-6:last-child .pf-detail__ba-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1.25rem;
  background: #000;
  pointer-events: none;
  z-index: 5;
}

.pf-loupe {
  position: relative;
}

.pf-loupe__lens {
  position: absolute;
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  border: 0.125rem solid var(--accent);
  box-shadow: 0 0 0 0.25rem rgba(5, 8, 16, 0.6), 0 0.5rem 2rem rgba(0,0,0,0.5);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 20;
  overflow: hidden;
  transform: translate(-50%, -50%);
}

.pf-detail__note {
  background: var(--dark-card);
  border: 0.0625rem solid var(--border);
  border-left: 0.1875rem solid var(--accent);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
}

.pf-detail__note p {
  font-size: 0.88rem;
  color: var(--text-dim);
  font-weight: 300;
  margin: 0;
  line-height: 1.7;
}

.pf-detail__figma {
  padding: 6rem 0;
  border-top: 0.0625rem solid var(--border);
}

.pf-detail__figma-img {
  overflow: hidden;
  border: 0.0625rem solid var(--border);
  transition: border-color 0.4s var(--ease);
}

.pf-detail__figma-img:hover {
  border-color: var(--border-hover);
}

.pf-detail__figma-img img {
  width: 100%;
  height: auto;
  display: block;
}

.pf-detail__figma-placeholder__label {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.08rem;
  text-transform: uppercase;
  pointer-events: none;
  user-select: none;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 0.1875rem;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
  z-index: 200;
  width: 0%;
  transition: width 0.1s linear;
  pointer-events: none;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.875rem 1.5rem;
  border-bottom: 0.0625rem solid var(--border);
  width: 100%;
  background: var(--dark2);
  letter-spacing: 0.06em;
  transition: color 0.3s var(--ease);
  margin-top: 11rem;
}

.back-link:hover {
  color: var(--accent-soft);
}

.back-arrow {
  font-size: 1.5rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}

.back-link:hover .back-arrow {
  transform: translateX(-0.3rem);
}

.spin-wrap {
  position: relative;
  border-radius: 0.75rem;
  padding: 0.0625rem;
  margin: 2.5rem 0;
  overflow: hidden;
  background: conic-gradient(
    from var(--border-angle, 0deg),
    rgba(5, 8, 16, 1) 0%,
    rgba(5, 8, 16, 1) 68%,
    var(--accent) 76%,
    var(--accent-soft) 80%,
    rgba(5, 8, 16, 1) 88%,
    rgba(5, 8, 16, 1) 100%
  );
  animation: borderSpin 4s linear infinite;
  box-shadow:
    0 0 2.5rem rgba(92, 160, 176, 0.07),
    0 0 0.75rem rgba(92, 160, 176, 0.04);
}

.article-hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: flex-end;
  padding: clamp(12rem, 20vw, 17rem) clamp(1.5rem, 5vw, 4rem) clamp(3rem, 6vw, 5rem);
  overflow: hidden;
  background: var(--dark2);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 20%, rgba(92, 160, 176, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(92, 160, 176, 0.06) 0%, transparent 60%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(92, 160, 176, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(92, 160, 176, 0.04) 1px, transparent 1px);
  background-size: 3.75rem 3.75rem;
  mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 80%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 53.75rem;
}

.article-category {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-soft);
  border: 0.0625rem solid var(--border);
  padding: 0.38rem 1rem;
  border-radius: 2rem;
  margin-bottom: 2rem;
  background: var(--accent-glow);
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.2s forwards;
}

.article-category::before {
  content: '';
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease infinite;
}

.article-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.35s forwards;
}

.article-title em {
  font-style: italic;
  color: var(--accent-soft);
}

.article-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  font-weight: 300;
  max-width: 40rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  letter-spacing: 0.03em;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.5s forwards;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.65s forwards;
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.meta-label {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}

.meta-value {
  font-size: 1rem;
  color: var(--text-warm);
  letter-spacing: 0.04em;
}

.article-body {
  max-width: 48.75rem;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 2rem);
}

.lead-paragraph {
  font-size: clamp(1.1rem, 2vw, 1.28rem);
  line-height: 1.8;
  color: var(--text-warm);
  margin-bottom: 2.5rem;
  font-weight: 300;
  border-left: 0.125rem solid var(--accent);
  padding-left: 1.5rem;
  letter-spacing: 0.025em;
}

.article-body p {
  color: var(--text-dim);
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.85;
  letter-spacing: 0.02em;
}

.article-body h2 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--text);
  margin: 3.5rem 0 1.2rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  font-weight: 400;
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.0625rem;
  border-radius: calc(0.75rem - 0.0625rem);
  overflow: hidden;
  background: rgba(92, 160, 176, 0.08);
}

.stat-card {
  background: var(--dark-card);
  padding: 2.4rem 2rem;
  text-align: center;
  cursor: default;
}

.stat-number {
  font-family: var(--serif);
  font-size: 3.2rem;
  color: var(--accent-soft);
  line-height: 1;
  display: block;
  margin-bottom: 0.7rem;
  letter-spacing: 0.02em;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.stat-source {
  font-size: 0.75rem;
  color: rgba(184, 191, 204, 0.6);
  margin-top: 0.5rem;
  display: block;
  letter-spacing: 0.03em;
}

.cta-inner {
  background: linear-gradient(135deg, rgba(92, 160, 176, 0.06) 0%, var(--dark2) 100%);
  border-radius: calc(0.75rem - 0.0625rem);
  padding: 3rem 2.5rem;
  text-align: center;
}

.cta-section h2 {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--text);
  margin-bottom: 0.8rem;
  letter-spacing: 0.04em;
  font-weight: 400;
}

.cta-section p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1rem;
  letter-spacing: 0.03em;
}

.callout {
  background: var(--accent-glow);
  border: 0.0625rem solid var(--border);
  border-left: 0.1875rem solid var(--accent);
  border-radius: 0 0.75rem 0.75rem 0;
  padding: 1.8rem 2rem;
  margin: 2.5rem 0;
}

.callout-title {
  font-family: var(--serif);
  font-size: 1.45rem;
  color: var(--accent-soft);
  margin-bottom: 0.7rem;
  letter-spacing: 0.06em;
}

.callout p {
  margin-bottom: 0;
  font-size: 0.98rem;
  color: var(--text-warm);
  letter-spacing: 0.025em;
}

.progress-section {
  margin: 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.progress-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.progress-label {
  font-size: 0.9rem;
  color: var(--text-warm);
  font-weight: 500;
  letter-spacing: 0.035em;
}

.progress-value {
  font-size: 0.85rem;
  color: var(--accent-soft);
  font-weight: 600;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.progress-bar {
  height: 0.375rem;
  background: rgba(92, 160, 176, 0.12);
  border-radius: 0.1875rem;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
  border-radius: 0.1875rem;
  width: 0;
  transition: width 1.5s var(--ease);
}

.article-blockquote {
  margin: 3rem 0;
  padding: 2.8rem 2.8rem 2rem;
  background: var(--dark2);
  border-radius: 0.75rem;
  position: relative;
  overflow: hidden;
}

.article-blockquote::before {
  content: '\201C';
  font-family: var(--serif);
  font-size: 3.6rem;
  color: var(--accent);
  opacity: 0.32;
  position: absolute;
  top: 0.8rem;
  left: 1.7rem;
  line-height: 1;
  pointer-events: none;
}

.article-blockquote p {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2.5vw, 1.32rem);
  color: var(--text-warm);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 1rem;
  padding-top: 1.6rem;
  letter-spacing: 0.04em;
}

.article-blockquote cite {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: normal;
  letter-spacing: 0.06em;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2.5rem 0;
  border-radius: 0.75rem;
  overflow: hidden;
}

.comparison-table thead {
  background: rgba(92, 160, 176, 0.1);
}

.comparison-table th {
  padding: 1rem 1.2rem;
  text-align: left;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-soft);
  border-bottom: 0.0625rem solid var(--border);
}

.comparison-table td {
  padding: 0.9rem 1.2rem;
  font-size: 0.95rem;
  color: var(--text-dim);
  border-bottom: 0.0625rem solid rgba(92, 160, 176, 0.07);
  letter-spacing: 0.025em;
}

.comparison-table tbody tr {
  background: var(--dark-card);
  transition: background 0.2s ease;
}

.comparison-table tbody tr:hover {
  background: rgba(92, 160, 176, 0.04);
}

.tag-good {
  color: #6fcf97;
  font-weight: 600;
}

.tag-bad {
  color: #eb5757;
  font-weight: 600;
}

.share-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem 0;
  border-top: 0.0625rem solid var(--border);
  margin-top: 3rem;
  flex-wrap: wrap;
}

.share-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.share-btn {
  padding: 0.5rem 1.2rem;
  border: 0.0625rem solid var(--border);
  border-radius: 0.375rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  background: transparent;
  cursor: pointer;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
  font-family: var(--sans);
  letter-spacing: 0.06em;
}

.share-btn:hover {
  border-color: var(--accent);
  color: var(--accent-soft);
  background: var(--accent-glow);
}

.blogue-hero {
  position: relative;
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(10rem, 18vw, 14rem) clamp(1.5rem, 5vw, 4rem) clamp(3rem, 6vw, 5rem);
  background: var(--dark2);
  overflow: hidden;
}

.blogue-hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 0%, rgba(92, 160, 176, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.blogue-hero__eyebrow {
  position: relative;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 1rem;
}

.blogue-hero__title {
  position: relative;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--text);
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.blogue-hero__sub {
  position: relative;
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-muted);
  font-weight: 300;
  max-width: 35rem;
  line-height: 1.65;
  letter-spacing: 0.03em;
}

.blogue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 26.25rem), 1fr));
  gap: 2rem;
  max-width: 67.5rem;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 3rem);
}

.blogue-card {
  position: relative;
  border-radius: 0.25rem;
  overflow: hidden;
  text-decoration: none;
  display: block;
  background: var(--dark-card);
  border: 0.0625rem solid var(--border);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}

.blogue-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 0.25rem;
  padding: 0.0625rem;
  background: conic-gradient(
    from var(--border-angle, 0deg),
    rgba(5, 8, 16, 0) 0%,
    rgba(5, 8, 16, 0) 68%,
    var(--accent) 76%,
    var(--accent-soft) 80%,
    rgba(5, 8, 16, 0) 88%,
    rgba(5, 8, 16, 0) 100%
  );
  -webkit-mask:
    linear-gradient(#fff, #fff) content-box,
    linear-gradient(#fff, #fff);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: borderSpin 4s linear infinite;
  pointer-events: none;
  z-index: 2;
}

.blogue-card:hover {
  transform: translateY(-0.1875rem);
  border-color: transparent;
}

.blogue-card__inner {
  position: relative;
  background: var(--dark-card);
  border-radius: 0.1875rem;
  padding: 2.5rem 2.25rem 2.25rem;
  height: 100%;
  transition: background 0.3s var(--ease);
  z-index: 1;
}

.blogue-card:hover .blogue-card__inner {
  background: rgba(8, 13, 24, 0.92);
}

.blogue-card__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 1.2rem;
}

.blogue-card__title {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
  transition: color 0.3s;
}

.blogue-card:hover .blogue-card__title {
  color: var(--accent-soft);
}

.blogue-card__excerpt {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  letter-spacing: 0.02em;
  margin-bottom: 1.75rem;
}

.blogue-card__cta {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  transition: color 0.3s var(--ease), letter-spacing 0.3s var(--ease);
}

.blogue-card:hover .blogue-card__cta {
  color: var(--accent-soft);
  letter-spacing: 0.16em;
}

.article-cta-wrap {
  position: relative;
  border-radius: 0.25rem;
  padding: 0.0625rem;
  overflow: hidden;
  background: conic-gradient(
    from var(--border-angle, 0deg),
    rgba(5, 8, 16, 1) 0%,
    rgba(5, 8, 16, 1) 74%,
    rgba(92, 160, 176, 0.55) 80%,
    rgba(132, 192, 204, 0.35) 83%,
    rgba(5, 8, 16, 1) 90%,
    rgba(5, 8, 16, 1) 100%
  );
  animation: borderSpin 4s linear infinite;
}

.article-cta-wrap__glow {
  position: absolute;
  inset: -50%;
  background: conic-gradient(
    from var(--border-angle, 0deg),
    rgba(5, 8, 16, 0) 0%,
    rgba(5, 8, 16, 0) 72%,
    rgba(92, 160, 176, 0.05) 80%,
    rgba(132, 192, 204, 0.03) 83%,
    rgba(5, 8, 16, 0) 90%,
    rgba(5, 8, 16, 0) 100%
  );
  animation: borderSpin 4s linear infinite;
  filter: blur(1.5rem);
  z-index: -1;
  pointer-events: none;
}

.article-cta-wrap__inner {
  position: relative;
  background: linear-gradient(135deg, rgba(92, 160, 176, 0.06) 0%, var(--dark2) 100%);
  border-radius: calc(0.25rem - 0.0625rem);
  padding: 3rem 2.5rem;
  text-align: center;
}

.article-cta-spaced {
  margin-top: 4rem;
}

.big-num-inner {
  background: var(--dark2);
  border-radius: calc(0.75rem - 0.0625rem);
  padding: 3rem 2rem;
  text-align: center;
}

.big-number-value {
  font-family: var(--serif);
  font-size: clamp(4rem, 10vw, 7rem);
  color: var(--accent-soft);
  line-height: 1;
  display: block;
  letter-spacing: 0.02em;
}

.big-number-label {
  display: block;
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-warm);
  margin-top: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.03em;
}

.big-number-source {
  display: block;
  font-size: 0.75rem;
  color: #9ba3b0;
  margin-top: 0.6rem;
  letter-spacing: 0.03em;
}

.myth-cards {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin: 2.5rem 0;
}

.myth-card {
  background: var(--dark-card);
  border: 0.0625rem solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem 1.8rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  align-items: start;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.myth-card:hover {
  border-color: var(--border-hover);
  background: rgba(92, 160, 176, 0.03);
}

.myth-icon {
  width: 2.625rem;
  height: 2.625rem;
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.myth-icon.danger {
  background: rgba(235, 87, 87, 0.12);
  color: #eb5757;
}

.myth-icon.warning {
  background: rgba(242, 201, 76, 0.12);
  color: #f2c94c;
}

.myth-title {
  font-weight: 600;
  color: var(--text-warm);
  font-size: 0.98rem;
  margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
}

.myth-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
  letter-spacing: 0.02em;
}

.timeline {
  margin: 2.5rem 0;
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 0.0625rem;
  background: linear-gradient(to bottom, var(--accent), transparent);
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateX(-1rem);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.timeline-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.4rem;
  top: 0.55rem;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0.625rem rgba(92, 160, 176, 0.35);
}

.timeline-time {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-soft);
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.timeline-content {
  font-size: 0.98rem;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.two-col-card {
  background: var(--dark-card);
  border: 0.0625rem solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: border-color 0.3s ease;
}

.two-col-card:hover {
  border-color: var(--border-hover);
}

.two-col-card-title {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 0.0625rem solid var(--border);
}

.two-col-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.65;
  letter-spacing: 0.02em;
}

.checklist {
  list-style: none;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.98rem;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}

.checklist li::before {
  content: '\2713';
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

@media (max-width: 36.25rem) {
  .two-col { grid-template-columns: 1fr; }
  .myth-card { grid-template-columns: 1fr; }
  .article-cta-wrap__inner { padding: 2rem 1.5rem; }
  .blogue-grid { gap: 1.5rem; }
}

.comments-area {
  max-width: 48.75rem;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 2rem) clamp(3rem, 6vw, 5rem);
}

.comments-title {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--text);
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.comment-list {
  list-style: none;
  padding: 0;
  margin: 0 0 3rem;
}

.comment-list .comment {
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
}

.comment-author .fn {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-soft);
}

.comment-author img {
  display: none;
}

.comment-metadata {
  margin-bottom: 0.75rem;
}

.comment-metadata a {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-decoration: none;
}

.comment-content p {
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0;
}

.comment-reply-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.05em;
}

.comment-reply-link:hover {
  color: var(--accent-soft);
}

.comment-respond {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 2rem;
}

.comment-reply-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--text);
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.comment-form .comment-notes,
.comment-form .logged-in-as {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.comment-form .comment-notes a,
.comment-form .logged-in-as a {
  color: var(--accent);
  text-decoration: none;
}

.comment-form label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid var(--border) !important;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  color: var(--text) !important;
  font-family: var(--sans);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  transition: border-color 0.2s var(--ease);
  outline: none;
  box-shadow: none !important;
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form textarea:focus {
  border-color: var(--accent) !important;
}

.comment-form textarea {
  min-height: 8rem;
  resize: vertical;
}

.comment-form .submit {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: transparent !important;
  border: 1px solid var(--accent) !important;
  border-radius: 0.375rem;
  color: var(--accent) !important;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.comment-form .submit:hover {
  background: var(--accent) !important;
  color: var(--dark) !important;
}

.comment-awaiting-moderation {
  font-size: 0.8rem;
  color: var(--accent-soft);
  font-style: italic;
  margin-top: 0.5rem;
}

.comment-form-cookies-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.comment-form-cookies-consent label {
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.lh-scores {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.lh-score-item {
  background: var(--dark-card);
  border: 0.0625rem solid var(--border);
  border-radius: 0.75rem;
  padding: 2.25rem 1.5rem 2rem;
  text-align: center;
  transition: border-color 0.3s var(--ease);
}

.lh-score-item:hover {
  border-color: var(--border-hover);
}

.lh-score-ring {
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  border: 0.25rem solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
}

.lh-score-ring::before {
  content: '';
  position: absolute;
  inset: 0.25rem;
  border-radius: 50%;
  background: rgba(92, 160, 176, 0.05);
}

.lh-score-num {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--accent-soft);
  line-height: 1;
  position: relative;
  z-index: 1;
}

.lh-score-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  margin: 0 0 0.5rem;
  letter-spacing: 0.02em;
}

.lh-score-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.65;
  margin: 0;
  letter-spacing: 0.02rem;
}

.pf-card__logo-wrap--padded {
  padding: 1.5rem;
  background: #ffffff;
}