:root {
  --bg: #0a0a0a;
  --bg-2: #111111;
  --bg-3: #171717;
  --text: #f7f4ef;
  --muted: rgba(255, 255, 255, 0.78);
  --soft: rgba(255, 255, 255, 0.64);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --amber: #d87722;
  --teal: #16857f;
  --max: 1120px;
  --radius: 8px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  max-width: 100%;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 clamp(18px, 4vw, 44px);
  background: rgba(247, 244, 239, 0.94);
  border-bottom: 1px solid rgba(21, 19, 15, 0.12);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 42px rgba(10, 10, 10, 0.08);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 174px;
  font-weight: 600;
  letter-spacing: 0;
}

.brand-logo {
  width: clamp(132px, 11vw, 164px);
  height: auto;
  flex: 0 0 clamp(132px, 11vw, 164px);
  object-fit: contain;
  border-radius: 0;
}

.brand-text {
  color: #15130f;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}

.nav-link,
.mega-link,
.mobile-link,
.mobile-sub-link,
.footer-link {
  color: var(--muted);
  font-size: 14px;
  transition: color 180ms ease;
}

.site-header .nav-link,
.site-header .mega-link {
  color: #676159;
}

.nav-link:hover,
.nav-link.is-active,
.mega-link:hover,
.mobile-link:hover,
.mobile-sub-link:hover,
.footer-link:hover {
  color: var(--text);
}

.site-header .nav-link:hover,
.site-header .nav-link.is-active,
.site-header .mega-link:hover {
  color: #15130f;
}

.header-socials,
.mobile-socials,
.footer-socials {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.header-socials {
  flex: 0 0 auto;
}

.social-link {
  position: relative;
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(21, 19, 15, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.48);
  color: #15130f;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.social-link:hover {
  transform: translateY(-1px);
  border-color: rgba(21, 19, 15, 0.34);
  background: #ffffff;
  color: #082b63;
}

.social-link svg {
  width: 17px;
  height: 17px;
  display: block;
}

.social-link svg :is(path, rect, circle) {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-link svg path {
  fill: currentColor;
  stroke: none;
}

.social-link span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
}

.language-switch button {
  min-width: 36px;
  min-height: 30px;
  padding: 0 9px;
  border: 1px solid rgba(21, 19, 15, 0.16);
  border-radius: 6px;
  background: rgba(21, 19, 15, 0.58);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.language-switch button.active {
  background: #15130f;
}

.nav-dropdown {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: 38px;
  left: -18px;
  width: 280px;
  display: grid;
  gap: 6px;
  padding: 14px;
  background: rgba(247, 244, 239, 0.98);
  border: 1px solid rgba(21, 19, 15, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(24, 20, 14, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-link {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
}

.mega-link:hover {
  background: rgba(21, 19, 15, 0.06);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.nav-cta,
.btn-primary {
  background: var(--text);
  color: #0a0a0a;
}

.nav-cta {
  background: #15130f;
  color: #fffaf2;
}

.btn-secondary {
  border: 1px solid var(--line-strong);
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  margin-left: auto;
  border: 1px solid rgba(21, 19, 15, 0.2);
  border-radius: 50%;
  background: transparent;
}

.mobile-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: #15130f;
}

.mobile-menu {
  position: fixed;
  z-index: 40;
  inset: 72px 0 auto 0;
  display: none;
  max-height: calc(100vh - 72px);
  padding: 22px;
  background: rgba(247, 244, 239, 0.98);
  border-bottom: 1px solid rgba(21, 19, 15, 0.12);
  overflow: auto;
}

.mobile-menu.is-open {
  display: block;
}

.mobile-link,
.mobile-sub-link {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid rgba(21, 19, 15, 0.12);
  color: #15130f;
}

.mobile-socials {
  padding-top: 18px;
}

.mobile-socials .social-link {
  width: 40px;
  height: 40px;
  background: #ffffff;
}

.mobile-sub-link {
  padding-left: 18px;
  font-size: 13px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  padding: 116px clamp(24px, 13vw, 267px) 84px;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  filter: brightness(1.85) saturate(1.08) contrast(1);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.54) 0%, rgba(10, 10, 10, 0.16) 46%, rgba(10, 10, 10, 0) 100%),
    linear-gradient(0deg, rgba(10, 10, 10, 0.36) 0%, rgba(10, 10, 10, 0) 46%, rgba(10, 10, 10, 0.14) 100%);
}

.hero-services::before {
  background-position: 58% center;
  filter: brightness(1.62) saturate(1.07) contrast(0.98);
}

.hero-services {
  align-items: end;
  padding: 116px clamp(24px, 7vw, 112px) clamp(132px, 15vh, 176px);
}

.hero-services h1 {
  max-width: 980px;
  font-size: clamp(48px, 4.2vw, 78px);
}

.hero-clean {
  align-items: end;
  padding: 116px clamp(24px, 7vw, 112px) clamp(72px, 10vh, 108px);
}

.hero-services .hero-backdrop {
  background:
    linear-gradient(90deg, rgba(7, 8, 10, 0.42) 0%, rgba(7, 8, 10, 0.2) 52%, rgba(7, 8, 10, 0.04) 100%),
    linear-gradient(0deg, rgba(7, 8, 10, 0.42) 0%, rgba(7, 8, 10, 0.06) 52%, rgba(7, 8, 10, 0.12) 100%);
}

.hero-clean::before {
  filter: brightness(1.38) saturate(1.04) contrast(1.02);
  background-position: center;
}

.hero-clean .hero-backdrop {
  background:
    linear-gradient(90deg, rgba(7, 8, 10, 0.72) 0%, rgba(7, 8, 10, 0.38) 46%, rgba(7, 8, 10, 0.06) 100%),
    linear-gradient(0deg, rgba(7, 8, 10, 0.5) 0%, rgba(7, 8, 10, 0.12) 52%, rgba(7, 8, 10, 0.08) 100%);
}

.hero-home {
  min-height: auto;
  align-items: start;
  padding-top: 0;
  padding-bottom: clamp(54px, 7vh, 82px);
}

.hero-home::before {
  background-position: center 48%;
  filter: brightness(1.2) saturate(0.96) contrast(1.06);
  transform: scale(1.04);
}

.hero-video-frame {
  position: absolute;
  top: clamp(10px, 1.2vw, 18px);
  left: 50%;
  z-index: -3;
  width: min(68vw, 1360px);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  transform: translateX(-50%);
  background: #030508;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.hero-video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(3, 5, 8, 0.58) 0%, rgba(3, 5, 8, 0) 12%, rgba(3, 5, 8, 0) 88%, rgba(3, 5, 8, 0.48) 100%),
    linear-gradient(180deg, rgba(3, 5, 8, 0) 68%, rgba(3, 5, 8, 0.8) 100%),
    radial-gradient(circle at 56% 50%, rgba(35, 152, 205, 0.08), rgba(3, 5, 8, 0) 48%);
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: min(80vw, 1560px);
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center top;
  transform: none;
  transform-origin: center;
  clip-path: none;
  opacity: 1;
  background: #030508;
  filter: brightness(1.08) saturate(1.06) contrast(1.06);
}

.hero-video-hero::before {
  z-index: -4;
  background-image: none;
  background:
    linear-gradient(180deg, #071421 0%, #030508 62%, #030508 100%);
  filter: none;
  transform: none;
}

.hero-video-hero::after {
  content: "";
  position: absolute;
  inset: auto;
  z-index: 0;
  display: none;
  pointer-events: none;
  background: none;
}

.hero-home .hero-backdrop {
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.86) 0%, rgba(5, 6, 8, 0.58) 48%, rgba(5, 6, 8, 0.2) 100%),
    linear-gradient(0deg, rgba(5, 6, 8, 0.58) 0%, rgba(5, 6, 8, 0.14) 48%, rgba(5, 6, 8, 0.24) 100%);
}

.hero-video-hero .hero-backdrop {
  background:
    linear-gradient(180deg, rgba(35, 108, 145, 0.16) 0%, rgba(10, 28, 42, 0.03) 44%, rgba(5, 6, 8, 0) 72%),
    linear-gradient(90deg, rgba(5, 6, 8, 0.04) 0%, rgba(5, 6, 8, 0.02) 48%, rgba(5, 6, 8, 0) 100%),
    linear-gradient(0deg, rgba(5, 6, 8, 0.68) 0%, rgba(5, 6, 8, 0.22) 34%, rgba(5, 6, 8, 0.02) 72%);
}

.hero-video-hero .hero-inner {
  position: relative;
  z-index: 1;
  padding-top: min(calc(min(68vw, 1360px) * 9 / 16 + 42px), 810px);
}

.hero-home .hero-inner {
  width: min(740px, 100%);
}

.hero-home h1 {
  max-width: 720px;
}

.hero-home .hero-lead {
  max-width: 580px;
}

.hero-inner {
  width: min(900px, 100%);
  text-shadow: 0 2px 26px rgba(0, 0, 0, 0.72);
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  margin-bottom: 36px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: rgba(247, 244, 239, 0.9);
  background: rgba(255, 255, 255, 0.08);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 900px;
  font-size: clamp(44px, 4vw, 68px);
  line-height: 1.13;
  font-weight: 300;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 690px;
  margin-top: 32px;
  color: rgba(247, 244, 239, 0.88);
  font-size: clamp(18px, 1.4vw, 23px);
  line-height: 1.42;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 34px;
}

.hero-actions .btn {
  min-width: 178px;
  min-height: 62px;
  padding: 0 28px;
  border-radius: 12px;
  font-size: 17px;
}

.hero-actions .btn-primary {
  background: rgba(17, 17, 17, 0.92);
  color: var(--text);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 34px;
  color: var(--muted);
  font-size: 13px;
}

.hero-meta span,
.hero-meta a {
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 4px;
}

.hero-panel {
  position: absolute;
  right: clamp(24px, 6vw, 90px);
  bottom: 46px;
  width: min(340px, calc(100vw - 40px));
  padding: 20px;
  background: rgba(247, 244, 239, 0.86);
  border: 1px solid rgba(21, 19, 15, 0.14);
  border-radius: var(--radius);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 60px rgba(10, 10, 10, 0.22);
}

.panel-label {
  display: block;
  color: #82776c;
  font-size: 12px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.panel-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid rgba(21, 19, 15, 0.14);
  color: #5d554d;
}

.panel-row strong {
  color: #15130f;
  font-size: 13px;
}

.section {
  --section-bg: var(--bg);
  padding: clamp(72px, 10vw, 132px) clamp(20px, 5vw, 64px);
  border-top: 1px solid var(--line);
  background: var(--section-bg);
}

.section:nth-of-type(even) {
  --section-bg: var(--bg-2);
}

.section-light {
  --text: #15130f;
  --muted: #55504a;
  --soft: #80786e;
  --line: rgba(21, 19, 15, 0.14);
  --line-strong: rgba(21, 19, 15, 0.24);
  --section-bg: #f3f0ea;
  background: #f3f0ea;
  color: var(--text);
}

.section-light:nth-of-type(even) {
  background: #f3f0ea;
}

.section-light .eyebrow {
  color: #b35f1d;
}

  .section-head,
  .card-grid,
  .problem-grid,
  .split-copy,
  .contact-options,
  .visual-grid,
  .faq-list,
  .directory-grid,
.article-flow,
.cta-panel,
.link-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.section-head {
  display: block;
  margin-bottom: 42px;
}

.section-head-copy {
  width: min(700px, 100%);
  margin-left: auto;
}

.section-head h2,
.cta-panel h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.06;
  font-weight: 300;
  letter-spacing: 0;
}

.section-intro {
  max-width: 640px;
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(16px, 1.12vw, 18px);
  line-height: 1.56;
}

.growth-system {
  width: min(var(--max), 100%);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.8fr);
  gap: 52px;
  align-items: start;
  margin: 0 auto;
}

.growth-system p {
  color: rgba(247, 244, 239, 0.86);
  font-size: clamp(17px, 1.22vw, 19px);
  line-height: 1.58;
}

.section-light .growth-system p {
  color: #23201c;
}

.growth-system ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.growth-system-compact {
  display: block;
}

.growth-system-compact ul {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.growth-system li {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  color: rgba(247, 244, 239, 0.9);
  font-size: 16px;
  line-height: 1.48;
}

.section-light .growth-system li,
.section-light .check-list li,
.section-light .faq-item,
.section-light .area-link,
.section-light .directory-link {
  background: rgba(255, 255, 255, 0.62);
  color: #211f1b;
  box-shadow: 0 16px 36px rgba(24, 20, 14, 0.05);
}

.directory-light {
  --text: #15130f;
  --muted: rgba(21, 19, 15, 0.72);
  --soft: rgba(21, 19, 15, 0.55);
  background: #f7f4ef;
  border-top-color: rgba(21, 19, 15, 0.1);
  color: var(--text);
}

.directory-light .section-head h2 {
  color: #15130f;
}

.directory-light .directory-link {
  border-color: rgba(21, 19, 15, 0.12);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 42px rgba(24, 20, 14, 0.06);
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.visual-tile {
  position: relative;
  min-height: 310px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-3);
}

.visual-tile img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  display: block;
  object-fit: cover;
  filter: brightness(1.42) saturate(1.03) contrast(1.02);
}

.visual-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0) 0%, rgba(10, 10, 10, 0.02) 44%, rgba(10, 10, 10, 0.22) 100%),
    linear-gradient(90deg, rgba(10, 10, 10, 0.04), rgba(10, 10, 10, 0));
}

.visual-tile figcaption {
  position: absolute;
  z-index: 1;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: grid;
  gap: 8px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: rgba(5, 5, 5, 0.46);
  backdrop-filter: blur(10px);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.78);
}

.visual-tile strong {
  color: var(--text);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
}

.visual-tile span {
  color: rgba(247, 244, 239, 0.86);
  font-size: 14px;
  line-height: 1.45;
}

.section-light .visual-tile strong {
  color: #fffaf2;
}

.section-light .visual-tile span {
  color: rgba(255, 250, 242, 0.86);
}

.service-story-band {
  padding-top: clamp(64px, 8vw, 108px);
  padding-bottom: clamp(64px, 8vw, 108px);
}

.service-story-band.is-dark {
  background: var(--bg);
  color: var(--text);
}

.service-story-band.is-light {
  background: #f7f4ef;
  color: #15130f;
}

.service-story {
  width: min(var(--max), 100%);
  display: grid;
  gap: clamp(64px, 9vw, 118px);
  margin: 0 auto;
}

.service-story-block {
  display: grid;
  grid-template-columns: minmax(300px, 0.96fr) minmax(0, 0.84fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}

.service-story-block.is-reverse {
  grid-template-columns: minmax(0, 0.84fr) minmax(300px, 0.96fr);
}

.service-story-block.is-reverse .service-story-media {
  order: 2;
}

.service-story-block.is-reverse .service-story-copy {
  order: 1;
  margin-top: clamp(24px, 5vw, 68px);
}

.service-story-media {
  position: relative;
  min-height: 366px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-3);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

.service-story-band.is-light .service-story-media {
  border-color: rgba(21, 19, 15, 0.14);
  box-shadow: 0 28px 70px rgba(21, 19, 15, 0.14);
}

.service-story-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0) 46%, rgba(10, 10, 10, 0.16) 100%),
    linear-gradient(90deg, rgba(10, 10, 10, 0.08), rgba(10, 10, 10, 0));
  pointer-events: none;
}

.service-story-media img {
  width: 100%;
  height: 100%;
  min-height: 366px;
  display: block;
  object-fit: cover;
  filter: brightness(1.28) saturate(1.03) contrast(1.02);
}

.service-story-copy {
  max-width: 460px;
}

.service-story-copy h3 {
  margin: 0 0 18px;
  color: var(--text);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 340;
  line-height: 1.08;
  letter-spacing: 0;
}

.service-story-copy p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(16px, 1.18vw, 18px);
  line-height: 1.62;
}

.service-story-copy ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.service-story-copy li {
  position: relative;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 1.48;
}

.service-story-copy li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
}

.text-link {
  display: inline-flex;
  margin-top: 28px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 650;
  border-bottom: 1px solid rgba(216, 119, 34, 0.72);
  padding-bottom: 4px;
}

.service-story-band.is-light .service-story-copy h3 {
  color: #15130f;
}

.service-story-band.is-light .service-story-copy p:not(.eyebrow) {
  color: rgba(21, 19, 15, 0.76);
}

.service-story-band.is-light .service-story-copy li {
  color: rgba(21, 19, 15, 0.74);
}

.service-story-band.is-light .text-link {
  color: #15130f;
}

.text-link:hover {
  color: var(--amber);
}

.service-photo-cta {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: center;
  margin: 0;
  padding: clamp(72px, 10vw, 136px) clamp(20px, 5vw, 64px);
  background: #0a0a0a;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.service-photo-cta::before,
.service-photo-cta::after {
  content: "";
  position: absolute;
  inset: 0;
}

.service-photo-cta::before {
  background: var(--cta-image) center / cover no-repeat;
  filter: brightness(1.42) saturate(1.06) contrast(0.98);
}

.service-photo-cta::after {
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.5) 0%, rgba(10, 10, 10, 0.18) 58%, rgba(10, 10, 10, 0.04) 100%),
    linear-gradient(0deg, rgba(10, 10, 10, 0.16) 0%, rgba(10, 10, 10, 0) 58%, rgba(10, 10, 10, 0.12) 100%);
}

.service-photo-cta-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.service-photo-cta-inner > * {
  max-width: 620px;
}

.service-photo-cta h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(36px, 5vw, 70px);
  font-weight: 300;
  line-height: 1.02;
}

.service-photo-cta p:not(.eyebrow) {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.58;
}

.service-photo-cta .btn {
  margin-top: 30px;
}

.service-method-section {
  overflow: hidden;
}

.service-method-flow {
  --method-progress: 0;
  position: relative;
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: clamp(28px, 4.4vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 12% 0%, rgba(33, 158, 150, 0.1), transparent 34%),
    linear-gradient(180deg, #151515 0%, #0e0e0e 100%);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
  color: #f7f4ef;
  overflow: hidden;
}

.service-method-flow::before,
.service-method-flow::after {
  content: "";
  position: absolute;
  top: clamp(28px, 4.4vw, 46px);
  left: clamp(92px, 9vw, 120px);
  width: 2px;
  border-radius: 999px;
  transform: translateX(-50%);
}

.service-method-flow::before {
  bottom: clamp(28px, 4.4vw, 46px);
  background: rgba(255, 255, 255, 0.12);
}

.service-method-flow::after {
  bottom: clamp(28px, 4.4vw, 46px);
  background: linear-gradient(180deg, #29a39d 0%, #d87722 100%);
  box-shadow: 0 0 22px rgba(41, 163, 157, 0.24);
  transform: translateX(-50%) scaleY(var(--method-progress));
  transform-origin: top;
  transition: transform 620ms ease;
}

.service-method-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-method-step {
  position: relative;
  display: grid;
  grid-template-columns: 42px 14px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  transition: transform 300ms ease;
}

.service-method-step.is-active {
  transform: translateX(4px);
}

.method-step-number {
  color: rgba(247, 244, 239, 0.54);
  font-size: 13px;
  font-weight: 640;
  text-align: right;
  letter-spacing: 0;
}

.method-step-marker {
  position: relative;
  z-index: 2;
  width: 13px;
  height: 13px;
  border: 0;
  border-radius: 999px;
  background: #229c96;
  box-shadow: 0 0 0 6px rgba(34, 156, 150, 0.09);
}

.method-step-marker::before {
  display: none;
}

.service-method-step.is-complete .method-step-marker::before {
  background: transparent;
}

.service-method-step.is-active .method-step-marker {
  background: #d87722;
  box-shadow: 0 0 0 7px rgba(216, 119, 34, 0.16), 0 0 28px rgba(216, 119, 34, 0.28);
}

.method-step-card {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  color: #f7f4ef;
  box-shadow: none;
  transition: border-color 360ms ease, box-shadow 360ms ease, background 360ms ease;
}

.service-method-step.is-active .method-step-card {
  border-color: rgba(216, 119, 34, 0.6);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.2);
}

.method-step-card h3 {
  margin: 0;
  color: #f7f4ef;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
}

.method-step-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(34, 156, 150, 0.14);
  color: #3fd0c9;
  font-size: 12px;
  font-weight: 720;
  opacity: 0;
  transform: translateX(6px);
  visibility: hidden;
  transition: opacity 260ms ease, transform 260ms ease;
}

.service-method-step.is-active .method-step-status {
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
}

.service-detail-intro,
.service-detail-deliverables {
  width: min(var(--max), 100%);
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
  margin: 0 auto;
}

.service-detail-copy {
  max-width: 520px;
}

.service-detail-copy h2,
.service-detail-deliverable-copy h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 320;
  line-height: 1.08;
  letter-spacing: 0;
}

.service-detail-copy p:not(.eyebrow),
.service-detail-deliverable-copy p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.12vw, 18px);
  line-height: 1.62;
}

.service-detail-question-list {
  display: grid;
  gap: 14px;
}

.service-detail-question {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: #171717;
  color: #f7f4ef;
  box-shadow: 0 22px 52px rgba(24, 20, 14, 0.12);
}

.service-detail-question span {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 50%;
  background: #229c96;
}

.service-detail-question h3 {
  margin: 0;
  color: #f7f4ef;
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 610;
  line-height: 1.32;
}

.service-detail-finding-grid {
  width: min(var(--max), 100%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0 auto;
}

.service-detail-finding {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 26px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.024)),
    #151515;
}

.service-detail-finding small {
  color: var(--amber);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.service-detail-finding h3 {
  margin: auto 0 0;
  color: #ffffff;
  font-size: clamp(20px, 1.7vw, 25px);
  font-weight: 520;
  line-height: 1.16;
}

.service-detail-finding p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.52;
}

.sector-workflow-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(72, 116, 183, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(72, 116, 183, 0.055) 1px, transparent 1px),
    #eef4fb;
  background-size: 56px 56px;
}

.sector-workflow-demo {
  width: min(var(--max), 100%);
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: stretch;
  margin: 0 auto;
  padding: clamp(18px, 2.2vw, 28px);
  border: 1px solid rgba(91, 128, 196, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 86% 18%, rgba(74, 112, 255, 0.16), transparent 30%),
    linear-gradient(180deg, #0d1b31 0%, #07111f 100%);
  box-shadow: 0 34px 90px rgba(15, 38, 74, 0.22);
  color: #f8fbff;
}

.sector-workflow-brief {
  min-height: 460px;
  display: grid;
  align-content: start;
  gap: 28px;
  padding: clamp(22px, 3vw, 34px);
  border-right: 1px solid rgba(130, 164, 255, 0.18);
  background: rgba(2, 11, 24, 0.42);
}

.sector-workflow-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
}

.sector-workflow-brand span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(116, 151, 255, 0.28);
  border-radius: 8px;
  background: #f4f7ff;
  color: #2446b8;
  font-size: 11px;
  font-weight: 820;
}

.sector-workflow-brand strong {
  font-size: 20px;
  font-weight: 760;
}

.sector-workflow-prompt {
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(151, 178, 255, 0.34);
  border-radius: 8px;
  background: #f8fbff;
  color: #1d3d93;
  font-size: clamp(18px, 1.7vw, 26px);
  font-weight: 760;
  line-height: 1.36;
}

.sector-workflow-brief p {
  margin: 0;
  color: rgba(232, 238, 250, 0.6);
  font-size: 17px;
  line-height: 1.62;
}

.sector-workflow-timeline {
  position: relative;
  display: grid;
  gap: 14px;
  align-content: center;
  padding: clamp(24px, 3.5vw, 42px) clamp(16px, 2vw, 28px);
}

.sector-workflow-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(180deg, rgba(117, 149, 255, 0.28), rgba(117, 149, 255, 0.64), rgba(117, 149, 255, 0.24));
  transform: translateX(-50%);
}

.sector-workflow-stage {
  position: relative;
  z-index: 1;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 18px;
  border: 1px solid rgba(108, 139, 255, 0.38);
  border-radius: 999px;
  background: #f7f9ff;
  color: #2446a3;
  font-size: 14px;
  font-weight: 780;
  box-shadow: 0 10px 26px rgba(15, 31, 72, 0.18);
}

.sector-workflow-step {
  position: relative;
  z-index: 1;
  min-height: 70px;
  display: grid;
  grid-template-columns: 42px 46px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 16px 22px;
  border: 1px solid rgba(213, 222, 240, 0.95);
  border-radius: 8px;
  background: rgba(248, 250, 255, 0.96);
  color: #2f3747;
  opacity: 0.24;
  transform: translateY(12px);
  transition: opacity 360ms ease, transform 360ms ease, box-shadow 360ms ease, border-color 360ms ease;
}

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

.sector-workflow-step.is-active {
  border-color: rgba(83, 124, 255, 0.42);
  box-shadow: 0 18px 42px rgba(28, 58, 118, 0.18);
}

.sector-workflow-number {
  color: #6a7487;
  font-size: 14px;
  font-weight: 700;
}

.sector-workflow-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(213, 222, 240, 0.9);
  border-radius: 8px;
  background: #ffffff;
  color: #1d8d69;
  font-size: 11px;
  font-weight: 820;
}

.sector-workflow-step strong {
  color: #303848;
  font-size: clamp(16px, 1.3vw, 19px);
  font-weight: 560;
  line-height: 1.28;
}

.sector-workflow-step em {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 14px;
  border-radius: 999px;
  background: #e9f8ee;
  color: #118038;
  font-size: 13px;
  font-style: normal;
  font-weight: 760;
}

.sector-automation-table-section {
  overflow: hidden;
}

.sector-automation-table-wrap {
  width: min(var(--max), 100%);
  margin: 0 auto;
  overflow-x: auto;
  border: 1px solid rgba(22, 163, 74, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 28px 70px rgba(24, 54, 100, 0.12);
}

.sector-automation-table {
  width: 100%;
  min-width: 880px;
  border-collapse: collapse;
  color: #172033;
}

.sector-automation-table th,
.sector-automation-table td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(22, 163, 74, 0.16);
  text-align: left;
  vertical-align: top;
  font-size: 15px;
  line-height: 1.46;
}

.sector-automation-table thead th {
  background: rgba(22, 163, 74, 0.1);
  color: #0f3e28;
  font-size: 13px;
  font-weight: 780;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sector-automation-table tbody th {
  width: 28%;
  color: #101828;
  font-size: 16px;
  font-weight: 760;
}

.sector-automation-table tbody tr:last-child th,
.sector-automation-table tbody tr:last-child td {
  border-bottom: 0;
}

.sector-automation-table tbody tr:nth-child(even) {
  background: rgba(22, 163, 74, 0.035);
}

.service-case-study {
  width: min(var(--max), 100%);
  display: grid;
  grid-template-columns: minmax(300px, 0.42fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  margin: 0 auto;
}

.service-case-study-copy h2 {
  margin: 0;
  color: #15130f;
  font-size: clamp(30px, 3.2vw, 48px);
  font-weight: 340;
  line-height: 1.08;
  letter-spacing: 0;
}

.service-case-study-copy p:not(.eyebrow) {
  margin: 20px 0 0;
  color: #5f5a52;
  font-size: clamp(16px, 1.12vw, 18px);
  line-height: 1.62;
}

.service-case-study-copy ul {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.service-case-study-copy li {
  position: relative;
  padding-left: 22px;
  color: #24211d;
  font-size: 15px;
  font-weight: 620;
  line-height: 1.38;
}

.service-case-study-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
}

.service-case-study-visual {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(21, 19, 15, 0.18);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 0% 0%, rgba(216, 119, 34, 0.18), transparent 34%),
    radial-gradient(circle at 100% 100%, rgba(34, 156, 150, 0.14), transparent 32%),
    linear-gradient(145deg, #0a0a0a 0%, #151515 52%, #1b1713 100%);
  box-shadow: 0 28px 72px rgba(24, 20, 14, 0.22);
  overflow: hidden;
}

.service-case-study-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.18;
  pointer-events: none;
}

.case-study-visual-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(230px, 0.38fr) minmax(0, 1fr);
  gap: 18px;
  z-index: 1;
}

.case-flow-panel,
.case-dashboard-panel {
  min-height: 440px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.052);
  backdrop-filter: blur(18px);
}

.case-flow-panel {
  padding: 18px;
}

.case-study-panel-label {
  color: var(--amber);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.case-flow-list {
  position: relative;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 22px 0 0;
  list-style: none;
}

.case-flow-list::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 32px;
  bottom: 16px;
  width: 2px;
  background: linear-gradient(180deg, var(--teal), var(--amber));
  opacity: 0.44;
}

.case-flow-list li {
  position: relative;
  min-height: 66px;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: center;
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.28);
}

.case-flow-list li span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #15130f;
  background: #fffaf2;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 0 0 6px rgba(255, 250, 242, 0.08);
}

.case-flow-list li strong {
  display: block;
  color: #fffaf2;
  font-size: 15px;
  line-height: 1.2;
}

.case-flow-list li small {
  display: block;
  margin-top: 5px;
  color: rgba(255, 250, 242, 0.62);
  font-size: 12.5px;
  font-weight: 560;
  line-height: 1.35;
}

.case-dashboard-panel {
  padding: 18px;
}

.case-dashboard-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.case-dashboard-head h3 {
  margin: 8px 0 0;
  color: #fffaf2;
  font-size: clamp(24px, 2.1vw, 34px);
  font-weight: 420;
  line-height: 1.08;
}

.case-dashboard-head > span {
  flex: 0 0 auto;
  padding: 8px 10px;
  border: 1px solid rgba(216, 119, 34, 0.34);
  border-radius: 999px;
  color: #fffaf2;
  background: rgba(216, 119, 34, 0.12);
  font-size: 12px;
  font-weight: 720;
}

.case-dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.case-dashboard-metrics div {
  min-height: 80px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.065);
}

.case-dashboard-metrics strong {
  display: block;
  color: #fffaf2;
  font-size: 27px;
  line-height: 1;
}

.case-dashboard-metrics span {
  display: block;
  margin-top: 9px;
  color: rgba(255, 250, 242, 0.62);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.case-dashboard-table {
  display: grid;
  gap: 8px;
}

.case-dashboard-row {
  display: grid;
  grid-template-columns: minmax(110px, 1.05fr) minmax(100px, 0.9fr) minmax(92px, 0.78fr) minmax(122px, 1fr);
  gap: 8px;
  align-items: center;
  min-height: 54px;
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.24);
}

.case-dashboard-row.is-head {
  min-height: 38px;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.06);
}

.case-dashboard-row span {
  color: rgba(255, 250, 242, 0.84);
  font-size: 13px;
  font-weight: 630;
  line-height: 1.25;
}

.case-dashboard-row.is-head span {
  color: rgba(255, 250, 242, 0.48);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-case-study-board-shell {
  width: min(1280px, 100%);
  display: grid;
  gap: clamp(28px, 4vw, 42px);
  margin: 0 auto;
}

.service-case-study-board-intro {
  max-width: 860px;
}

.service-case-study-board {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 3.4vw, 42px);
  border: 1px solid rgba(22, 133, 127, 0.22);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 15% 0%, rgba(34, 156, 150, 0.16), transparent 34%),
    linear-gradient(180deg, #f4fbfb 0%, #eef5f3 100%);
  color: #102133;
  box-shadow: 0 28px 78px rgba(24, 20, 14, 0.16);
}

.case-board-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(22, 133, 127, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 133, 127, 0.07) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.7;
  pointer-events: none;
}

.case-board-header,
.case-board-title,
.case-board-columns {
  position: relative;
  z-index: 1;
}

.case-board-header {
  display: flex;
  justify-content: space-between;
  gap: clamp(18px, 4vw, 42px);
  align-items: flex-start;
  margin-bottom: clamp(18px, 2.8vw, 30px);
}

.case-board-brand {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  min-width: 0;
}

.case-board-brand strong {
  color: #086d72;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.case-board-brand span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  border: 1px solid rgba(22, 133, 127, 0.24);
  background: rgba(22, 133, 127, 0.07);
  color: #086d72;
  font-size: 13px;
  font-weight: 800;
}

.case-board-scenario {
  max-width: 360px;
  padding: 17px 20px;
  border: 1px solid rgba(216, 119, 34, 0.16);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 36px rgba(24, 20, 14, 0.08);
}

.case-board-scenario small {
  display: block;
  color: #a65a1b;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-board-scenario p {
  margin: 8px 0 0;
  color: #263548;
  font-size: 15px;
  font-weight: 720;
  line-height: 1.35;
}

.case-board-title {
  max-width: 900px;
  margin-bottom: clamp(22px, 3vw, 34px);
}

.case-board-title h2 {
  margin: 0;
  color: #0b1c2e;
  font-size: clamp(40px, 5.7vw, 78px);
  font-weight: 850;
  line-height: 0.96;
  letter-spacing: 0;
}

.case-board-title p {
  margin: 16px 0 0;
  color: #536173;
  font-size: clamp(18px, 1.75vw, 25px);
  font-weight: 720;
  line-height: 1.28;
}

.case-board-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 24px);
}

.case-board-column {
  min-width: 0;
  min-height: 640px;
  padding: clamp(16px, 2vw, 24px);
  border: 1px solid rgba(17, 45, 68, 0.14);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 44px rgba(24, 20, 14, 0.08);
}

.case-board-column-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.case-board-column-head p {
  margin: 0 0 6px;
  color: #086d72;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-board-column-head h3 {
  margin: 0;
  color: #0b1c2e;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 850;
  line-height: 1.05;
}

.case-board-column-head > span {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 2px;
  background: #0b1c2e;
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
}

.case-board-lead {
  margin: 0 0 18px;
  color: #5f6874;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.42;
}

.case-board-column strong,
.case-board-column span,
.case-board-column p,
.case-board-column small {
  overflow-wrap: break-word;
  word-break: normal;
}

.case-board-intake-visual {
  position: relative;
  min-height: 190px;
  margin-bottom: 14px;
  padding: 18px;
  border: 1px solid rgba(22, 133, 127, 0.16);
  background:
    linear-gradient(135deg, rgba(8, 109, 114, 0.18), rgba(216, 119, 34, 0.12)),
    #edf6f5;
}

.case-board-photo {
  position: relative;
  margin: 0 0 14px;
  border: 1px solid rgba(22, 133, 127, 0.16);
  background: #dfecec;
  overflow: hidden;
}

.case-board-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.96) contrast(0.98);
}

.case-board-photo figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  background: rgba(11, 28, 46, 0.9);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.case-board-mail-window {
  width: 78%;
  min-height: 118px;
  padding: 18px;
  background: #0b1c2e;
  box-shadow: 0 20px 34px rgba(11, 28, 46, 0.18);
}

.case-board-mail-window span {
  display: block;
  height: 12px;
  margin-bottom: 14px;
  background: rgba(255, 255, 255, 0.82);
}

.case-board-mail-window span:nth-child(2) {
  width: 76%;
}

.case-board-mail-window span:nth-child(3) {
  width: 56%;
  background: rgba(34, 156, 150, 0.9);
}

.case-board-document {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 48%;
  padding: 15px;
  border: 1px solid rgba(11, 28, 46, 0.14);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 26px rgba(24, 20, 14, 0.13);
}

.case-board-document small,
.case-board-note small,
.case-board-info-grid small,
.case-board-result-grid small,
.case-board-bottom-grid small {
  display: block;
  color: #086d72;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-board-document strong,
.case-board-document span {
  display: block;
}

.case-board-document strong {
  margin-top: 8px;
  color: #0b1c2e;
  font-size: 18px;
  font-weight: 860;
  line-height: 1.05;
}

.case-board-document span {
  margin-top: 8px;
  color: #5f6874;
  font-size: 12px;
  font-weight: 680;
  line-height: 1.25;
}

.case-board-note {
  padding: 16px 18px;
  border-left: 4px solid var(--teal);
  background: #f7fbfb;
}

.case-board-note strong {
  display: block;
  margin-top: 8px;
  color: #0b1c2e;
  font-size: 18px;
  font-weight: 840;
  line-height: 1.2;
}

.case-board-info-grid,
.case-board-result-grid,
.case-board-bottom-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.case-board-info-grid div,
.case-board-result-grid div,
.case-board-bottom-grid div {
  min-height: 90px;
  padding: 14px;
  border: 1px solid rgba(17, 45, 68, 0.11);
  background: rgba(238, 247, 247, 0.72);
}

.case-board-info-grid strong,
.case-board-result-grid strong,
.case-board-bottom-grid strong {
  display: block;
  margin-top: 8px;
  color: #172438;
  font-size: 16px;
  font-weight: 820;
  line-height: 1.18;
}

.case-board-solution-dark {
  padding: 18px;
  background: #0b1c2e;
  color: #ffffff;
}

.case-board-solution-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.case-board-solution-head strong {
  color: #ffffff;
  font-size: 22px;
  font-weight: 850;
}

.case-board-solution-head span {
  padding: 6px 9px;
  border: 1px solid rgba(34, 156, 150, 0.56);
  color: #9ee5e2;
  font-size: 12px;
  font-weight: 850;
}

.case-board-solution-rows {
  display: grid;
  gap: 9px;
}

.case-board-solution-rows div {
  display: grid;
  grid-template-columns: minmax(70px, 0.56fr) minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 46px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.case-board-solution-rows small {
  color: #6fd5d1;
  font-size: 12px;
  font-weight: 900;
}

.case-board-solution-rows strong {
  color: #f7f4ef;
  font-size: 14px;
  font-weight: 760;
  line-height: 1.2;
}

.case-board-prepared {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  padding: 17px 18px;
  border: 1px solid rgba(216, 119, 34, 0.28);
  background: #fff7e9;
}

.case-board-prepared small {
  color: #a65a1b;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-board-prepared strong {
  color: #0b1c2e;
  font-size: 22px;
  font-weight: 870;
  line-height: 1.05;
}

.case-board-prepared span {
  color: #665542;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.32;
}

.case-board-check {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 12px;
  padding: 13px;
  background: #f7fbfb;
}

.case-board-check span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  background: var(--teal);
  color: #ffffff;
  font-weight: 900;
}

.case-board-check p {
  margin: 0;
  color: #263548;
  font-size: 14px;
  font-weight: 760;
  line-height: 1.3;
}

.case-board-result-card {
  padding: 18px;
  border: 1px solid rgba(17, 45, 68, 0.12);
  background: #f8fcfc;
}

.case-board-result-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.case-board-result-head strong,
.case-board-message-preview strong {
  display: block;
  color: #0b1c2e;
  font-size: 24px;
  font-weight: 880;
  line-height: 1.02;
}

.case-board-result-head span {
  display: block;
  margin-top: 6px;
  color: #5f6874;
  font-size: 14px;
  font-weight: 720;
}

.case-board-result-head small {
  align-self: flex-start;
  padding: 8px 10px;
  border: 1px solid rgba(216, 119, 34, 0.28);
  background: #fff2dc;
  color: #8f4b15;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.case-board-result-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: stretch;
}

.case-board-message-preview {
  min-height: 132px;
  padding: 16px;
  border: 7px solid #0b1c2e;
  background: #eaf7f7;
}

.case-board-message-preview span {
  display: block;
  width: 18px;
  height: 18px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--teal);
}

.case-board-message-preview small {
  display: block;
  margin-top: 10px;
  color: #5f6874;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.25;
}

.case-board-result-grid {
  margin-top: 0;
}

.case-board-result-grid div {
  min-height: 75px;
  background: #ffffff;
}

.case-board-result-grid strong {
  font-size: 14px;
}

.case-board-action {
  margin-top: 14px;
  padding: 13px 14px;
  background: #e8f6f5;
  color: #086d72;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.case-board-validation {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 14px;
  padding: 22px;
  background: #075b55;
  color: #ffffff;
}

.case-board-validation > span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 4px solid rgba(143, 237, 201, 0.9);
  color: #7be6b6;
  font-size: 32px;
  font-weight: 900;
}

.case-board-validation strong {
  display: block;
  color: #ffffff;
  font-size: 26px;
  font-weight: 880;
  line-height: 1.04;
}

.case-board-validation p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  font-weight: 690;
  line-height: 1.32;
}

.case-board-bottom-grid div {
  min-height: 82px;
  background: #ffffff;
}

.sector-orbit-section {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 92px;
  padding-top: clamp(70px, 6vw, 98px);
  padding-bottom: clamp(84px, 7vw, 116px);
  background:
    radial-gradient(circle at 50% 46%, rgba(73, 101, 255, 0.12), rgba(73, 101, 255, 0) 36%),
    linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
  color: #12151b;
}

.sector-orbit-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(73, 101, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(73, 101, 255, 0.055) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(ellipse 72% 62% at 50% 47%, #000, transparent 76%);
}

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

.sector-orbit-head {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
  color: #12151b;
}

.sector-orbit-head .eyebrow {
  color: #176d8d;
}

.sector-orbit-head h2 {
  color: #12151b;
}

.sector-orbit-head .section-intro {
  color: #566172;
}

.sector-orbit-head h2 {
  font-size: clamp(30px, 3.2vw, 44px);
}

.sector-orbit-shell {
  position: relative;
  width: min(var(--max), 100%);
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 0;
  margin: 0 auto;
}

.sector-orbit-scene {
  position: relative;
  width: min(980px, 100%);
  min-height: 620px;
  margin: 0 auto;
}

.sector-orbit-rings {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}

.sector-orbit-rings circle {
  fill: none;
  stroke: rgba(73, 101, 255, 0.19);
  stroke-width: 1.2;
  stroke-dasharray: 8 14;
}

.sector-orbit-rings circle:nth-child(2) {
  stroke: rgba(22, 128, 58, 0.12);
  stroke-dasharray: 5 18;
}

.sector-orbit-rings .orbit-pulse {
  stroke: rgba(73, 101, 255, 0.1);
  stroke-width: 4;
  stroke-dasharray: none;
}

.sector-orbit-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 190px;
  min-height: 170px;
  display: grid;
  justify-items: center;
  align-content: center;
  transform: translate(-50%, -50%);
  perspective: 720px;
  z-index: 6;
}

.sector-orbit-cube {
  position: relative;
  width: 136px;
  height: 136px;
  transform-style: preserve-3d;
  transform: rotateX(14deg) rotateY(-14deg);
}

.sector-orbit-cube-face {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(73, 101, 255, 0.3);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(235, 241, 255, 0.74)),
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0) 34%);
  box-shadow: inset 0 0 28px rgba(73, 101, 255, 0.1), 0 16px 38px rgba(34, 51, 110, 0.12);
  backface-visibility: hidden;
  overflow: hidden;
}

.sector-orbit-cube .cube-face-front {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(241, 246, 255, 0.9)),
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0) 34%);
  transform: translateZ(68px);
}

.sector-orbit-cube .cube-face-back {
  transform: rotateY(180deg) translateZ(68px);
}

.sector-orbit-cube .cube-face-right {
  transform: rotateY(90deg) translateZ(68px);
}

.sector-orbit-cube .cube-face-left {
  transform: rotateY(-90deg) translateZ(68px);
}

.sector-orbit-cube .cube-face-top {
  transform: rotateX(90deg) translateZ(68px);
}

.sector-orbit-cube .cube-face-bottom {
  transform: rotateX(-90deg) translateZ(68px);
}

.sector-orbit-cube-brand {
  display: grid;
  place-items: center;
  width: 116px;
  height: 38px;
  transform: translate(2px, -1px);
  pointer-events: none;
}

.sector-orbit-cube-brand img {
  display: block;
  width: 112px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 5px 10px rgba(15, 32, 75, 0.1));
}

.sector-orbit-cube-glow,
.sector-orbit-cube-shadow {
  position: absolute;
  left: 50%;
  pointer-events: none;
}

.sector-orbit-cube-glow {
  top: 45%;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(73, 101, 255, 0.28), rgba(52, 211, 153, 0.1) 38%, rgba(255, 255, 255, 0) 70%);
  transform: translate(-50%, -50%);
  z-index: -1;
}

.sector-orbit-cube-shadow {
  top: calc(50% + 78px);
  width: 160px;
  height: 24px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(44, 57, 90, 0.24), rgba(44, 57, 90, 0) 72%);
  transform: translateX(-50%);
}

.sector-orbit-card-list {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  z-index: 4;
  transform-origin: 0 0;
  animation: sector-orbit-spin 42s linear infinite;
  will-change: transform;
}

@keyframes sector-orbit-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.sector-orbit-node {
  position: absolute;
  left: 0;
  top: 0;
  width: 172px;
  min-height: 110px;
  color: inherit;
  outline: none;
}

.sector-orbit-node-0 {
  left: -86px;
  top: 183px;
  --service-accent: #2563eb;
  --service-bg: rgba(37, 99, 235, 0.085);
  --service-border: rgba(37, 99, 235, 0.38);
  --service-ring: rgba(37, 99, 235, 0.12);
}

.sector-orbit-node-1 {
  left: -292px;
  top: 64px;
  --service-accent: #16a34a;
  --service-bg: rgba(22, 163, 74, 0.085);
  --service-border: rgba(22, 163, 74, 0.34);
  --service-ring: rgba(22, 163, 74, 0.12);
}

.sector-orbit-node-2 {
  left: -292px;
  top: -174px;
  --service-accent: #d946ef;
  --service-bg: rgba(217, 70, 239, 0.085);
  --service-border: rgba(217, 70, 239, 0.34);
  --service-ring: rgba(217, 70, 239, 0.12);
}

.sector-orbit-node-3 {
  left: -86px;
  top: -293px;
  --service-accent: #f59e0b;
  --service-bg: rgba(245, 158, 11, 0.105);
  --service-border: rgba(245, 158, 11, 0.38);
  --service-ring: rgba(245, 158, 11, 0.13);
}

.sector-orbit-node-4 {
  left: 120px;
  top: -174px;
  --service-accent: #7c3aed;
  --service-bg: rgba(124, 58, 237, 0.085);
  --service-border: rgba(124, 58, 237, 0.34);
  --service-ring: rgba(124, 58, 237, 0.12);
}

.sector-orbit-node-5 {
  left: 120px;
  top: 64px;
  --service-accent: #0ea5e9;
  --service-bg: rgba(14, 165, 233, 0.09);
  --service-border: rgba(14, 165, 233, 0.36);
  --service-ring: rgba(14, 165, 233, 0.12);
}

.sector-orbit-card {
  position: relative;
  width: 100%;
  min-height: 110px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 8px;
  padding: 17px 14px;
  overflow: hidden;
  border: 1px solid var(--service-border);
  border-radius: 16px;
  background: linear-gradient(180deg, var(--service-bg) 0%, rgba(255, 255, 255, 0.95) 58%, #fff 100%);
  box-shadow: 0 22px 56px rgba(23, 35, 74, 0.1), 0 0 0 4px var(--service-ring);
  color: #12151b;
  text-align: center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  backface-visibility: hidden;
  animation: sector-orbit-counter-spin 42s linear infinite;
  will-change: transform;
}

@keyframes sector-orbit-counter-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

.sector-orbit-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--service-accent);
}

.sector-orbit-node:hover .sector-orbit-card,
.sector-orbit-node:focus-visible .sector-orbit-card {
  border-color: var(--service-accent);
  background: #fff;
  box-shadow: 0 24px 64px rgba(23, 35, 74, 0.14), 0 0 0 5px var(--service-ring);
  outline: 0;
}

.sector-orbit-shell:hover .sector-orbit-card-list,
.sector-orbit-shell:hover .sector-orbit-card,
.sector-orbit-shell:has(.sector-orbit-node:hover) .sector-orbit-card-list,
.sector-orbit-shell:has(.sector-orbit-node:hover) .sector-orbit-card,
.sector-orbit-shell:focus-within .sector-orbit-card-list,
.sector-orbit-shell:focus-within .sector-orbit-card {
  animation-play-state: paused;
}

.sector-orbit-index {
  display: none;
}

.sector-orbit-card strong {
  color: #101828;
  font-size: 15px;
  font-weight: 780;
  line-height: 1.15;
  letter-spacing: 0;
}

.sector-orbit-card small {
  color: #667084;
  font-size: 12px;
  font-weight: 620;
  line-height: 1.34;
}

.sector-orbit-reference {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.sector-orbit-reference a {
  color: inherit;
}

.automation-explorer {
  width: min(var(--max), 100%);
  display: grid;
  grid-template-columns: minmax(230px, 0.36fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
  margin: 0 auto;
}

.automation-explorer-section {
  scroll-margin-top: 96px;
}

.automation-menu {
  position: sticky;
  top: 94px;
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    #151515;
}

.automation-menu-item {
  width: 100%;
  min-height: 58px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.66);
  text-align: left;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.automation-menu-item small {
  color: var(--amber);
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.12em;
}

.automation-menu-item span {
  min-width: 0;
  font-size: 14px;
  font-weight: 640;
  line-height: 1.22;
}

.automation-menu-item:hover,
.automation-menu-item.is-active {
  border-color: rgba(216, 119, 34, 0.38);
  background: rgba(255, 255, 255, 0.065);
  color: #fffaf2;
}

.automation-menu-item.is-active {
  box-shadow: inset 3px 0 0 var(--amber);
}

.automation-panels {
  min-width: 0;
}

.automation-panel {
  min-height: 620px;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 86% 8%, rgba(34, 156, 150, 0.11), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    #151515;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

.automation-panel[hidden] {
  display: none;
}

.automation-panel-head {
  max-width: 760px;
  margin-bottom: clamp(22px, 3vw, 34px);
}

.automation-panel-head small {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.14em;
}

.automation-panel-head h3 {
  margin: 0;
  color: #fffaf2;
  font-size: clamp(26px, 2.2vw, 34px);
  font-weight: 520;
  line-height: 1.1;
  letter-spacing: 0;
}

.automation-panel-head p {
  max-width: 700px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.6;
}

.automation-accordion-list {
  display: grid;
  gap: 12px;
}

.automation-accordion-item {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  overflow: hidden;
}

.automation-accordion-item.is-open {
  border-color: rgba(216, 119, 34, 0.34);
  background: rgba(255, 255, 255, 0.055);
}

.automation-accordion-toggle {
  width: 100%;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  color: #fffaf2;
  text-align: left;
  cursor: pointer;
}

.automation-accordion-toggle span:first-child {
  font-size: 17px;
  font-weight: 650;
  line-height: 1.25;
}

.automation-accordion-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  color: var(--amber);
  font-size: 20px;
  font-weight: 520;
}

.automation-accordion-panel {
  padding: 0 20px 22px;
}

.automation-accordion-panel p {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.62;
}

.automation-accordion-panel ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.automation-accordion-panel li {
  position: relative;
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 10px 12px 10px 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 560;
  line-height: 1.32;
}

.automation-accordion-panel li::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #229c96;
  transform: translateY(-50%);
}

.automation-detail-link {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.automation-detail-link span {
  flex: 0 0 auto;
  color: var(--amber);
  font-size: 12px;
  font-weight: 700;
}

.automation-detail-link:hover,
.automation-detail-link:focus-visible {
  color: #fffaf2;
}

.service-detail-flow {
  background:
    radial-gradient(circle at 12% 0%, rgba(216, 119, 34, 0.11), transparent 34%),
    radial-gradient(circle at 86% 28%, rgba(34, 156, 150, 0.1), transparent 30%),
    linear-gradient(180deg, #151515 0%, #0d0d0d 100%);
}

.service-detail-media {
  position: relative;
  min-height: 430px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
  background: #151515;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
}

.service-detail-media img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  display: block;
  object-fit: cover;
  filter: brightness(1.24) saturate(1.04) contrast(1.02);
}

.service-detail-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0) 48%, rgba(10, 10, 10, 0.18) 100%),
    linear-gradient(90deg, rgba(10, 10, 10, 0.04), rgba(10, 10, 10, 0));
}

.service-detail-deliverables {
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 0.88fr);
  align-items: center;
}

.service-detail-deliverable-copy {
  max-width: 520px;
}

.service-detail-deliverable-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.service-detail-deliverable-list li {
  position: relative;
  min-height: 74px;
  display: flex;
  align-items: center;
  padding: 16px 16px 16px 40px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  font-weight: 560;
  line-height: 1.38;
}

.service-detail-deliverable-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  transform: translateY(-50%);
}

.deliverable-accordion-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.deliverable-accordion-item {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.026)),
    #151515;
  overflow: hidden;
}

.deliverable-accordion-item.is-open {
  border-color: rgba(216, 119, 34, 0.38);
  background:
    linear-gradient(180deg, rgba(216, 119, 34, 0.105), rgba(255, 255, 255, 0.03)),
    #17130f;
}

.deliverable-accordion-toggle {
  width: 100%;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 17px 18px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  text-align: left;
  cursor: pointer;
}

.deliverable-accordion-toggle span:first-child {
  font-size: 16px;
  font-weight: 650;
  line-height: 1.28;
}

.deliverable-accordion-icon {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  color: var(--amber);
  font-size: 19px;
  font-weight: 560;
}

.deliverable-accordion-panel {
  padding: 0 18px 18px;
}

.deliverable-accordion-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14.5px;
  line-height: 1.58;
}

.deliverable-accordion-panel ul {
  display: grid;
  gap: 8px;
  margin: 15px 0 0;
  padding: 0;
  list-style: none;
}

.deliverable-accordion-panel li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13.5px;
  font-weight: 570;
  line-height: 1.36;
}

.deliverable-accordion-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.56em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
}

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

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.business-area-carousel {
  position: relative;
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 4px 0 16px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

.business-area-carousel::before,
.business-area-carousel::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: clamp(72px, 12vw, 160px);
  pointer-events: none;
}

.business-area-carousel::before {
  left: 0;
  background: linear-gradient(90deg, var(--section-bg) 0%, rgba(10, 10, 10, 0) 100%);
}

.business-area-carousel::after {
  right: 0;
  background: linear-gradient(270deg, var(--section-bg) 0%, rgba(10, 10, 10, 0) 100%);
}

.business-area-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: businessAreaScroll 58s linear infinite;
}

.business-area-carousel.is-paused .business-area-track {
  animation-play-state: paused;
}

.business-area-set {
  display: flex;
  flex: 0 0 auto;
  gap: 14px;
  padding-right: 14px;
}

.business-area-carousel .problem-card {
  width: min(420px, calc(100vw - 56px));
  min-height: 250px;
  flex: 0 0 min(420px, calc(100vw - 56px));
}

.business-area-carousel .problem-card.is-open {
  width: min(520px, calc(100vw - 56px));
  flex-basis: min(520px, calc(100vw - 56px));
}

@keyframes businessAreaScroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.feature-card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    var(--bg-3);
}

.section-light .feature-card,
.section-light .problem-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.5)),
    #ede8df;
  box-shadow: 0 18px 42px rgba(24, 20, 14, 0.06);
}

.section-light .problem-card.is-open {
  border-color: rgba(179, 95, 29, 0.42);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 238, 228, 0.76)),
    #ede8df;
}

.problem-card {
  min-height: 250px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    #171717;
  color: #ffffff;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.problem-card.is-open {
  border-color: rgba(216, 119, 34, 0.64);
  background:
    linear-gradient(180deg, rgba(216, 119, 34, 0.18), rgba(255, 255, 255, 0.035)),
    #18110d;
}

.section-light .problem-card {
  border-color: rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    #171717;
  color: #ffffff;
  box-shadow: 0 24px 58px rgba(24, 20, 14, 0.2);
}

.section-light .problem-card.is-open {
  border-color: rgba(216, 119, 34, 0.64);
  background:
    linear-gradient(180deg, rgba(216, 119, 34, 0.18), rgba(255, 255, 255, 0.035)),
    #18110d;
}

.problem-toggle {
  width: 100%;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 24px;
  border: 0;
  color: #ffffff;
  background: transparent;
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.problem-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.problem-title {
  color: #ffffff;
  font-size: clamp(19px, 1.28vw, 21px);
  line-height: 1.18;
  font-weight: 540;
}

.problem-icon {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  color: var(--amber);
  background: rgba(255, 255, 255, 0.045);
  font-size: 18px;
  line-height: 1;
}

.problem-summary {
  max-width: 520px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.58;
  font-weight: 420;
}

.problem-details {
  display: grid;
  gap: 20px;
  padding: 0 24px 24px;
}

.problem-details[hidden] {
  display: none;
}

.problem-details div {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.problem-details strong {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.problem-details p,
.problem-details li {
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.6;
}

.problem-details ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.feature-card h3,
.article-block h3 {
  font-size: clamp(19px, 1.28vw, 21px);
  line-height: 1.18;
  font-weight: 500;
  margin-bottom: 14px;
}

.feature-card p,
.article-block p,
.faq-answer p,
.cta-panel p,
.footer-small {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.section-light .problem-details strong {
  color: rgba(255, 255, 255, 0.92);
}

.card-kicker {
  display: block;
  margin-bottom: 28px;
  color: var(--soft);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.split-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 1.08fr);
  gap: 52px;
}

.split-copy p {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(16px, 1.12vw, 18px);
  font-weight: 450;
  line-height: 1.62;
}

.section-light .split-copy p {
  color: #2b2824;
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
  scroll-margin-top: 96px;
}

.contact-option {
  min-height: 154px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    #171717;
  color: #ffffff;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.18);
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.contact-option:hover {
  border-color: rgba(216, 119, 34, 0.64);
  transform: translateY(-2px);
  background:
    linear-gradient(180deg, rgba(216, 119, 34, 0.16), rgba(255, 255, 255, 0.035)),
    #18110d;
}

.contact-option small {
  color: var(--amber);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-option strong {
  color: #ffffff;
  font-size: clamp(18px, 1.28vw, 21px);
  font-weight: 560;
  line-height: 1.2;
}

.contact-option span {
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  line-height: 1.5;
}

.contact-section .reveal {
  opacity: 1;
  transform: none;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 860px);
  justify-content: center;
  align-items: start;
  margin-bottom: 22px;
  scroll-margin-top: 96px;
}

.contact-form {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.04)),
    #181818;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 2.5vw, 34px);
}

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

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label span {
  color: var(--amber);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font: inherit;
  font-size: 15px;
  line-height: 1.45;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.contact-form textarea {
  min-height: 148px;
  resize: vertical;
}

.contact-form select option {
  color: #15130f;
  background: #f7f4ef;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(216, 119, 34, 0.72);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 0 0 3px rgba(216, 119, 34, 0.14);
}

.contact-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-form-actions .btn {
  min-width: 190px;
  justify-content: center;
}

.contact-form-note {
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.5;
}

.contact-section.section-light,
.contact-section.section-light:nth-of-type(even) {
  --section-bg: #f7f4ef;
  background: #f7f4ef;
  color: #15130f;
}

.contact-section.section-light .contact-form {
  border-color: rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    #171717;
  box-shadow: 0 24px 64px rgba(24, 20, 14, 0.18);
}

.contact-section.section-light .contact-form input,
.contact-section.section-light .contact-form select,
.contact-section.section-light .contact-form textarea {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.contact-section.section-light .contact-form input::placeholder,
.contact-section.section-light .contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.contact-section.section-light .contact-form input:focus,
.contact-section.section-light .contact-form select:focus,
.contact-section.section-light .contact-form textarea:focus {
  border-color: rgba(216, 119, 34, 0.72);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 0 0 3px rgba(216, 119, 34, 0.14);
}

.contact-section.section-light .contact-form-actions .btn-primary {
  background: #f7f4ef;
  color: #0a0a0a;
}

.contact-section.section-light .contact-form-actions .btn-secondary {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.contact-section.section-light .contact-form-note {
  color: rgba(255, 255, 255, 0.66);
}

.contact-section.section-light .split-copy p {
  color: #55504a;
}

.contact-section.section-light .check-list li {
  border-color: rgba(21, 19, 15, 0.12);
  background: #ffffff;
  color: #15130f;
  box-shadow: 0 20px 46px rgba(24, 20, 14, 0.08);
}

#message {
  scroll-margin-top: 96px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 16px 16px 16px 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.46;
}

.section-light .check-list li {
  border-color: rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    #171717;
  color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 44px rgba(24, 20, 14, 0.16);
}

.section-about-values,
.section-about-values:nth-of-type(even) {
  --section-bg: #f7f4ef;
  background: #f7f4ef;
  color: #15130f;
}

.section-about-values .split-copy p {
  color: #2b2824;
}

.section-about-values .check-list li {
  border-color: rgba(21, 19, 15, 0.12);
  background: #ffffff;
  color: #15130f;
  box-shadow: 0 20px 46px rgba(24, 20, 14, 0.08);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 22px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    #171717;
  color: #ffffff;
  overflow: hidden;
}

.section-light .faq-item {
  border-color: rgba(21, 19, 15, 0.12);
  background: #ffffff;
  color: #15130f;
  box-shadow: 0 20px 46px rgba(24, 20, 14, 0.08);
}

.faq-question {
  width: 100%;
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border: 0;
  color: #ffffff;
  background: transparent;
  text-align: left;
  font: inherit;
}

.section-light .faq-question {
  color: #15130f;
}

.faq-icon {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: var(--amber);
  flex: 0 0 auto;
}

.section-light .faq-icon {
  border-color: rgba(21, 19, 15, 0.18);
  background: #f8f6f1;
  color: var(--amber);
}

.faq-answer {
  padding: 0 20px 20px;
}

.faq-answer p,
.section-light .faq-answer p {
  color: rgba(255, 255, 255, 0.8);
}

.section-light .faq-answer p {
  color: #55504a;
}

.article-flow {
  display: grid;
  gap: 18px;
}

.article-block {
  max-width: 860px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.article-block p + p {
  margin-top: 12px;
}

.legal-notice-layout {
  width: min(var(--max), 100%);
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  margin: 0 auto;
}

.legal-notice-summary {
  position: sticky;
  top: 104px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(21, 19, 15, 0.12);
  border-radius: var(--radius);
  background: #fffaf2;
  box-shadow: 0 24px 60px rgba(21, 19, 15, 0.08);
}

.legal-notice-summary h2 {
  margin: 0;
  color: #15130f;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 390;
  line-height: 1.08;
  letter-spacing: 0;
}

.legal-notice-summary p {
  margin: 18px 0 0;
  color: #5f5951;
  font-size: 15px;
  line-height: 1.62;
}

.legal-notice-summary dl,
.legal-notice-rows {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
}

.legal-notice-summary dl div,
.legal-notice-rows div {
  display: grid;
  grid-template-columns: minmax(140px, 0.38fr) minmax(0, 1fr);
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid rgba(21, 19, 15, 0.1);
}

.legal-notice-summary dt,
.legal-notice-rows dt {
  color: #7a7167;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-notice-summary dd,
.legal-notice-rows dd {
  margin: 0;
  color: #1b1814;
  font-size: 14px;
  font-weight: 560;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.legal-notice-summary a {
  color: #15130f;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-notice-content {
  display: grid;
  gap: 14px;
}

.legal-notice-card {
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(21, 19, 15, 0.1);
  border-radius: var(--radius);
  background: #ffffff;
}

.legal-notice-card h3 {
  margin: 0;
  color: #15130f;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 520;
  line-height: 1.16;
}

.legal-notice-card p {
  margin: 16px 0 0;
  color: #5f5951;
  font-size: 15px;
  line-height: 1.62;
}

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

.area-link,
.directory-link {
  min-height: 78px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
}

.directory-link span,
.area-link {
  color: var(--text);
}

.directory-link small {
  color: var(--soft);
  overflow-wrap: anywhere;
}

.section-cta {
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.84);
  --soft: rgba(255, 255, 255, 0.68);
  background: #0d0d0d;
}

.section-cta-light {
  --text: #111111;
  --muted: rgba(17, 17, 17, 0.72);
  --soft: rgba(17, 17, 17, 0.56);
  --line-strong: rgba(17, 17, 17, 0.14);
  background: #f7f4ef;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(216, 119, 34, 0.18), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    var(--bg-3);
}

.cta-panel p {
  max-width: 660px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  font-weight: 450;
  line-height: 1.62;
}

.section-cta-light .cta-panel {
  border-color: rgba(17, 17, 17, 0.12);
  background:
    linear-gradient(135deg, rgba(216, 119, 34, 0.1), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 243, 238, 0.98));
  box-shadow: 0 24px 70px rgba(22, 18, 14, 0.08);
}

.section-cta-light .cta-panel h2 {
  color: #111111;
}

.section-cta-light .cta-panel p {
  color: rgba(17, 17, 17, 0.72);
}

.section-cta-light .cta-panel .btn-primary {
  background: #0d0d0d;
  color: #ffffff;
}

.site-footer {
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.78);
  --soft: rgba(255, 255, 255, 0.68);
  padding: 72px clamp(20px, 5vw, 64px) 36px;
  border-top: 1px solid var(--line);
  background: #080808;
}

.footer-grid,
.footer-bottom {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.footer-grid h3 {
  margin-bottom: 16px;
  color: var(--text);
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-link {
  display: block;
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 520;
}

.contact-action span {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 520;
  overflow-wrap: anywhere;
}

.footer-whatsapp {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 2px 0 12px;
  padding: 10px 12px;
  border: 1px solid rgba(37, 211, 102, 0.34);
  border-radius: 999px;
  background: rgba(37, 211, 102, 0.09);
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 650;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.footer-whatsapp:hover {
  border-color: rgba(37, 211, 102, 0.74);
  background: rgba(37, 211, 102, 0.14);
  color: #ffffff;
}

.whatsapp-mark {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
}

.whatsapp-mark svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: #07130b;
}

.footer-social-block {
  margin: 16px 0 14px;
}

.footer-social-title {
  margin: 0 0 9px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-socials .social-link {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.86);
}

.footer-socials .social-link:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.footer-link:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 560;
}

.footer-bottom a + a {
  margin-left: 14px;
}

.footer-bottom a:hover {
  color: #ffffff;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 480ms ease, transform 480ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  .business-area-track {
    animation: none;
    transform: none;
  }

  .sector-orbit-card-list,
  .sector-orbit-card {
    animation: none;
    transform: none;
  }

  .service-method-flow::after,
  .service-method-step,
  .method-step-card,
  .method-step-status {
    transition: none;
  }

}

@media (max-width: 980px) {
  .desktop-nav,
  .header-socials,
  .nav-cta {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .hero {
    min-height: 76vh;
    padding-top: 116px;
  }

  .hero-services h1 {
    font-size: clamp(38px, 10.8vw, 48px);
  }

  .hero-home {
    min-height: 70vh;
  }

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 34px;
  }

  .section-head,
  .growth-system,
  .service-story-block,
  .service-story-block.is-reverse,
  .service-detail-intro,
  .service-case-study,
  .service-detail-deliverables,
  .legal-notice-layout,
  .split-copy,
  .contact-layout,
  .contact-options,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .section-head-copy {
    margin-left: 0;
  }

  .card-grid,
  .problem-grid,
  .visual-grid,
  .service-detail-finding-grid,
  .contact-options,
  .link-grid,
  .directory-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-story-block.is-reverse .service-story-media,
  .service-story-block.is-reverse .service-story-copy {
    order: initial;
    margin-top: 0;
  }

  .service-story-copy {
    max-width: 100%;
  }

  .service-detail-copy,
  .service-case-study-copy,
  .service-detail-deliverable-copy {
    max-width: 100%;
  }

  .case-study-visual-grid {
    grid-template-columns: 1fr;
  }

  .case-flow-panel,
  .case-dashboard-panel {
    min-height: auto;
  }

  .case-board-header {
    display: grid;
    grid-template-columns: 1fr;
  }

  .case-board-scenario {
    max-width: 100%;
  }

  .case-board-columns {
    grid-template-columns: 1fr;
  }

  .sector-workflow-demo {
    grid-template-columns: 1fr;
  }

  .sector-workflow-brief {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(130, 164, 255, 0.18);
  }

  .sector-workflow-timeline {
    min-height: 520px;
  }

  .sector-orbit-shell {
    gap: 28px;
  }

  .sector-orbit-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .sector-orbit-scene {
    min-height: 590px;
  }

  .case-board-column {
    min-height: auto;
  }

  .case-board-result-content {
    grid-template-columns: 1fr;
  }

  .automation-explorer {
    grid-template-columns: 1fr;
  }

  .automation-menu {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .automation-panel {
    min-height: auto;
  }

  .sector-automation-table {
    min-width: 820px;
  }

  .legal-notice-summary {
    position: static;
  }

}

@media (max-width: 640px) {
  .site-header {
    height: 66px;
    padding: 0 16px;
  }

  .wordmark {
    min-width: 0;
  }

  .brand-logo {
    width: 122px;
    height: auto;
    flex-basis: 122px;
  }

  .service-case-study-visual {
    padding: 18px;
  }

  .growth-system-compact ul {
    grid-template-columns: 1fr;
  }

  .hero-video-frame {
    top: 10px;
    left: 50%;
    width: 90vw;
    aspect-ratio: 16 / 9;
    transform: translateX(-50%);
  }

  .hero-video {
    top: 0;
    left: 0;
    width: 108vw;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center top;
    transform: none;
    clip-path: none;
  }

  .hero-video-hero .hero-inner {
    padding-top: clamp(220px, 54vw, 292px);
  }

  .hero-video-hero::after {
    display: none;
    background: none;
  }

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

  .case-dashboard-head {
    flex-direction: column;
  }

  .case-dashboard-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .case-dashboard-row.is-head {
    display: none;
  }

  .service-case-study-board {
    padding: 18px;
  }

  .case-board-title h2 {
    font-size: clamp(36px, 12vw, 54px);
  }

  .case-board-title p {
    font-size: 18px;
  }

  .case-board-column {
    padding: 16px;
  }

  .case-board-column-head {
    display: grid;
  }

  .case-board-column-head > span {
    order: -1;
  }

  .case-board-info-grid,
  .case-board-result-grid,
  .case-board-bottom-grid,
  .case-board-result-content {
    grid-template-columns: 1fr;
  }

  .case-board-solution-rows div {
    grid-template-columns: 1fr;
  }

  .case-board-validation {
    grid-template-columns: 1fr;
  }

  .case-board-document {
    position: static;
    width: 100%;
    margin-top: 14px;
  }

  .case-board-mail-window {
    width: 100%;
  }

  .mobile-menu {
    inset: 66px 0 auto 0;
    max-height: calc(100vh - 66px);
  }

  .hero {
    min-height: 74vh;
    padding: 104px 18px 54px;
  }

  .hero-home {
    min-height: auto;
    padding-top: 0;
    padding-bottom: 34px;
  }

  .hero-panel {
    display: none;
  }

  h1 {
    font-size: clamp(40px, 13vw, 64px);
  }

  .hero-home h1 {
    font-size: clamp(38px, 11vw, 48px);
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .card-grid,
  .problem-grid,
  .visual-grid,
  .service-detail-finding-grid,
  .service-detail-deliverable-list,
  .contact-form-grid,
  .contact-options,
  .link-grid,
  .directory-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .visual-tile,
  .visual-tile img,
  .service-story-media,
  .service-story-media img,
  .service-detail-media,
  .service-detail-media img {
    min-height: 260px;
  }

  .service-detail-copy h2,
  .service-detail-deliverable-copy h2 {
    font-size: clamp(28px, 8vw, 38px);
  }

  .service-detail-question {
    min-height: 76px;
    padding: 18px;
  }

  .legal-notice-summary dl div,
  .legal-notice-rows div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .service-detail-question h3 {
    font-size: 17px;
  }

  .service-detail-finding {
    min-height: 210px;
  }

  .automation-menu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 8px;
  }

  .sector-workflow-demo {
    padding: 14px;
  }

  .sector-workflow-brief {
    gap: 18px;
    padding: 20px;
  }

  .sector-workflow-prompt {
    font-size: 18px;
  }

  .sector-workflow-timeline {
    min-height: auto;
    padding: 20px 0 4px;
  }

  .sector-workflow-line {
    left: 21px;
  }

  .sector-workflow-stage {
    justify-self: start;
    margin-left: 42px;
  }

  .sector-workflow-step {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 10px 12px;
    padding: 14px;
  }

  .sector-workflow-icon {
    grid-column: 1;
    width: 30px;
    height: 30px;
    font-size: 9px;
  }

  .sector-workflow-step strong,
  .sector-workflow-step em {
    grid-column: 2;
  }

  .sector-workflow-step em {
    justify-self: start;
  }

  .sector-automation-table {
    min-width: 760px;
  }

  .sector-orbit-section::before {
    background-size: 42px 42px;
  }

  .sector-orbit-scene {
    display: grid;
    gap: 20px;
    min-height: 0;
  }

  .sector-orbit-rings {
    display: none;
  }

  .sector-orbit-core {
    position: relative;
    left: auto;
    top: auto;
    min-height: 176px;
    margin: 0 auto 4px;
    transform: none;
  }

  .sector-orbit-card-list {
    position: static;
    display: grid;
    grid-template-columns: 1fr;
    width: auto;
    height: auto;
    gap: 12px;
    animation: none;
    transform: none;
  }

  .sector-orbit-node,
  .sector-orbit-node-0,
  .sector-orbit-node-1,
  .sector-orbit-node-2,
  .sector-orbit-node-3,
  .sector-orbit-node-4,
  .sector-orbit-node-5 {
    position: static;
    width: auto;
    height: auto;
    transform: none;
  }

  .sector-orbit-card,
  .sector-orbit-node-0 .sector-orbit-card,
  .sector-orbit-node-1 .sector-orbit-card,
  .sector-orbit-node-2 .sector-orbit-card,
  .sector-orbit-node-3 .sector-orbit-card,
  .sector-orbit-node-4 .sector-orbit-card,
  .sector-orbit-node-5 .sector-orbit-card {
    position: static;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: start;
    align-items: center;
    width: auto;
    min-height: 0;
    padding: 15px;
    text-align: left;
    transform: none;
    animation: none;
  }

  .sector-orbit-card strong {
    font-size: 15px;
  }

  .sector-orbit-card small {
    font-size: 12px;
  }

  .automation-menu-item {
    min-height: 68px;
    grid-template-columns: 1fr;
    gap: 6px;
    align-content: center;
    padding: 10px;
  }

  .automation-panel {
    padding: 22px 18px;
  }

  .automation-panel-head h3 {
    font-size: 26px;
  }

  .automation-accordion-toggle {
    min-height: 58px;
    padding: 16px;
  }

  .automation-accordion-panel {
    padding: 0 16px 18px;
  }

  .automation-accordion-panel ul {
    grid-template-columns: 1fr;
  }

  .deliverable-accordion-toggle {
    min-height: 58px;
    padding: 15px 16px;
  }

  .deliverable-accordion-panel {
    padding: 0 16px 17px;
  }

  .service-story-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .service-story {
    gap: 52px;
  }

  .service-story-block,
  .service-story-block.is-reverse {
    gap: 24px;
  }

  .service-story-copy h3 {
    font-size: clamp(28px, 8vw, 38px);
  }

  .service-photo-cta {
    min-height: auto;
    padding: 72px 18px;
  }

  .service-photo-cta h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .service-method-flow {
    padding: 34px 16px;
  }

  .service-method-flow::before,
  .service-method-flow::after {
    top: 34px;
    left: 38px;
  }

  .service-method-flow::before {
    bottom: 34px;
  }

  .service-method-flow::after {
    bottom: 34px;
    transform: translateX(-50%) scaleY(var(--method-progress));
  }

  .service-method-list {
    gap: 14px;
  }

  .service-method-step {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    transform: none;
  }

  .service-method-step.is-active {
    transform: none;
  }

  .method-step-number {
    position: relative;
    z-index: 2;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    background: #151515;
    color: rgba(247, 244, 239, 0.78);
    font-size: 13px;
    font-weight: 740;
    text-align: center;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
  }

  .service-method-step.is-active .method-step-number {
    border-color: rgba(216, 119, 34, 0.7);
    color: #f7f4ef;
    box-shadow: 0 16px 32px rgba(216, 119, 34, 0.14);
  }

  .method-step-marker {
    display: none;
  }

  .method-step-card {
    min-height: 86px;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
  }

  .method-step-card h3 {
    font-size: 17px;
    line-height: 1.32;
  }

  .method-step-status {
    min-height: 30px;
    font-size: 12px;
  }

  .section {
    padding: 64px 18px;
  }

  .section-head {
    margin-bottom: 28px;
  }

  .section-head h2,
  .cta-panel h2 {
    font-size: clamp(30px, 9vw, 42px);
    line-height: 1.08;
  }

  .problem-title {
    font-size: 19px;
  }

  .problem-summary {
    font-size: 16px;
  }

  .business-area-carousel {
    overflow: visible;
    padding: 0;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .business-area-carousel::before,
  .business-area-carousel::after {
    display: none;
  }

  .business-area-track {
    display: block;
    width: 100%;
    animation: none;
    transform: none;
  }

  .business-area-set {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    padding-right: 0;
  }

  .business-area-set[aria-hidden="true"] {
    display: none;
  }

  .business-area-carousel .problem-card,
  .business-area-carousel .problem-card.is-open {
    width: 100%;
    min-height: 220px;
    flex-basis: auto;
  }

  .feature-card {
    min-height: 190px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
