:root {
  --color-carbon: #232829;
  --color-carbon-2: #2e3635;
  --color-graphite: #46504d;
  --color-slate: #737d79;
  --color-mist: #f4f7f2;
  --color-panel: #ffffff;
  --color-volt: #93c83e;
  --color-volt-2: #d6ef82;
  --color-cyan: #2fb9c6;
  --color-amber: #e3b456;
  --color-red: #ec5b4d;
  --font-main: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Segoe UI", Inter, ui-sans-serif, system-ui, sans-serif;
  --shadow-soft: 0 26px 90px rgba(35, 40, 41, 0.12);
  --shadow-dark: 0 32px 90px rgba(25, 30, 32, 0.34);
  --radius-sm: 8px;
  --radius-md: 8px;
  --radius-lg: 8px;
  --container: min(1180px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-carbon);
  background: #ffffff;
  font-family: var(--font-main);
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

img,
video {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

::selection {
  color: var(--color-carbon);
  background: var(--color-volt-2);
}

.skip-link {
  position: fixed;
  inset: 12px auto auto 12px;
  z-index: 200;
  padding: 10px 14px;
  color: var(--color-carbon);
  background: var(--color-volt-2);
  transform: translateY(-160%);
}

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

.electric-intro {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  overflow: hidden;
  opacity: 0;
  mix-blend-mode: screen;
  background:
    linear-gradient(110deg, transparent 0 28%, rgba(47, 185, 198, 0.05) 46%, transparent 70%),
    linear-gradient(18deg, transparent 0 42%, rgba(147, 200, 62, 0.06) 50%, transparent 64%);
  animation: electricIntroLayer 2.45s ease-out forwards;
}

.electric-intro-line {
  position: absolute;
  display: block;
  height: 2px;
  border-radius: 999px;
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(214, 239, 130, 0.35) 18%, #ffffff 48%, var(--color-volt-2) 58%, transparent);
  box-shadow:
    0 0 14px rgba(214, 239, 130, 0.62),
    0 0 30px rgba(47, 185, 198, 0.34);
  transform-origin: center;
  animation: electricIntroLineX 1.12s cubic-bezier(0.16, 0.88, 0.26, 1) forwards;
}

.electric-intro-line::before,
.electric-intro-line::after {
  content: "";
  position: absolute;
  right: 18%;
  top: 50%;
  width: clamp(34px, 5vw, 84px);
  height: 2px;
  border-radius: inherit;
  background: inherit;
  box-shadow: inherit;
  opacity: 0.72;
  transform-origin: left center;
}

.electric-intro-line::before {
  transform: rotate(28deg);
}

.electric-intro-line::after {
  transform: rotate(-24deg);
}

.electric-intro-line--one {
  top: 15%;
  left: -48vw;
  width: 52vw;
  animation-delay: 0.12s;
}

.electric-intro-line--two {
  top: 34%;
  left: -58vw;
  width: 64vw;
  animation-delay: 0.28s;
  animation-duration: 1.22s;
}

.electric-intro-line--three {
  top: 57%;
  left: -54vw;
  width: 58vw;
  animation-delay: 0.44s;
}

.electric-intro-line--four {
  top: 78%;
  left: -46vw;
  width: 50vw;
  animation-delay: 0.62s;
  animation-duration: 1.18s;
}

.electric-intro-line--diagonal-one,
.electric-intro-line--diagonal-two {
  height: 2px;
  animation-name: electricIntroLineDiagonal;
}

.electric-intro-line--diagonal-one {
  top: 24%;
  left: -62vw;
  width: 72vw;
  animation-delay: 0.18s;
}

.electric-intro-line--diagonal-two {
  top: 69%;
  left: -68vw;
  width: 78vw;
  animation-delay: 0.5s;
  animation-duration: 1.26s;
}

.electric-intro-line--vertical-one,
.electric-intro-line--vertical-two {
  top: -50vh;
  width: 2px;
  height: 52vh;
  background: linear-gradient(180deg, transparent, rgba(214, 239, 130, 0.34) 18%, #ffffff 48%, var(--color-volt-2) 58%, transparent);
  animation-name: electricIntroLineY;
}

.electric-intro-line--vertical-one::before,
.electric-intro-line--vertical-one::after,
.electric-intro-line--vertical-two::before,
.electric-intro-line--vertical-two::after {
  display: none;
}

.electric-intro-line--vertical-one {
  left: 27%;
  animation-delay: 0.35s;
  animation-duration: 1.2s;
}

.electric-intro-line--vertical-two {
  left: 73%;
  animation-delay: 0.56s;
  animation-duration: 1.1s;
}

@keyframes electricIntroLayer {
  0% {
    opacity: 0;
  }

  10%,
  72% {
    opacity: 0.72;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes electricIntroLineX {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scaleX(0.45);
  }

  12%,
  78% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(158vw, 0, 0) scaleX(1);
  }
}

@keyframes electricIntroLineDiagonal {
  0% {
    opacity: 0;
    transform: translate3d(0, 10vh, 0) rotate(12deg) scaleX(0.45);
  }

  12%,
  78% {
    opacity: 0.95;
  }

  100% {
    opacity: 0;
    transform: translate3d(164vw, -20vh, 0) rotate(12deg) scaleX(1);
  }
}

@keyframes electricIntroLineY {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scaleY(0.45);
  }

  14%,
  74% {
    opacity: 0.9;
  }

  100% {
    opacity: 0;
    transform: translate3d(0, 138vh, 0) scaleY(1);
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  width: min(1220px, calc(100vw - 44px));
  margin: 0 auto;
  padding: 24px 0;
  color: #fff;
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  box-shadow: none;
  transition: width 180ms ease, margin 180ms ease, padding 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  width: min(1180px, calc(100vw - 28px));
  margin-top: 14px;
  padding: 10px 12px 10px 14px;
  background: rgba(42, 48, 50, 0.94);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 54px rgba(25, 30, 32, 0.24);
  backdrop-filter: blur(18px);
}

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

.brand img,
.site-footer img {
  display: block;
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.main-nav a,
.header-cta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 13px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
  outline: none;
}

.header-cta {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.38);
}

.header-cta:hover,
.header-cta:focus-visible {
  color: var(--color-carbon);
  background: #fff;
  outline: none;
}

.site-header.is-scrolled .header-cta {
  color: var(--color-carbon);
  background: var(--color-volt);
  border-color: transparent;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  color: #fff;
  background: transparent;
  border: 0;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 3px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(35, 40, 41, 0.76), rgba(45, 52, 51, 0.32) 54%, rgba(35, 40, 41, 0.62)),
    linear-gradient(0deg, rgba(35, 40, 41, 0.7), rgba(45, 52, 51, 0.08) 58%, rgba(35, 40, 41, 0.3)),
    #2a3032;
}

.hero-video,
.hero-overlay,
.hero-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
  opacity: 0;
  filter: saturate(1) contrast(1.05);
  transition: opacity 420ms ease;
}

.hero-video.is-playing {
  opacity: 1;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(35, 40, 41, 0.5), rgba(45, 52, 51, 0.08) 55%, rgba(35, 40, 41, 0.36)),
    linear-gradient(0deg, rgba(35, 40, 41, 0.58), rgba(45, 52, 51, 0.02) 62%, rgba(35, 40, 41, 0.12));
}

.hero-grid {
  z-index: 2;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
  width: var(--container);
  margin: 0 auto;
  padding: 162px 0 122px;
}

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

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--color-volt-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 1.06;
  letter-spacing: 0;
  overflow-wrap: break-word;
  hyphens: auto;
}

h1 {
  max-width: 1080px;
  font-size: clamp(3rem, 5.55vw, 5.45rem);
  font-weight: 300;
  text-wrap: pretty;
}

.keep-together {
  white-space: nowrap;
}

.hero-title-main {
  white-space: nowrap;
}

h2 {
  max-width: 900px;
  color: var(--color-carbon);
  font-size: clamp(2.25rem, 4.4vw, 4.2rem);
  font-weight: 300;
  text-wrap: balance;
}

h3 {
  font-size: 1.35rem;
  font-weight: 560;
}

p {
  margin: 0;
}

.hero-lead {
  max-width: 760px;
  margin: 30px auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.08rem, 1.6vw, 1.32rem);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.hero-proof span,
.gold-partner {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-sm);
}

.hero-proof .gold-partner,
.gold-partner {
  color: var(--color-carbon);
  background: var(--color-volt);
  border-color: transparent;
}

.hero-actions,
.chat-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}

.scroll-cue {
  --scroll-cue-travel: 116px;
  position: absolute;
  left: 50%;
  bottom: max(62px, calc(env(safe-area-inset-bottom) + 48px));
  z-index: 4;
  display: grid;
  place-items: center;
  width: 42px;
  height: 118px;
  color: #fff;
  text-decoration: none;
  transform: translateX(-50%);
  transition: transform 180ms ease, opacity 180ms ease;
}

.scroll-cue:hover,
.scroll-cue:focus-visible {
  opacity: 1;
  outline: none;
  transform: translate(-50%, 5px);
}

.scroll-cue:focus-visible .scroll-cue-track {
  outline: 3px solid rgba(214, 239, 130, 0.68);
  outline-offset: 8px;
}

.scroll-cue-track {
  position: absolute;
  top: 0;
  width: 3px;
  height: 112px;
  overflow: hidden;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.92) 18%, rgba(255, 255, 255, 0.3) 64%, transparent);
  border-radius: 999px;
  box-shadow: 0 0 22px rgba(147, 200, 62, 0.22);
}

.scroll-cue-track::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -26px;
  width: 8px;
  height: 30px;
  background: var(--color-volt);
  border-radius: 999px;
  box-shadow: 0 0 22px rgba(147, 200, 62, 0.92);
  transform: translateX(-50%);
  animation: scrollCueDrop 1.7s cubic-bezier(0.6, 0, 0.18, 1) infinite;
}

@keyframes scrollCueDrop {
  0% {
    top: -18px;
    opacity: 0;
  }

  22% {
    opacity: 1;
  }

  78% {
    opacity: 1;
  }

  100% {
    top: var(--scroll-cue-travel);
    opacity: 0;
  }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  color: var(--color-carbon);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(31, 199, 212, 0.45);
  outline-offset: 2px;
}

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

.button-primary:hover {
  background: var(--color-volt-2);
}

.button-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}

.button-secondary.on-light {
  color: var(--color-carbon);
  background: #fff;
  border-color: #dce6df;
}

.button-ghost {
  color: var(--color-carbon);
  background: #eef5f1;
  border-color: #d9e8de;
}

.hero-panel {
  display: none;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.35fr);
  gap: 12px;
  width: min(980px, 100%);
  margin: 58px auto 0;
}

.signal-card,
.mini-signal,
.service-card,
.use-case-grid article,
.process-list li,
.chat-card,
.lead-form,
.identity-logo,
.component-sample {
  border: 1px solid rgba(16, 21, 26, 0.1);
  border-radius: var(--radius-lg);
}

.signal-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  padding: 20px;
  text-align: left;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(18px);
}

.signal-card strong,
.mini-signal strong {
  display: block;
  margin-bottom: 5px;
  font-size: 1rem;
}

.signal-card p,
.mini-signal p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.91rem;
}

.signal-icon,
.service-icon {
  position: relative;
  display: inline-flex;
  width: 48px;
  height: 48px;
  background: rgba(147, 200, 62, 0.13);
  border: 1px solid rgba(147, 200, 62, 0.38);
  border-radius: var(--radius-sm);
}

.icon-loxone::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 3px solid var(--color-volt-2);
  border-top-color: transparent;
  transform: rotate(45deg);
}

.icon-loxone::after {
  content: "";
  position: absolute;
  inset: 20px 10px auto auto;
  width: 16px;
  height: 3px;
  background: var(--color-cyan);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.mini-signal {
  padding: 16px;
  text-align: left;
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(18px);
}

.mini-icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  color: var(--color-carbon);
  font-weight: 950;
  background: var(--color-volt);
  border-radius: var(--radius-sm);
}

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  scroll-margin-top: 92px;
  padding: 24px 20px;
  color: #fff;
  background: var(--color-carbon);
}

.trust-bar span {
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
}

.tech-logos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: stretch;
  padding: 34px max(20px, calc((100vw - 1180px) / 2));
  background: #ffffff;
  border-bottom: 1px solid #e6ebe6;
}

.tech-logos > div:first-child {
  display: flex;
  gap: 24px;
  align-items: flex-end;
  justify-content: space-between;
}

.tech-logos h2 {
  color: #52771d;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tech-logos > div:first-child p,
.tech-logo-note {
  margin-top: 8px;
  color: var(--color-slate);
}

.tech-logos > div:first-child p {
  max-width: 660px;
  text-align: right;
}

.tech-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(150px, 1fr));
  gap: 12px;
}

.tech-logo {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 84px;
  padding: 12px;
  color: var(--color-carbon);
  text-decoration: none;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e2e8e2;
  border-radius: var(--radius-sm);
  box-shadow: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.tech-logo::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: #dce8dd;
}

.tech-logo:hover,
.tech-logo:focus-visible {
  border-color: rgba(147, 200, 62, 0.72);
  box-shadow: 0 18px 42px rgba(35, 40, 41, 0.09);
  transform: translateY(-1px);
  outline: none;
}

.tech-logo--priority {
  background: #f8fbf4;
  border-color: rgba(147, 200, 62, 0.48);
}

.tech-logo--priority::before {
  background: var(--color-volt);
}

.tech-logo--security::before {
  background: var(--color-amber);
}

.tech-logo--network::before {
  background: var(--color-cyan);
}

.tech-logo img {
  position: relative;
  display: block;
  width: min(190px, 94%);
  max-height: 58px;
  height: auto;
}

.tech-logo span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: var(--color-carbon);
  font-size: clamp(1.15rem, 1.9vw, 1.55rem);
  font-weight: 950;
}

.tech-logo-note {
  grid-column: 1 / -1;
  margin-top: 0;
  font-size: 0.86rem;
}

.visual-services {
  width: 100%;
  padding: 112px max(20px, calc((100vw - 1180px) / 2));
  background: #fff;
}

.visual-services-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 70px;
  align-items: end;
  margin-bottom: 48px;
}

.visual-services-head p {
  color: var(--color-slate);
  font-size: 1.06rem;
  line-height: 1.75;
}

.visual-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 560px;
  background: var(--color-carbon);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.visual-card {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 560px;
  padding: 34px 26px;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
  text-decoration: none;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.visual-card:last-child {
  border-right: 0;
}

.visual-card::before,
.visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

.visual-card::before {
  background: var(--visual-image) center / cover no-repeat;
  transform: scale(1.02);
  transition: transform 420ms ease, filter 420ms ease;
}

.visual-card::after {
  background:
    linear-gradient(180deg, rgba(35, 40, 41, 0.12), rgba(35, 40, 41, 0.82)),
    linear-gradient(90deg, rgba(35, 40, 41, 0.54), rgba(35, 40, 41, 0.12));
}

.visual-card:hover::before,
.visual-card:focus-visible::before {
  filter: saturate(1.06) contrast(1.06);
  transform: scale(1.07);
}

.visual-card:focus-visible {
  outline: 3px solid rgba(147, 200, 62, 0.6);
  outline-offset: -3px;
}

.visual-card span {
  display: inline-flex;
  width: max-content;
  margin-bottom: 18px;
  color: var(--color-volt-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.visual-card strong {
  max-width: 260px;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.1vw, 2.1rem);
  font-weight: 300;
  line-height: 1.1;
}

.visual-card p {
  max-width: 300px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.62;
}

.visual-card--home {
  --visual-image: url("assets/photo-loxone-panel.webp");
}

.visual-card--lighting {
  --visual-image: url("assets/photo-lighting-team.webp");
}

.visual-card--lighting::before {
  background-position: 72% center;
}

.visual-card--rack {
  --visual-image: url("assets/photo-rack-work.webp");
}

.visual-card--security {
  --visual-image: url("assets/photo-network-detail.webp");
}

.visual-card--security::before {
  background-position: 78% center;
}

.section.lighting-choice-section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 108px max(20px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(180deg, #fff 0, #f4f7f2 100%);
}

.lighting-choice-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.82fr);
  gap: 0;
  overflow: hidden;
  min-height: 560px;
  color: #fff;
  background:
    radial-gradient(circle at 9% 13%, rgba(147, 200, 62, 0.22), transparent 28%),
    linear-gradient(135deg, rgba(35, 40, 41, 0.98), rgba(55, 64, 61, 0.98)),
    #2a3032;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 100px rgba(35, 40, 41, 0.18);
}

.lighting-choice-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--color-volt), var(--color-cyan));
}

.lighting-choice-copy {
  display: grid;
  align-content: center;
  padding: clamp(30px, 5vw, 64px);
}

.lighting-choice-card h2,
.lighting-choice-card .section-kicker {
  color: #fff;
}

.lighting-choice-card h2 {
  max-width: 760px;
  font-size: 4rem;
  line-height: 1;
}

.lighting-choice-card .section-kicker {
  color: var(--color-volt-2);
}

.lighting-choice-card p {
  max-width: 700px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
  line-height: 1.75;
}

.lighting-choice-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.lighting-choice-points span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
}

.lighting-choice-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.lighting-choice-media {
  position: relative;
  min-height: 560px;
  isolation: isolate;
}

.lighting-choice-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(35, 40, 41, 0.08), rgba(35, 40, 41, 0.45)),
    linear-gradient(90deg, rgba(35, 40, 41, 0.26), transparent 52%);
}

.lighting-choice-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 42%;
  pointer-events: none;
}

.kama-lights-card {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 4;
  display: grid;
  gap: 14px;
  justify-items: start;
  width: min(330px, calc(100% - 56px));
  padding: 24px;
  color: #fff;
  text-decoration: none;
  background:
    radial-gradient(circle at 12% 0, rgba(214, 239, 130, 0.2), transparent 36%),
    rgba(20, 24, 24, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.kama-lights-card:hover,
.kama-lights-card:focus-visible {
  outline: none;
  transform: translateY(-3px);
  border-color: rgba(214, 239, 130, 0.58);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
}

.kama-lights-card:focus-visible {
  outline: 3px solid rgba(214, 239, 130, 0.72);
  outline-offset: 4px;
}

.kama-lights-card span {
  color: var(--color-volt-2);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.kama-lights-card img {
  display: block;
  width: min(221px, 92%);
  height: auto;
}

.kama-lights-card strong {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.96rem;
  line-height: 1.35;
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: 116px 0;
}

.section-kicker {
  color: #52771d;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  gap: 84px;
  align-items: center;
}

.split p,
.section-head p,
.contact-panel > div > p,
.site-footer p {
  color: var(--color-slate);
  font-size: 1.05rem;
  line-height: 1.75;
}

.split > div > p {
  max-width: 700px;
  margin-top: 24px;
}

.feature-list {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.feature-list > div {
  display: grid;
  grid-template-columns: 28px 1fr;
  column-gap: 14px;
}

.feature-list strong,
.feature-list p {
  grid-column: 2;
}

.feature-list p {
  margin-top: 3px;
  color: var(--color-slate);
}

.check {
  grid-row: 1 / span 2;
  position: relative;
  width: 28px;
  height: 28px;
  margin-top: 2px;
  background: #e6f5d4;
  border-radius: var(--radius-sm);
}

.check::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 6px;
  width: 8px;
  height: 13px;
  border: solid #4d7516;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.tech-stack {
  position: relative;
  min-height: 430px;
  background:
    linear-gradient(145deg, rgba(42, 48, 50, 0.98), rgba(53, 68, 64, 0.94)),
    #2a3032;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.tech-stack::before {
  content: "";
  position: absolute;
  inset: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.tech-stack::after {
  content: "";
  position: absolute;
  inset: 92px;
  border: 1px dashed rgba(147, 200, 62, 0.46);
  border-radius: 50%;
}

.stack-center,
.stack-item {
  position: absolute;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  text-align: center;
  border-radius: var(--radius-sm);
}

.stack-center {
  inset: 50%;
  z-index: 2;
  width: min(205px, 44%);
  aspect-ratio: 1.42;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  transform: translate(-50%, -50%);
  box-shadow: none;
  backdrop-filter: none;
}

.stack-center::before {
  content: "";
  position: absolute;
  left: 2%;
  right: 2%;
  bottom: 0;
  height: 46%;
  z-index: 0;
  background: radial-gradient(ellipse at center, rgba(147, 200, 62, 0.42), rgba(47, 185, 198, 0.12) 44%, transparent 72%);
  filter: blur(18px);
  opacity: 0.78;
}

.stack-center img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  margin-inline: auto;
  filter:
    drop-shadow(0 18px 16px rgba(0, 0, 0, 0.32))
    drop-shadow(0 0 22px rgba(147, 200, 62, 0.15));
}

.stack-item {
  z-index: 3;
  min-width: 88px;
  min-height: 42px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
}

.stack-item--one {
  top: 42px;
  left: 50%;
  transform: translateX(-50%);
}

.stack-item--two {
  right: 42px;
  top: 132px;
}

.stack-item--three {
  right: 66px;
  bottom: 78px;
}

.stack-item--four {
  left: 66px;
  bottom: 78px;
}

.stack-item--five {
  left: 42px;
  top: 132px;
}

.stack-item--six {
  left: 50%;
  bottom: 38px;
  transform: translateX(-50%);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 70px;
  align-items: end;
  margin-bottom: 50px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #e5ebe5;
  border: 1px solid #e5ebe5;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-card {
  min-height: 360px;
  padding: 32px;
  background: var(--color-panel);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transition: background-color 160ms ease, transform 160ms ease;
}

.service-card--highlight {
  color: #fff;
  background: linear-gradient(145deg, #2a3032, #35443f);
}

.service-card:hover {
  background: #f8faf7;
}

.service-card--highlight:hover {
  background: linear-gradient(145deg, #30383a, #3a4f49);
}

.service-card h3 {
  margin-top: 28px;
  font-size: clamp(1.45rem, 2vw, 1.9rem);
}

.service-card p {
  margin-top: 12px;
  color: var(--color-slate);
}

.service-card--highlight p,
.service-card--highlight li {
  color: rgba(255, 255, 255, 0.76);
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin: 24px 0 0;
  padding-left: 18px;
  color: var(--color-slate);
}

.service-card li::marker {
  color: var(--color-volt);
}

.service-icon {
  background: #eef6e7;
}

.service-card--highlight .service-icon {
  background: rgba(147, 200, 62, 0.13);
}

.service-icon::before,
.service-icon::after {
  content: "";
  position: absolute;
}

.icon-circuit::before {
  left: 10px;
  right: 10px;
  top: 23px;
  height: 3px;
  background: var(--color-volt);
}

.icon-circuit::after {
  left: 20px;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--color-cyan);
  box-shadow: 0 20px 0 var(--color-amber), 12px 10px 0 var(--color-volt);
}

.icon-bolt::before {
  left: 17px;
  top: 8px;
  width: 13px;
  height: 30px;
  background: var(--color-amber);
  clip-path: polygon(46% 0, 100% 0, 62% 39%, 100% 39%, 28% 100%, 43% 52%, 0 52%);
}

.icon-shield::before {
  inset: 9px 13px 8px;
  border: 3px solid var(--color-cyan);
  border-radius: 16px 16px 22px 22px;
}

.icon-network::before {
  left: 10px;
  top: 11px;
  width: 8px;
  height: 8px;
  background: var(--color-volt);
  box-shadow: 20px 0 0 var(--color-cyan), 10px 20px 0 var(--color-amber);
}

.icon-network::after {
  left: 14px;
  top: 18px;
  width: 21px;
  height: 20px;
  border-left: 2px solid var(--color-slate);
  border-right: 2px solid var(--color-slate);
  border-bottom: 2px solid var(--color-slate);
}

.icon-ground::before {
  left: 22px;
  top: 9px;
  width: 3px;
  height: 28px;
  background: var(--color-cyan);
}

.icon-ground::after {
  left: 12px;
  bottom: 10px;
  width: 24px;
  height: 12px;
  border-top: 3px solid var(--color-volt);
  border-bottom: 3px solid var(--color-volt);
}

.icon-report::before {
  left: 14px;
  top: 9px;
  width: 20px;
  height: 28px;
  border: 3px solid var(--color-cyan);
  background: #fff;
}

.icon-report::after {
  left: 19px;
  top: 18px;
  width: 11px;
  height: 3px;
  background: var(--color-volt);
  box-shadow: 0 8px 0 var(--color-amber);
}

.section-dark {
  width: 100%;
  max-width: none;
  padding: 112px max(20px, calc((100vw - 1180px) / 2));
  color: #fff;
  background:
    linear-gradient(135deg, rgba(42, 48, 50, 0.95), rgba(52, 66, 62, 0.94)),
    #2a3032;
}

.section-dark h2,
.section-dark .section-head p,
.section-dark .section-kicker {
  color: #fff;
}

.section-dark .section-kicker {
  color: var(--color-volt-2);
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.use-case-grid article {
  padding: 34px;
  background: rgba(255, 255, 255, 0.08);
  border: 0;
}

.use-case-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--color-volt-2);
  font-size: 1.2rem;
}

.use-case-grid p {
  color: rgba(255, 255, 255, 0.74);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0;
  padding: 0;
  background: #e5ebe5;
  border: 1px solid #e5ebe5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  list-style: none;
}

.process-list li {
  min-height: 260px;
  padding: 30px 24px;
  background: #fff;
  box-shadow: none;
  border: 0;
}

.process-list span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--color-cyan);
  font-weight: 950;
  letter-spacing: 0.08em;
}

.process-list p {
  margin-top: 12px;
  color: var(--color-slate);
}

.instagram-section {
  width: 100%;
  max-width: none;
  padding: 112px max(20px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(135deg, rgba(147, 200, 62, 0.1), rgba(31, 199, 212, 0.09)),
    linear-gradient(180deg, #f8fbf6, #edf6f2);
}

.instagram-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1.45fr);
  gap: 46px;
  align-items: start;
}

.instagram-intro {
  position: sticky;
  top: 104px;
}

.instagram-intro p {
  max-width: 520px;
  margin-top: 24px;
  color: var(--color-slate);
  font-size: 1.04rem;
}

.instagram-profile {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin-top: 28px;
  padding: 12px 18px 12px 12px;
  color: inherit;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(70, 80, 77, 0.12);
  border-radius: var(--radius-sm);
  box-shadow: 0 14px 40px rgba(35, 40, 41, 0.07);
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.instagram-brand-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(35, 40, 41, 0.98), rgba(70, 80, 77, 0.98)),
    #232829;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transition: background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.instagram-profile:hover,
.instagram-profile:focus-visible {
  outline: 3px solid rgba(147, 200, 62, 0.45);
  outline-offset: 3px;
  border-color: rgba(147, 200, 62, 0.42);
  background: #fff;
  box-shadow: 0 18px 48px rgba(35, 40, 41, 0.12);
  transform: translateY(-2px);
}

.instagram-profile:hover .instagram-brand-icon,
.instagram-profile:focus-visible .instagram-brand-icon {
  background:
    linear-gradient(145deg, #232829, #35443f),
    #232829;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 8px 20px rgba(35, 40, 41, 0.18);
}

.instagram-brand-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.instagram-profile strong {
  display: block;
  min-width: 0;
  color: var(--color-carbon);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.instagram-feed {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 14px;
}

.instagram-post,
.instagram-follow-card {
  position: relative;
  display: grid;
  min-height: 300px;
  color: #fff;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 18px 55px rgba(35, 40, 41, 0.14);
}

.instagram-post {
  grid-column: span 2;
  aspect-ratio: 0.78;
}

.instagram-post--wide {
  grid-column: span 4;
  aspect-ratio: 1.55;
}

.instagram-post a {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: end;
  padding: 18px;
  color: inherit;
  text-decoration: none;
}

.instagram-post img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease, filter 520ms ease;
}

.instagram-post a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 34%, rgba(35, 40, 41, 0.18) 58%, rgba(35, 40, 41, 0.88)),
    linear-gradient(135deg, rgba(147, 200, 62, 0.1), rgba(47, 185, 198, 0.08));
}

.instagram-post div {
  position: relative;
  z-index: 2;
  max-width: 420px;
}

.instagram-post span,
.instagram-follow-card span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--color-volt-2);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.instagram-post strong,
.instagram-follow-card strong {
  display: block;
  font-size: clamp(1.02rem, 1.25vw, 1.24rem);
  line-height: 1.18;
}

.instagram-post a:hover img,
.instagram-post a:focus-visible img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.06);
}

.instagram-post a:focus-visible {
  outline: 3px solid rgba(147, 200, 62, 0.72);
  outline-offset: -3px;
}

.instagram-follow-card {
  grid-column: span 4;
  min-height: 300px;
  padding: 24px;
  align-items: end;
  isolation: isolate;
  background: #2a3032;
}

.instagram-follow-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("assets/ig-rozvadec.webp") center / cover no-repeat;
  opacity: 0.2;
  transform: scale(1.03);
}

.instagram-follow-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(42, 48, 50, 0.94), rgba(42, 48, 50, 0.72)),
    linear-gradient(145deg, rgba(147, 200, 62, 0.12), rgba(47, 185, 198, 0.08));
}

.instagram-follow-card > div {
  position: relative;
  z-index: 2;
  max-width: 520px;
}

.instagram-follow-card p {
  margin: 12px 0 22px;
  color: rgba(255, 255, 255, 0.72);
}

.instagram-follow-card .button {
  width: max-content;
}

.identity-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 18px;
}

.identity-logo,
.component-sample {
  display: grid;
  align-content: center;
  min-height: 190px;
  padding: 26px;
  background: #fff;
  box-shadow: none;
  border: 1px solid #e2e8e2;
}

.identity-logo {
  background: #fff;
}

.swatches {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.swatches span {
  display: grid;
  align-content: end;
  min-height: 88px;
  padding: 12px;
  color: #fff;
  font-weight: 850;
  background: var(--swatch);
  border-radius: var(--radius-sm);
}

.swatches span:first-child,
.swatches span:nth-child(3) {
  color: var(--color-carbon);
}

.component-sample {
  gap: 12px;
  align-content: center;
}

.pill {
  display: inline-flex;
  justify-content: center;
  padding: 8px 12px;
  color: #52771d;
  font-weight: 850;
  background: #eef8df;
  border-radius: var(--radius-sm);
}

.chat-card {
  padding: 18px;
  background: #fff;
  border: 1px solid #e0e8e1;
  box-shadow: none;
}

.chat-card--compact {
  padding: 0;
  border: 0;
  box-shadow: none;
}

.chat-log {
  display: grid;
  gap: 12px;
  height: 330px;
  overflow: auto;
  padding: 6px 4px 16px;
}

.chat-message {
  max-width: 86%;
  padding: 13px 15px;
  background: #f3f6f2;
  border-radius: var(--radius-sm);
}

.chat-message strong {
  display: block;
  margin-bottom: 5px;
  font-size: 0.9rem;
}

.chat-message p {
  white-space: pre-line;
}

.chat-message--user {
  justify-self: end;
  color: #fff;
  background: var(--color-graphite);
}

.chat-message--bot {
  justify-self: start;
}

.chat-message p + p,
.chat-message ul {
  margin-top: 9px;
}

.chat-message ul {
  padding-left: 18px;
}

.chat-form {
  display: grid;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid #e2ebe5;
}

.chat-form label {
  color: var(--color-slate);
  font-size: 0.86rem;
  font-weight: 800;
}

textarea,
input,
select {
  width: 100%;
  color: var(--color-carbon);
  background: #fff;
  border: 1px solid #cddbd3;
  border-radius: var(--radius-sm);
}

textarea {
  resize: vertical;
  padding: 12px 13px;
}

.chat-actions {
  margin-top: 0;
}

.contact-section {
  padding-bottom: 108px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 54px;
  padding: 44px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(42, 48, 50, 0.98), rgba(56, 72, 66, 0.96)),
    #2a3032;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.contact-panel h2,
.contact-panel .section-kicker {
  color: #fff;
}

.contact-panel .section-kicker {
  color: var(--color-volt-2);
}

.contact-panel > div > p {
  max-width: 650px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.76);
}

.contact-placeholders {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.contact-placeholders div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-sm);
}

.contact-placeholders span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-placeholders strong {
  overflow-wrap: anywhere;
}

.contact-placeholders a {
  color: inherit;
  text-decoration-color: rgba(255, 255, 255, 0.42);
  text-underline-offset: 4px;
}

.contact-placeholders a:hover,
.contact-placeholders a:focus-visible {
  color: var(--color-gold);
  text-decoration-color: currentColor;
}

.lead-form {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 24px;
  color: var(--color-carbon);
  background: #fff;
}

.lead-form label {
  display: grid;
  gap: 6px;
  color: var(--color-graphite);
  font-size: 0.88rem;
  font-weight: 800;
}

.lead-form input,
.lead-form select {
  min-height: 46px;
  padding: 0 12px;
}

.lead-form textarea {
  min-height: 112px;
}

.form-status {
  color: var(--color-slate);
  font-size: 0.9rem;
}

.form-status[data-state="pending"] {
  color: #5b6518;
}

.form-status[data-state="success"] {
  color: #2d6b32;
  font-weight: 800;
}

.form-status[data-state="error"] {
  color: #9b2f2f;
  font-weight: 800;
}

.form-privacy {
  margin: -2px 0 0;
  color: var(--color-slate);
  font-size: 0.78rem;
  line-height: 1.5;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

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

.floating-chat {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  display: grid;
  justify-items: end;
  gap: 12px;
}

.floating-chat-toggle {
  display: inline-grid;
  place-items: center;
  align-items: center;
  width: 58px;
  height: 58px;
  padding: 0;
  color: var(--color-carbon);
  background: var(--color-volt);
  border: 0;
  border-radius: var(--radius-sm);
  box-shadow: 0 16px 50px rgba(16, 21, 26, 0.28);
  cursor: pointer;
}

.floating-chat-toggle:hover,
.floating-chat-toggle:focus-visible {
  background: var(--color-volt-2);
}

.floating-chat-icon {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-chat-panel {
  width: min(390px, calc(100vw - 28px));
  max-height: min(680px, calc(100svh - 96px));
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(16, 21, 26, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-dark);
}

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

.floating-chat-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 14px 14px 12px;
  color: #fff;
  background: var(--color-carbon);
}

.floating-chat-head strong,
.floating-chat-head span {
  display: block;
}

.floating-chat-head span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.84rem;
  font-weight: 750;
}

.floating-chat-close {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.cookie-modal .floating-chat-close {
  color: var(--color-carbon);
  background: #eef5f1;
  border-color: #d9e8de;
}

.floating-chat .chat-log {
  height: min(330px, calc(100svh - 350px));
  min-height: 210px;
  padding: 14px;
}

.floating-chat .chat-form {
  padding: 12px 14px 14px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
  padding: 54px max(20px, calc((100vw - 1180px) / 2));
  color: #fff;
  background: var(--color-carbon);
}

.site-footer p {
  max-width: 520px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.66);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.footer-links a {
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-cookie-button {
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.footer-cookie-button:hover,
.footer-cookie-button:focus-visible {
  color: #fff;
}

.footer-note {
  grid-column: 1 / -1;
  width: 100%;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.78rem;
  line-height: 1.6;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 160;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  max-width: 1060px;
  margin: 0 auto;
  padding: 16px;
  background: #fff;
  border: 1px solid rgba(16, 21, 26, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-dark);
}

.cookie-banner[hidden],
.cookie-modal[hidden] {
  display: none;
}

.cookie-banner strong {
  display: block;
  margin-bottom: 4px;
}

.cookie-banner p,
.cookie-modal p,
.cookie-options small,
.cookie-legal-links {
  color: var(--color-slate);
}

.cookie-banner-actions,
.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 170;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(16, 21, 26, 0.48);
}

.cookie-modal-card {
  width: min(680px, 100%);
  max-height: min(760px, calc(100svh - 40px));
  overflow: auto;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-dark);
}

.cookie-modal-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
}

.cookie-modal-head strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.35rem;
}

.cookie-options {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.cookie-options label {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  background: #f4f8f5;
  border: 1px solid #dbe8e1;
  border-radius: var(--radius-sm);
}

.cookie-options input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--color-volt);
}

.cookie-options strong,
.cookie-options small {
  display: block;
}

.cookie-options small {
  margin-top: 3px;
  font-size: 0.9rem;
}

.cookie-legal-links {
  margin-top: 16px;
  font-size: 0.92rem;
}

.cookie-legal-links a {
  color: #416816;
  font-weight: 800;
}

.legal-page {
  background: #f7faf7;
}

.legal-document {
  width: min(880px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 54px 0 80px;
}

.legal-document h1 {
  color: var(--color-carbon);
  font-size: clamp(2.35rem, 7vw, 4.8rem);
}

.legal-document h2 {
  margin-top: 36px;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.legal-document p,
.legal-document li {
  color: var(--color-graphite);
}

.legal-document p,
.legal-document ul,
.legal-document table {
  margin-top: 14px;
}

.legal-document ul {
  padding-left: 20px;
}

.legal-document table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  background: #fff;
  border: 1px solid #dbe8e1;
  border-radius: var(--radius-sm);
}

.legal-document th,
.legal-document td {
  padding: 12px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #e4eee8;
}

.legal-document th {
  color: var(--color-carbon);
  background: #edf5ef;
}

.legal-document code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.92em;
}

.legal-back {
  display: inline-flex;
  margin-bottom: 28px;
  color: #416816;
  font-weight: 900;
  text-decoration: none;
}

.legal-updated {
  margin-top: 18px;
  color: var(--color-slate);
  font-weight: 750;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    width: min(1180px, calc(100vw - 28px));
    margin-top: 14px;
    padding: 10px 12px 10px 14px;
    background: rgba(42, 48, 50, 0.92);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 54px rgba(25, 30, 32, 0.22);
    backdrop-filter: blur(18px);
  }

  .brand {
    min-width: 160px;
  }

  .nav-toggle {
    display: grid;
    justify-self: end;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .main-nav.is-open {
    position: fixed;
    top: 78px;
    left: 14px;
    right: 14px;
    display: grid;
    gap: 4px;
    padding: 14px;
    background: rgba(42, 48, 50, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-dark);
  }

  .main-nav.is-open a {
    min-height: 48px;
  }

  .hero-inner,
  .hero-panel,
  .split,
  .tech-logos,
  .visual-services-head,
  .lighting-choice-card,
  .instagram-shell,
  .section-head,
  .contact-panel,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .cookie-banner-actions,
  .cookie-modal-actions {
    justify-content: stretch;
  }

  .cookie-banner-actions .button,
  .cookie-modal-actions .button {
    flex: 1 1 160px;
  }

  .hero-inner {
    gap: 34px;
    padding-top: 150px;
    padding-bottom: 112px;
  }

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

  .hero-lead {
    margin-left: 0;
  }

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

  .hero-proof {
    justify-content: flex-start;
  }

  .service-grid,
  .visual-service-grid,
  .tech-logo-grid,
  .process-list,
  .identity-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .visual-service-grid {
    min-height: 0;
  }

  .visual-card {
    min-height: 420px;
  }

  .lighting-choice-card {
    min-height: auto;
  }

  .lighting-choice-media {
    min-height: 440px;
  }

  .instagram-intro {
    position: static;
  }

  .instagram-intro p {
    max-width: none;
  }

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

  .instagram-post,
  .instagram-post--wide {
    grid-column: span 1;
  }

  .instagram-follow-card {
    grid-column: span 2;
  }

  .tech-stack {
    min-height: 380px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  :root {
    --container: min(100% - 28px, 1120px);
  }

  html {
    scroll-behavior: auto;
  }

  .site-header {
    width: calc(100vw - 20px);
    margin-top: 10px;
  }

  .brand img {
    width: 172px;
  }

  .hero {
    min-height: auto;
    background:
      linear-gradient(90deg, rgba(35, 40, 41, 0.76), rgba(45, 52, 51, 0.54)),
      #2a3032;
  }

  .hero-inner {
    padding: 112px 0 104px;
  }

  .scroll-cue {
    --scroll-cue-travel: 86px;
    bottom: 36px;
    width: 34px;
    height: 86px;
  }

  .scroll-cue-track {
    height: 82px;
  }

  h1 {
    font-size: clamp(2.25rem, 10vw, 3rem);
  }

  .hero-title-main {
    white-space: normal;
  }

  h2 {
    font-size: clamp(2.15rem, 9.5vw, 3rem);
  }

  .hero-actions,
  .hero-proof,
  .chat-actions {
    display: grid;
    justify-content: stretch;
  }

  .hero-panel {
    display: none;
  }

  .signal-grid,
  .service-grid,
  .use-case-grid,
  .tech-logo-grid,
  .process-list,
  .instagram-feed,
  .identity-grid,
  .swatches,
  .contact-placeholders {
    grid-template-columns: 1fr;
  }

  .instagram-section {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .instagram-post,
  .instagram-post--wide,
  .instagram-follow-card {
    grid-column: auto;
    min-height: 360px;
    aspect-ratio: 0.82;
  }

  .instagram-follow-card {
    min-height: auto;
    aspect-ratio: auto;
  }

  .legal-document {
    padding-top: 34px;
  }

  .legal-document table {
    display: block;
    overflow-x: auto;
  }

  .section,
  .visual-services,
  .section-dark {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .visual-services-head {
    margin-bottom: 30px;
  }

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

  .visual-card {
    min-height: 360px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .visual-card:last-child {
    border-bottom: 0;
  }

  .tech-logos {
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .section.lighting-choice-section {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .lighting-choice-card {
    min-height: auto;
  }

  .lighting-choice-copy {
    padding: 28px;
  }

  .lighting-choice-card h2 {
    font-size: 2.45rem;
  }

  .lighting-choice-points {
    display: grid;
  }

  .lighting-choice-actions {
    display: grid;
  }

  .lighting-choice-media {
    min-height: 430px;
  }

  .kama-lights-card {
    right: 16px;
    bottom: 16px;
    width: calc(100% - 32px);
    padding: 20px;
  }

  .kama-lights-card img {
    width: min(190px, 86%);
  }

  .tech-logos > div:first-child {
    display: block;
  }

  .tech-logos > div:first-child p {
    text-align: left;
  }

  .tech-logo {
    min-height: 78px;
  }

  .tech-stack {
    min-height: 340px;
  }

  .stack-center {
    width: min(160px, 46%);
    height: auto;
    aspect-ratio: 1.42;
    padding: 0;
  }

  .stack-center img {
    width: 100%;
  }

  .stack-item {
    min-width: 78px;
    min-height: 38px;
    font-size: 0.82rem;
  }

  .stack-item--two {
    right: 22px;
  }

  .stack-item--three {
    right: 32px;
  }

  .stack-item--four {
    left: 32px;
  }

  .stack-item--five {
    left: 22px;
  }

  .contact-panel {
    padding: 22px;
  }

  .chat-log {
    height: 300px;
  }

  .chat-message {
    max-width: 100%;
  }

  .floating-chat {
    right: 10px;
    bottom: 10px;
    left: 10px;
  }

  .floating-chat-panel {
    width: 100%;
  }

  .floating-chat-toggle {
    width: 56px;
    height: 56px;
  }

  .floating-chat .chat-log {
    height: 260px;
  }
}

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

  .electric-intro {
    display: none !important;
  }

  .hero {
    background:
      linear-gradient(90deg, rgba(35, 40, 41, 0.76), rgba(45, 52, 51, 0.54)),
      #2a3032;
  }
}

/* Service landing pages */
.service-landing {
  min-width: 320px;
  color: var(--color-carbon);
  background: #f5f8f4;
}

.service-page-header {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 48px));
  min-height: 92px;
  transform: translateX(-50%);
}

.service-page-brand {
  display: inline-flex;
}

.service-page-brand img {
  width: 204px;
  height: auto;
}

.service-page-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.service-page-nav > a:not(.button) {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.service-page-nav > a:not(.button):hover,
.service-page-nav > a:not(.button):focus-visible {
  color: var(--color-volt-2);
}

.service-landing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  min-height: 720px;
  color: #fff;
  background: #2a3032;
}

.service-landing-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 148px max(44px, calc((100vw - 1180px) / 2)) 88px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 800;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.service-landing-copy .section-kicker {
  color: var(--color-volt-2);
}

.service-landing-copy h1 {
  max-width: 760px;
  margin: 18px 0 0;
  color: #fff;
  font-size: clamp(3rem, 5.2vw, 5.9rem);
  font-weight: 500;
  line-height: 0.96;
}

.service-landing-lead {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.12rem;
  line-height: 1.62;
}

.service-landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.service-page-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.service-page-proof li {
  padding: 10px 13px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
}

.service-landing-media {
  position: relative;
  min-height: 720px;
  margin: 0;
  overflow: hidden;
}

.service-landing-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(42, 48, 50, 0.44), transparent 40%), linear-gradient(0deg, rgba(42, 48, 50, 0.2), transparent 45%);
  pointer-events: none;
}

.service-landing-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-page-section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 104px 0;
}

.service-page-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: 72px;
  align-items: end;
}

.service-page-intro h2,
.service-page-band h2,
.service-page-faq h2,
.service-page-cta h2 {
  margin: 14px 0 0;
  font-size: clamp(2.4rem, 4vw, 4.7rem);
  font-weight: 500;
  line-height: 1.02;
}

.service-page-intro > p {
  margin: 0;
  color: var(--color-slate);
  font-size: 1.08rem;
  line-height: 1.7;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #d9e1da;
  border-bottom: 1px solid #d9e1da;
}

.service-detail-grid article {
  min-height: 330px;
  padding: 36px 32px;
  border-right: 1px solid #d9e1da;
}

.service-detail-grid article:first-child {
  padding-left: 0;
}

.service-detail-grid article:last-child {
  padding-right: 0;
  border-right: 0;
}

.service-detail-grid span {
  color: var(--color-cyan);
  font-size: 0.78rem;
  font-weight: 950;
}

.service-detail-grid h2 {
  margin: 54px 0 18px;
  font-size: 1.55rem;
}

.service-detail-grid p {
  margin: 0;
  color: var(--color-slate);
  line-height: 1.65;
}

.service-page-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 80px;
  padding: 112px max(24px, calc((100vw - 1180px) / 2));
  color: #fff;
  background: #30383a;
}

.service-page-band .section-kicker {
  color: var(--color-volt-2);
}

.service-page-band h2 {
  color: #fff;
}

.service-topic-list {
  display: grid;
  gap: 0;
}

.service-topic-list p {
  margin: 0;
  padding: 25px 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.62;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.service-topic-list p:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.service-topic-list strong {
  color: #fff;
}

.service-page-faq {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(380px, 1.3fr);
  gap: 80px;
}

.service-page-faq details {
  border-top: 1px solid #d9e1da;
}

.service-page-faq details:last-child {
  border-bottom: 1px solid #d9e1da;
}

.service-page-faq summary {
  padding: 25px 42px 25px 0;
  font-size: 1.05rem;
  font-weight: 900;
  cursor: pointer;
}

.service-page-faq details p {
  max-width: 700px;
  margin: -4px 0 25px;
  color: var(--color-slate);
  line-height: 1.65;
}

.service-page-cta {
  display: grid;
  justify-items: center;
  padding: 104px max(24px, calc((100vw - 1020px) / 2));
  text-align: center;
  background: linear-gradient(135deg, rgba(147, 200, 62, 0.14), rgba(31, 199, 212, 0.1)), #f5f8f4;
}

.service-page-cta h2 {
  max-width: 1040px;
}

.service-page-cta > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.service-page-footer {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px 60px;
  align-items: center;
  padding: 52px max(24px, calc((100vw - 1180px) / 2));
  color: rgba(255, 255, 255, 0.7);
  background: #232829;
}

.service-page-footer img {
  display: block;
}

.service-page-footer > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px 24px;
}

.service-page-footer a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.service-page-footer > div a {
  font-size: 0.76rem;
  font-weight: 900;
}

.service-page-footer p {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 24px;
  font-size: 0.78rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  margin-top: 24px;
  color: var(--color-carbon);
  font-size: 0.76rem;
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
}

.service-card-link::after {
  content: "→";
  margin-left: 9px;
  color: var(--color-cyan);
  font-size: 1rem;
}

.service-card--highlight .service-card-link {
  color: var(--color-volt-2);
}

@media (max-width: 980px) {
  .service-page-header {
    width: min(100% - 32px, 1180px);
  }

  .service-page-nav > a:not(.button) {
    display: none;
  }

  .service-landing-hero {
    grid-template-columns: 1fr;
  }

  .service-landing-copy {
    min-height: 690px;
    padding: 140px 44px 72px;
  }

  .service-landing-media {
    min-height: 500px;
    max-height: 70vh;
  }

  .service-page-intro,
  .service-page-band,
  .service-page-faq {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-page-band {
    padding: 88px 44px;
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-grid article,
  .service-detail-grid article:first-child,
  .service-detail-grid article:last-child {
    min-height: 0;
    padding: 32px 0;
    border-right: 0;
    border-bottom: 1px solid #d9e1da;
  }

  .service-detail-grid article:last-child {
    border-bottom: 0;
  }

  .service-detail-grid h2 {
    margin-top: 24px;
  }
}

@media (max-width: 680px) {
  .service-page-header {
    min-height: 76px;
  }

  .service-page-brand img {
    width: 164px;
  }

  .service-page-nav {
    display: none;
  }

  .service-landing-copy {
    min-height: 680px;
    padding: 122px 22px 58px;
  }

  .service-landing-copy h1 {
    font-size: clamp(2.7rem, 14vw, 4rem);
  }

  .service-landing-lead {
    font-size: 1rem;
  }

  .service-landing-actions {
    display: grid;
  }

  .service-landing-actions .button {
    justify-content: center;
    width: 100%;
  }

  .service-landing-media {
    min-height: 400px;
  }

  .service-page-section {
    width: min(100% - 36px, 1180px);
    padding: 72px 0;
  }

  .service-page-band {
    padding: 72px 20px;
  }

  .service-page-intro h2,
  .service-page-band h2,
  .service-page-faq h2,
  .service-page-cta h2 {
    font-size: clamp(2.25rem, 11vw, 3.4rem);
  }

  .service-page-cta {
    padding: 76px 20px;
  }

  .service-page-cta > div {
    display: grid;
    width: 100%;
  }

  .service-page-footer {
    grid-template-columns: 1fr;
  }

  .service-page-footer > div {
    justify-content: flex-start;
  }
}
