:root {
  --dark: #08110f;
  --dark-soft: #101916;
  --cream: #f7f3ea;
  --ink: #15211d;
  --muted: #aab7ad;
  --green: #2fbf71;
  --gold: #e7b75f;
  --orange: #ff6b35;
  --line: rgba(247, 243, 234, 0.16);
  --page-gutter: clamp(28px, 8vw, 140px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--cream);
  background:
    radial-gradient(circle at 18% 0%, rgba(231, 183, 95, 0.13), transparent 30%),
    radial-gradient(circle at 82% 12%, rgba(47, 191, 113, 0.14), transparent 28%),
    var(--dark);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--page-gutter);
  background: rgba(8, 17, 15, 0.84);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: clamp(154px, 14vw, 220px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.site-nav a:not(.nav-cta):hover { color: var(--cream); }

.nav-cta {
  color: var(--dark);
  background: var(--cream);
  padding: 10px 14px;
  border-radius: 8px;
}

.nav-toggle { display: none; }

.section {
  padding: clamp(72px, 9vw, 126px) var(--page-gutter);
}

.hero {
  position: relative;
  min-height: calc(100vh - 79px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
  overflow: hidden;
  background: #090817;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(8, 17, 15, 0.84), rgba(8, 17, 15, 0.58)),
    linear-gradient(180deg, rgba(8, 17, 15, 0.18), rgba(8, 17, 15, 0.72));
}

.hero-shader {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-copy,
.hero-panel {
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
}

h1,
h2 {
  margin: 0;
  font-family: "Outfit", system-ui, sans-serif;
  line-height: 0.96;
  letter-spacing: 0;
}

h1 {
  max-width: 850px;
  font-size: clamp(44px, 7vw, 92px);
}

h2 { font-size: clamp(34px, 5vw, 64px); }

.hero-lede {
  max-width: 660px;
  color: #d4ded7;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.button-primary {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 18px 34px rgba(255, 107, 53, 0.28);
}

.button-secondary {
  border: 1px solid var(--line);
  color: var(--cream);
  background: rgba(255, 255, 255, 0.03);
}

.hero-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 34px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.015)),
    rgba(16, 25, 22, 0.58);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(10px);
}

.panel-topline,
.diagnostic-list div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.panel-topline strong,
.diagnostic-list strong { color: var(--gold); }

.score-ring {
  display: grid;
  place-items: center;
  width: min(260px, 78vw);
  aspect-ratio: 1;
  margin: 34px auto;
  border-radius: 50%;
  border: 18px solid rgba(47, 191, 113, 0.24);
  outline: 1px solid rgba(47, 191, 113, 0.46);
  transition: border-color 0.28s ease, outline-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}

.score-value {
  position: relative;
  display: grid;
  min-width: 150px;
  min-height: 68px;
  place-items: center;
}

.score-default,
.score-mid,
.score-high {
  grid-area: 1 / 1;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 54px;
  font-weight: 900;
  color: #ef4444;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.score-mid,
.score-high {
  opacity: 0;
  transform: translateY(12px) scale(0.92);
}

.score-mid { color: #f59e0b; }
.score-high { color: #2fbf71; }

.score-ring small {
  color: var(--muted);
  font-weight: 800;
  transition: color 0.28s ease;
}

.hero-panel:hover .score-ring {
  transform: translateY(-4px) scale(1.025);
  animation: scoreRingCycle 2.4s ease-in-out infinite;
}

.hero-panel:hover .score-default,
.hero-panel:hover .score-mid,
.hero-panel:hover .score-high {
  animation: scoreValueCycle 2.4s ease-in-out infinite;
}

.hero-panel:hover .score-mid {
  animation-delay: 0.8s;
}

.hero-panel:hover .score-high {
  animation-delay: 1.6s;
}

.hero-panel:hover .score-ring small {
  color: #d8eadf;
}

@keyframes scoreValueCycle {
  0%, 27% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  33%, 100% {
    opacity: 0;
    transform: translateY(-12px) scale(0.92);
  }
}

@keyframes scoreRingCycle {
  0%, 27% {
    border-color: rgba(239, 68, 68, 0.32);
    outline-color: rgba(239, 68, 68, 0.68);
    box-shadow:
      inset 0 0 42px rgba(239, 68, 68, 0.1),
      0 0 44px rgba(239, 68, 68, 0.14);
  }
  33%, 60% {
    border-color: rgba(245, 158, 11, 0.34);
    outline-color: rgba(245, 158, 11, 0.72);
    box-shadow:
      inset 0 0 42px rgba(245, 158, 11, 0.11),
      0 0 44px rgba(245, 158, 11, 0.16);
  }
  66%, 100% {
    border-color: rgba(47, 191, 113, 0.34);
    outline-color: rgba(47, 191, 113, 0.72);
    box-shadow:
      inset 0 0 42px rgba(47, 191, 113, 0.11),
      0 0 44px rgba(47, 191, 113, 0.16);
  }
}

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

.section-heading p:not(.eyebrow),
.diagnosis-copy p {
  color: #526057;
  font-size: 18px;
  line-height: 1.7;
}

.process,
.sectors {
  color: var(--ink);
  background: var(--cream);
}

.process .eyebrow,
.sectors .eyebrow { color: #8b5d15; }

.problem {
  position: relative;
  min-height: 850px;
  overflow: hidden;
  color: #f8fafc;
  background:
    radial-gradient(circle at 50% 18%, rgba(47, 191, 113, 0.18), transparent 28%),
    radial-gradient(circle at 76% 62%, rgba(231, 183, 95, 0.12), transparent 30%),
    linear-gradient(180deg, #030706 0%, #07110f 48%, #020403 100%);
}

.problem::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
}

.problem::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -42%;
  width: min(82vw, 1180px);
  aspect-ratio: 1;
  transform: translateX(-50%);
  border: 1px solid rgba(231, 183, 95, 0.18);
  border-radius: 50%;
  pointer-events: none;
  box-shadow:
    inset 0 0 0 90px rgba(255, 255, 255, 0.012),
    0 0 140px rgba(47, 191, 113, 0.1);
}

.problem-copy,
.problem-gallery-shell {
  position: relative;
  z-index: 1;
}

.problem-copy {
  max-width: 780px;
  margin: 0 auto 20px;
  text-align: center;
}

.problem .eyebrow {
  color: #e7b75f;
}

.problem h2 {
  font-size: clamp(44px, 5.6vw, 86px);
  line-height: 0.94;
}

.problem-copy p:not(.eyebrow) {
  max-width: 640px;
  margin: 14px auto 0;
  color: rgba(248, 250, 252, 0.72);
  font-size: 18px;
  line-height: 1.65;
}

.problem-gallery-shell {
  min-height: 600px;
  margin-top: 14px;
  perspective: 2200px;
}

.problem-gallery {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
}

.problem-card {
  position: absolute;
  left: 50%;
  top: 52%;
  width: min(420px, 32vw);
  height: min(560px, 62vw);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(10, 18, 16, 0.62);
  box-shadow: 0 38px 110px rgba(0, 0, 0, 0.58);
  transform-style: preserve-3d;
  transition: transform 0.62s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.42s ease, filter 0.42s ease, box-shadow 0.42s ease;
  will-change: transform, opacity;
}

.problem-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 16, 13, 0.1), rgba(6, 16, 13, 0.86)),
    radial-gradient(circle at 24% 16%, rgba(231, 183, 95, 0.24), transparent 34%);
  pointer-events: none;
}

.problem-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.06);
  transform: scale(1.04);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.problem-card div {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 22px;
  color: #fff;
}

.problem-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border: 1px solid rgba(231, 183, 95, 0.48);
  border-radius: 50%;
  color: #e7b75f;
  background: rgba(6, 16, 13, 0.62);
  font-size: 13px;
  font-weight: 900;
}

.problem-card strong {
  display: block;
  max-width: 310px;
  font-size: clamp(26px, 2.2vw, 36px);
  line-height: 1.08;
}

.problem-card em {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  font-style: italic;
  font-weight: 800;
}

.problem-card p {
  margin-top: 10px;
  color: rgba(248, 250, 252, 0.78);
  line-height: 1.55;
}

.problem-card.is-active {
  z-index: 4;
  opacity: 1;
  filter: none;
  transform: translate(-50%, -50%) rotateY(0deg) translateZ(220px) scale(1);
}

.problem-card.is-left {
  z-index: 2;
  opacity: 0.76;
  filter: saturate(0.82) brightness(0.78);
  transform: translate(-148%, -48%) rotateY(42deg) rotateZ(-4deg) translateZ(-120px) scale(0.9);
}

.problem-card.is-right {
  z-index: 2;
  opacity: 0.76;
  filter: saturate(0.82) brightness(0.78);
  transform: translate(48%, -48%) rotateY(-42deg) rotateZ(4deg) translateZ(-120px) scale(0.9);
}

.problem-card.is-back {
  z-index: 1;
  opacity: 0.3;
  filter: saturate(0.62) brightness(0.52) blur(1px);
  transform: translate(-50%, -45%) rotateY(0deg) translateZ(-520px) scale(0.78);
}

.problem-card.is-hidden {
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  filter: saturate(0.5) brightness(0.45) blur(2px);
  transform: translate(-50%, -45%) rotateY(0deg) translateZ(-680px) scale(0.68);
}

.problem-card.is-active:hover img {
  transform: scale(1.1);
  filter: saturate(1.05) contrast(1.12);
}

.problem-nav {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, 0.72);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.problem-nav:hover {
  border-color: rgba(231, 183, 95, 0.56);
  background: rgba(7, 17, 15, 0.92);
  transform: translateY(-50%) scale(1.08);
}

.problem-prev { left: max(18px, calc(var(--page-gutter) * 0.34)); }
.problem-next { right: max(18px, calc(var(--page-gutter) * 0.34)); }

.module-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.module-grid article {
  min-height: 210px;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid rgba(21, 33, 29, 0.14);
  background: rgba(255, 255, 255, 0.58);
}

.module-grid strong {
  display: block;
  margin-bottom: 12px;
  font-size: 20px;
}

.module-grid p,
.timeline span {
  color: #526057;
  line-height: 1.65;
}

.system { background: var(--dark-soft); }

.system .section-heading {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.system .module-grid {
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  width: min(100%, 1120px);
  margin-right: auto;
  margin-left: auto;
}

.module-grid article {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.system .module-grid article {
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 240px;
  text-align: center;
}

.module-grid span {
  display: inline-flex;
  margin-bottom: 38px;
  color: var(--gold);
  font-weight: 900;
}

.process { border-top: 1px solid rgba(21, 33, 29, 0.1); }

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  list-style: none;
  background: rgba(21, 33, 29, 0.16);
}

.timeline li {
  padding: 24px;
  background: var(--cream);
}

.timeline strong {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
}

.process-orbit {
  position: relative;
  overflow: hidden;
  color: #f8fafc;
  border-top: 1px solid rgba(247, 243, 234, 0.08);
  background:
    radial-gradient(circle at 50% 42%, rgba(47, 191, 113, 0.18), transparent 34%),
    radial-gradient(circle at 18% 16%, rgba(231, 183, 95, 0.1), transparent 26%),
    linear-gradient(180deg, #030706 0%, #08110f 54%, #030706 100%);
}

.process-orbit::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: radial-gradient(circle at 50% 50%, #000, transparent 76%);
}

.process-orbit .eyebrow {
  color: var(--gold);
}

.process-copy,
.process-orbit-stage {
  position: relative;
  z-index: 1;
}

.process-copy {
  max-width: 900px;
  margin: 0 auto 44px;
  text-align: center;
}

.process-copy h2 {
  max-width: 860px;
  margin: 0 auto;
  font-size: clamp(44px, 6vw, 82px);
}

.process-copy p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px auto 0;
  color: rgba(248, 250, 252, 0.74);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
}

.process-orbit-stage {
  display: grid;
  min-height: 680px;
  place-items: center;
  isolation: isolate;
}

.process-orbit-ring {
  position: absolute;
  width: min(680px, 76vw);
  aspect-ratio: 1;
  border: 1px solid rgba(231, 183, 95, 0.18);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 38px rgba(255, 255, 255, 0.012),
    inset 0 0 0 96px rgba(47, 191, 113, 0.018),
    0 0 120px rgba(47, 191, 113, 0.1);
  animation: processOrbitSpin 28s linear infinite;
}

.process-orbit-ring::before,
.process-orbit-ring::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.process-orbit-ring::before { inset: 14%; }
.process-orbit-ring::after { inset: 31%; border-color: rgba(231, 183, 95, 0.12); }

.process-orbit-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  display: grid;
  width: clamp(104px, 10vw, 128px);
  aspect-ratio: 1;
  place-items: center;
  padding: 16px;
  border: 1px solid rgba(47, 191, 113, 0.42);
  border-radius: 50%;
  color: #07110f;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.74), transparent 28%),
    linear-gradient(145deg, #f7f3ea, #2fbf71);
  box-shadow: 0 28px 80px rgba(47, 191, 113, 0.2);
  text-align: center;
  transform: translate(92px, -142px);
}

.process-orbit-core span,
.process-orbit-core strong {
  font-family: "Outfit", system-ui, sans-serif;
  line-height: 0.96;
}

.process-orbit-core span {
  color: #07110f;
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 900;
}

.process-orbit-core strong {
  color: rgba(7, 17, 15, 0.74);
  font-size: clamp(11px, 1vw, 14px);
}

.process-orbit-node {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  min-width: 154px;
  gap: 8px;
  justify-items: center;
  padding: 16px 18px;
  border: 1px solid rgba(247, 243, 234, 0.16);
  border-radius: 999px;
  color: rgba(248, 250, 252, 0.76);
  background: rgba(8, 17, 15, 0.74);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.26);
  cursor: pointer;
  transform:
    translate(-50%, -50%)
    rotate(calc(var(--orbit-index) * 72deg))
    translateX(clamp(270px, 32vw, 390px))
    rotate(calc(var(--orbit-index) * -72deg));
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease, color 0.28s ease, box-shadow 0.28s ease;
}

.process-orbit-node span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--gold);
  background: rgba(231, 183, 95, 0.12);
  font-size: 12px;
  font-weight: 900;
}

.process-orbit-node strong {
  font-size: 15px;
  font-weight: 900;
}

.process-orbit-node:hover,
.process-orbit-node.is-related {
  border-color: rgba(231, 183, 95, 0.48);
  color: #fff;
  background: rgba(18, 32, 28, 0.86);
}

.process-orbit-node.is-related {
  animation: processNodePulse 1.5s ease-in-out infinite;
}

.process-orbit-node.is-active {
  z-index: 3;
  color: #07110f;
  border-color: rgba(47, 191, 113, 0.86);
  background: #2fbf71;
  box-shadow: 0 28px 80px rgba(47, 191, 113, 0.28);
  transform:
    translate(-50%, -50%)
    rotate(calc(var(--orbit-index) * 72deg))
    translateX(clamp(270px, 32vw, 390px))
    rotate(calc(var(--orbit-index) * -72deg))
    scale(1.08);
}

.process-orbit-node.is-active span {
  color: #07110f;
  background: rgba(255, 255, 255, 0.5);
}

.process-orbit-node[data-node-id="medicion"] {
  transform: translate(-50%, -50%) translate(270px, -225px);
}

.process-orbit-node[data-node-id="medicion"].is-active {
  transform: translate(-50%, -50%) translate(270px, -225px) scale(1.08);
}

.process-orbit-detail {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  width: min(420px, calc(100% - 32px));
  padding: 24px;
  border: 1px solid rgba(247, 243, 234, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.025)),
    rgba(8, 17, 15, 0.88);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
  transform: translate(-50%, -50%);
}

.process-orbit-detail > span {
  display: inline-flex;
  padding: 7px 10px;
  border: 1px solid rgba(231, 183, 95, 0.22);
  border-radius: 999px;
  color: #f3d99f;
  background: rgba(231, 183, 95, 0.08);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.process-orbit-detail h3 {
  margin: 18px 0 10px;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 0.98;
}

.process-orbit-detail p {
  margin: 0;
  color: rgba(248, 250, 252, 0.76);
  line-height: 1.65;
}

.process-orbit-meter {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 16px;
  align-items: center;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.process-orbit-meter small {
  color: rgba(248, 250, 252, 0.62);
  font-weight: 800;
}

.process-orbit-meter strong {
  color: #2fbf71;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 22px;
}

.process-orbit-meter i {
  grid-column: 1 / -1;
  display: block;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.process-orbit-meter i::before {
  content: "";
  display: block;
  width: var(--energy, 78%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--green));
  transition: width 0.28s ease;
}

@keyframes processOrbitSpin {
  to { transform: rotate(360deg); }
}

@keyframes processNodePulse {
  0%, 100% { box-shadow: 0 22px 58px rgba(0, 0, 0, 0.26); }
  50% { box-shadow: 0 24px 72px rgba(231, 183, 95, 0.28); }
}

.authority {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(320px, 620px);
  gap: clamp(34px, 4vw, 70px);
  align-items: start;
  justify-content: center;
}

.authority-points {
  display: grid;
  gap: 10px;
}

.authority-points p {
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #d4ded7;
}

.sector-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sectors .section-heading,
.sector-list {
  max-width: 1500px;
  margin-right: auto;
  margin-left: auto;
}

.sector-list span {
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid rgba(21, 33, 29, 0.16);
  background: #fff;
  font-weight: 900;
}

.testimonials {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.55fr) minmax(560px, 1fr);
  gap: clamp(34px, 6vw, 70px);
  align-items: center;
  overflow: hidden;
  background: #0f172a;
}

.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 63% 45%, rgba(99, 102, 241, 0.18), transparent 30%),
    linear-gradient(90deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.72));
  pointer-events: none;
}

.testimonial-copy,
.testimonial-stage {
  position: relative;
  z-index: 1;
}

.testimonial-copy p:not(.eyebrow) {
  max-width: 560px;
  color: #aab7c9;
  font-size: 18px;
  line-height: 1.7;
}

.testimonial-shuffle {
  margin-top: 22px;
}

.testimonial-stage {
  min-height: 620px;
  perspective: 1200px;
}

.testimonial-card {
  position: absolute;
  top: 28px;
  left: 8%;
  display: grid;
  align-content: center;
  gap: 32px;
  width: min(440px, 72vw);
  min-height: 620px;
  padding: 44px 34px;
  user-select: none;
  border: 2px solid rgba(148, 163, 184, 0.24);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.88), rgba(15, 23, 42, 0.72)),
    rgba(15, 23, 42, 0.82);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
  transition: transform 0.35s ease, opacity 0.35s ease, filter 0.35s ease;
}

.testimonial-logo {
  display: grid;
  place-items: center;
  width: 128px;
  height: 128px;
  margin: 0 auto;
  pointer-events: none;
  border: 2px solid rgba(148, 163, 184, 0.36);
  border-radius: 50%;
  color: #f8fafc;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 40px;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow:
    inset 0 0 32px rgba(255, 255, 255, 0.12),
    0 22px 60px rgba(15, 23, 42, 0.48);
}

.testimonial-logo-home {
  background:
    radial-gradient(circle at 32% 25%, rgba(255, 255, 255, 0.34), transparent 27%),
    linear-gradient(145deg, #0f766e, #22c55e);
}

.testimonial-logo-nomads {
  background:
    radial-gradient(circle at 68% 22%, rgba(255, 255, 255, 0.3), transparent 28%),
    linear-gradient(145deg, #2563eb, #7c3aed);
}

.testimonial-logo-brisa {
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.32), transparent 27%),
    linear-gradient(145deg, #f97316, #e11d48);
}

.testimonial-card blockquote {
  margin: 0;
  color: #aab7c9;
  font-size: clamp(22px, 2vw, 28px);
  font-style: italic;
  font-weight: 700;
  line-height: 1.55;
  text-align: center;
}

.testimonial-card div {
  display: grid;
  gap: 6px;
  text-align: center;
}

.testimonial-card strong {
  color: #818cf8;
  font-size: 18px;
}

.testimonial-card span {
  color: #94a3b8;
  font-size: 13px;
  font-weight: 800;
}

.testimonial-card.is-front {
  z-index: 3;
  cursor: grab;
  transform: translateX(0) rotate(-6deg);
}

.testimonial-card.is-front:active { cursor: grabbing; }

.testimonial-card.is-middle {
  z-index: 2;
  opacity: 0.82;
  transform: translateX(31%) rotate(0deg);
}

.testimonial-card.is-middle .testimonial-logo,
.testimonial-card.is-middle blockquote {
  filter: blur(7px);
}

.testimonial-card.is-back {
  z-index: 1;
  opacity: 0.62;
  transform: translateX(62%) rotate(6deg);
}

.testimonial-card.is-back .testimonial-logo,
.testimonial-card.is-back blockquote {
  filter: blur(9px);
}

.diagnosis {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  background: #12110e;
}

.diagnosis-copy p { color: #d4ded7; }

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.lead-form-premium {
  gap: 18px;
  padding: clamp(26px, 4vw, 40px);
  border-color: rgba(148, 163, 184, 0.22);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.88), rgba(15, 23, 42, 0.72)),
    rgba(2, 6, 23, 0.82);
  box-shadow: 0 0 60px rgba(99, 102, 241, 0.12), 0 28px 80px rgba(0, 0, 0, 0.28);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: #d4ded7;
  font-weight: 900;
  font-size: 13px;
}

.lead-form-premium label > span:first-child {
  color: #94a3b8;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field-control {
  position: relative;
  display: block;
}

.field-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
  color: #64748b;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  pointer-events: none;
}

.select-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 11px;
  font-weight: 900;
  pointer-events: none;
}

.lead-form input,
.lead-form textarea,
.lead-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--cream);
  background: rgba(0, 0, 0, 0.22);
  font: inherit;
}

.lead-form-premium input,
.lead-form-premium textarea,
.lead-form-premium select {
  min-height: 52px;
  border-color: rgba(30, 41, 59, 0.96);
  border-radius: 16px;
  color: #f8fafc;
  background: rgba(15, 23, 42, 0.92);
  font-size: 14px;
  font-weight: 700;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.lead-form-premium input,
.lead-form-premium select {
  padding: 14px 16px 14px 48px;
}

.lead-form-premium select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 46px;
  cursor: pointer;
}

.lead-form-premium select option {
  color: #f8fafc;
  background: #0f172a;
}

.lead-form-premium textarea {
  resize: vertical;
  padding: 14px 16px;
}

.lead-form-premium input::placeholder,
.lead-form-premium textarea::placeholder {
  color: #64748b;
}

.lead-form-premium input:hover,
.lead-form-premium textarea:hover,
.lead-form-premium select:hover {
  border-color: #334155;
}

.lead-form-premium input:focus,
.lead-form-premium textarea:focus,
.lead-form-premium select:focus {
  outline: 0;
  border-color: #6366f1;
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.16);
  background: rgba(15, 23, 42, 0.98);
}

.form-wide { grid-column: 1 / -1; }

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.lead-form-premium .button-primary {
  min-height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  box-shadow: 0 18px 42px rgba(79, 70, 229, 0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.lead-form-premium .button-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 24px 52px rgba(79, 70, 229, 0.42);
}

.lead-form-premium .form-note {
  color: #64748b;
  text-align: center;
}

.form-success {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(47, 191, 113, 0.38);
  border-radius: 8px;
  color: #bff5d5;
  background: rgba(47, 191, 113, 0.12);
  font-weight: 900;
}

.form-error {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(255, 107, 53, 0.42);
  border-radius: 8px;
  color: #ffd7c7;
  background: rgba(255, 107, 53, 0.12);
  font-weight: 900;
}

.lead-form button[disabled] {
  cursor: not-allowed;
  opacity: 0.72;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 28px var(--page-gutter);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-brand {
  display: grid;
  gap: 4px;
}

.footer-brand span:first-child {
  color: var(--cream);
  font-weight: 900;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  font-weight: 800;
}

.footer-links a {
  color: rgba(247, 243, 234, 0.72);
}

.footer-links a:hover {
  color: var(--cream);
}

.legal-page {
  background:
    radial-gradient(circle at 12% 0%, rgba(47, 191, 113, 0.16), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(231, 183, 95, 0.12), transparent 28%),
    var(--dark);
}

.legal-main {
  min-height: 70vh;
}

.legal-hero {
  padding-bottom: 36px;
}

.legal-hero h1 {
  max-width: 900px;
  font-size: clamp(44px, 6vw, 82px);
}

.legal-hero p {
  max-width: 760px;
  color: rgba(247, 243, 234, 0.76);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
}

.legal-content {
  display: grid;
  gap: 18px;
  padding-top: 0;
  max-width: 980px;
}

.legal-content article {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.045);
}

.legal-content h2 {
  font-size: clamp(24px, 3vw, 36px);
}

.legal-content p {
  color: rgba(247, 243, 234, 0.76);
  line-height: 1.7;
}

@media (max-width: 980px) {
  .module-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .problem {
    min-height: 780px;
  }

  .problem-gallery-shell {
    min-height: 560px;
  }

  .problem-card {
    width: min(360px, 48vw);
    height: min(500px, 66vw);
  }

  .authority,
  .diagnosis,
  .testimonials {
    grid-template-columns: 1fr;
  }

  .testimonial-stage {
    min-height: 560px;
  }

  .testimonial-card {
    left: 3%;
  }
}

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; }

  .site-nav {
    position: fixed;
    inset: 79px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--dark-soft);
  }

  .site-nav.is-open { display: flex; }

  .nav-toggle {
    display: inline-grid;
    gap: 5px;
    width: 42px;
    height: 42px;
    place-content: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: transparent;
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--cream);
  }
}

@media (max-width: 620px) {
  .module-grid,
  .timeline,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .problem h2 {
    font-size: 40px;
    line-height: 1.02;
  }

  .problem-gallery-shell {
    min-height: auto;
    perspective: none;
  }

  .problem-gallery {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    min-height: auto;
  }

  .problem-card,
  .problem-card.is-active,
  .problem-card.is-left,
  .problem-card.is-right,
  .problem-card.is-back {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: auto;
    min-height: 390px;
    transform: none;
    opacity: 1;
    filter: none;
  }

  .problem-nav { display: none; }
}

@media (max-width: 760px) {
  .process-orbit-stage {
    min-height: auto;
    gap: 14px;
    place-items: stretch;
  }

  .process-copy {
    text-align: left;
  }

  .process-orbit-ring,
  .process-orbit-core {
    display: none;
  }

  .process-orbit-node,
  .process-orbit-node.is-active {
    position: relative;
    left: auto;
    top: auto;
    grid-template-columns: 42px 1fr;
    min-width: 0;
    justify-items: start;
    width: 100%;
    padding: 16px;
    border-radius: 8px;
    transform: none;
  }

  .process-orbit-node span {
    grid-row: span 1;
  }

  .process-orbit-detail {
    position: relative;
    left: auto;
    top: auto;
    bottom: auto;
    order: 10;
    width: 100%;
    margin-top: 8px;
    transform: none;
  }
}

@media (max-width: 420px) {
  h1 { font-size: 40px; }
  h2 { font-size: 32px; }
  .brand-logo { width: 152px; }
  .section {
    padding-left: 16px;
    padding-right: 16px;
  }
  .hero-panel { padding: 18px; }
  .button { width: 100%; }

  .testimonial-stage {
    min-height: 620px;
  }

  .testimonial-card {
    left: 50%;
    width: min(340px, 86vw);
    min-height: 450px;
    padding: 34px 24px;
  }

  .testimonial-card blockquote {
    font-size: 21px;
  }

  .testimonial-card.is-front { transform: translateX(-58%) rotate(-5deg); }
  .testimonial-card.is-middle { transform: translateX(-48%) translateY(24px) rotate(1deg); }
  .testimonial-card.is-back { transform: translateX(-38%) translateY(48px) rotate(6deg); }
}

@media (prefers-reduced-motion: reduce) {
  .problem-card {
    animation: none;
  }

  .process-orbit-ring,
  .process-orbit-node.is-related {
    animation: none;
  }
}
.pricing-page {
  background:
    radial-gradient(circle at 18% 8%, rgba(231, 183, 95, 0.13), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(47, 191, 113, 0.14), transparent 30%),
    #030706;
}

.modern-pricing {
  overflow: hidden;
}

.modern-pricing-hero {
  position: relative;
  min-height: calc(100vh - 79px);
  display: grid;
  align-content: center;
  gap: clamp(38px, 5vw, 64px);
  background:
    radial-gradient(circle at 50% 24%, rgba(47, 191, 113, 0.18), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(231, 183, 95, 0.14), transparent 30%),
    linear-gradient(180deg, #030706 0%, #07110f 52%, #030706 100%);
}

.modern-pricing-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: radial-gradient(circle at 50% 46%, #000, transparent 72%);
}

.pricing-orbit {
  position: absolute;
  left: 50%;
  top: 48%;
  width: min(78vw, 980px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(231, 183, 95, 0.18);
  border-radius: 50%;
  pointer-events: none;
  box-shadow:
    inset 0 0 0 20px rgba(255, 255, 255, 0.014),
    inset 0 0 0 42px rgba(47, 191, 113, 0.02),
    0 0 140px rgba(47, 191, 113, 0.12);
  animation: pricingOrbit 16s linear infinite;
}

.pricing-orbit::before,
.pricing-orbit::after {
  content: "";
  position: absolute;
  inset: 7%;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}

.pricing-orbit::after {
  inset: 18%;
  border-color: rgba(231, 183, 95, 0.12);
}

.modern-pricing-copy {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.modern-pricing-copy h1 {
  max-width: 100%;
  font-size: clamp(48px, 7vw, 94px);
  background: linear-gradient(90deg, #f8fafc 0%, #f3d99f 45%, #2fbf71 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.modern-pricing-copy p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px auto 0;
  color: rgba(247, 243, 234, 0.76);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
}

.modern-pricing-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(240px, 1fr));
  gap: clamp(18px, 2.3vw, 28px);
  align-items: stretch;
}

.modern-price-card {
  position: relative;
  display: flex;
  min-height: 620px;
  overflow: hidden;
  flex-direction: column;
  padding: clamp(22px, 2.2vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.025)),
    rgba(8, 17, 15, 0.58);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.modern-price-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--shine-x, 50%) var(--shine-y, 0%), rgba(231, 183, 95, 0.24), transparent 34%);
  transition: opacity 0.28s ease;
}

.modern-price-card:hover {
  transform: translateY(-8px);
  border-color: rgba(231, 183, 95, 0.34);
  box-shadow: 0 38px 110px rgba(0, 0, 0, 0.44), 0 0 60px rgba(47, 191, 113, 0.12);
}

.modern-price-card:hover::before {
  opacity: 1;
}

.modern-price-card.is-popular {
  z-index: 1;
  transform: translateY(-16px) scale(1.035);
  border-color: rgba(47, 191, 113, 0.38);
  background:
    radial-gradient(circle at 80% 0%, rgba(47, 191, 113, 0.22), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    rgba(8, 17, 15, 0.72);
}

.popular-pill {
  align-self: flex-start;
  padding: 7px 10px;
  border: 1px solid rgba(231, 183, 95, 0.24);
  border-radius: 999px;
  color: #f3d99f;
  background: rgba(231, 183, 95, 0.08);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.modern-price-card.is-popular .popular-pill {
  color: #07110f;
  border-color: transparent;
  background: #2fbf71;
}

.modern-price-card h2 {
  overflow-wrap: normal;
  word-break: normal;
  margin-top: 22px;
  font-size: clamp(34px, 2.55vw, 43px);
  font-weight: 800;
  line-height: 0.95;
}

.modern-price-card p {
  max-width: 30ch;
  color: #dce7df;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.6;
}

.modern-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 22px 0 24px;
}

.modern-price span {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: clamp(46px, 4.4vw, 62px);
  font-weight: 800;
  line-height: 0.95;
}

.modern-price small {
  color: rgba(247, 243, 234, 0.84);
  font-size: 13px;
  font-weight: 900;
}

.modern-price-text {
  display: grid;
  gap: 8px;
}

.modern-price-text span {
  font-size: clamp(34px, 3vw, 46px);
}

.modern-price-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 28px;
  padding: 22px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  list-style: none;
}

.modern-price-card li {
  align-items: flex-start;
  display: flex;
  gap: 10px;
  color: #e8f1ea;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.modern-price-card li::before {
  flex: 0 0 auto;
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: rgba(47, 191, 113, 0.12);
  font-size: 10px;
  content: "OK";
  color: #2fbf71;
  font-weight: 900;
}

.pricing-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: auto;
  overflow: hidden;
  border-radius: 14px;
  color: #07110f;
  background: #2fbf71;
  font-weight: 900;
  isolation: isolate;
}

.pricing-button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.46) 42%, transparent 72%);
  transform: translateX(-110%);
  transition: transform 0.55s ease;
}

.pricing-button:hover::before {
  transform: translateX(110%);
}

.pricing-button-secondary {
  color: #f8fafc;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
}

.pricing-addons {
  background:
    radial-gradient(circle at 14% 24%, rgba(231, 183, 95, 0.13), transparent 28%),
    radial-gradient(circle at 84% 16%, rgba(47, 191, 113, 0.14), transparent 30%),
    var(--dark-soft);
}

.pricing-addons .section-heading p:not(.eyebrow) {
  color: #dce7df;
  font-size: 18px;
  font-weight: 650;
}

.addon-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.addon-card,
.service-strip article {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  padding: 26px;
}

.addon-card {
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(8, 17, 15, 0.52);
}

.addon-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--green));
  opacity: 0.72;
}

.addon-card span,
.service-strip span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.addon-card h3 {
  margin: 18px 0 10px;
  color: #fff;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 30px;
  line-height: 1.02;
}

.addon-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.addon-card li {
  color: #e8f1ea;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.addon-card li::before {
  content: "+";
  margin-right: 8px;
  color: var(--green);
  font-weight: 900;
}

.addon-card strong {
  display: block;
  margin-top: 22px;
  color: #f3d99f;
  line-height: 1.5;
}

.addon-wide {
  grid-column: span 3;
}

.extra-services {
  background: var(--cream);
  color: var(--ink);
}

.extra-services .eyebrow {
  color: #8b5d15;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(240px, 1fr));
  gap: 14px;
}

.service-strip article {
  min-height: 250px;
  border: 1px solid rgba(21, 33, 29, 0.13);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 20px 54px rgba(21, 33, 29, 0.08);
}

.service-strip strong {
  display: block;
  margin-bottom: 12px;
  font-size: 20px;
}

.service-strip p {
  color: #526057;
  line-height: 1.65;
}

.service-strip span {
  display: block;
  margin-top: 18px;
  color: #8b5d15;
}

.pricing-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background:
    linear-gradient(135deg, rgba(8, 17, 15, 0.94), rgba(16, 25, 22, 0.96)),
    radial-gradient(circle at 84% 0%, rgba(255, 107, 53, 0.2), transparent 30%);
}

.pricing-cta h2 {
  max-width: 900px;
}

@keyframes pricingOrbit {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@media (max-width: 1280px) {
  .modern-pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .modern-price-card.is-popular {
  z-index: 1;
    transform: none;
  }
}

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

@media (max-width: 860px) {
  .pricing-cta {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .addon-wide {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  .modern-pricing-grid,
  .service-strip {
    grid-template-columns: 1fr;
  }

  .modern-price-card {
    min-height: auto;
  }

  .pricing-orbit {
    width: 120vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pricing-orbit {
    animation: none;
  }

  .modern-price-card,
  .pricing-button::before {
    transition: none;
  }
}
