:root {
  --ink: #141815;
  --muted: #5d6861;
  --line: #dce3dd;
  --paper: #f5f6f1;
  --white: #ffffff;
  --black: #0d100e;
  --starvo: #e30613;
  --schneider: #21aa43;
  --holz: #ff5b14;
  --steel: #77817a;
  --shadow: 0 24px 70px rgba(17, 24, 19, 0.16);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

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

svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-inner {
  width: calc(100% - 40px);
  max-width: var(--max);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 22px;
  align-items: center;
  min-height: 72px;
  padding: 12px max(20px, calc((100vw - var(--max)) / 2));
  background: rgba(245, 246, 241, 0.88);
  border-bottom: 1px solid rgba(20, 24, 21, 0.08);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 248px;
  height: auto;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: rgba(20, 24, 21, 0.72);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--holz);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.header-cta {
  color: var(--white);
  background: var(--ink);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--holz);
  box-shadow: 0 12px 26px rgba(255, 91, 20, 0.28);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.menu-toggle .icon-close {
  display: none;
}

.hero {
  position: relative;
  min-height: min(720px, 78svh);
  padding: 122px 0 34px;
  color: var(--white);
  overflow: hidden;
  background: var(--black);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("assets/schneider-fleet-dc.jpg");
  background-position: center;
  background-size: cover;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(13, 16, 14, 0.7);
}

.hero-product {
  position: absolute;
  right: max(16px, calc((100vw - var(--max)) / 2));
  bottom: -84px;
  z-index: 2;
  width: min(39vw, 470px);
  max-height: 88%;
  object-fit: contain;
  filter: drop-shadow(0 36px 58px rgba(0, 0, 0, 0.52));
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(min(720px, 78svh) - 156px);
  padding-right: min(38vw, 470px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--holz);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section-copy h2,
.section-heading-row h2,
.proof-inner h2,
.contact-copy h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.04;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(2.55rem, 5.7vw, 5rem);
}

.hero-lede {
  max-width: 700px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.65vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 0;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(720px, 100%);
  margin: 38px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.09);
}

.hero-metrics div {
  min-width: 0;
  padding: 17px;
  background: rgba(13, 16, 14, 0.5);
}

.hero-metrics strong,
.hero-metrics span {
  display: block;
}

.hero-metrics strong {
  font-size: 1.05rem;
}

.hero-metrics span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
}

.brand-rail {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.brand-rail-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 96px;
  padding: 18px 0;
}

.rail-label {
  margin-right: auto;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.brand-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  font-weight: 900;
}

.brand-chip img {
  max-width: 132px;
  max-height: 40px;
}

.schneider-chip {
  color: var(--schneider);
}

.holz-chip {
  color: var(--ink);
}

.section {
  padding: 96px 0;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 52px;
  align-items: start;
}

.section-copy h2,
.section-heading-row h2,
.proof-inner h2,
.contact-copy h2 {
  font-size: clamp(2rem, 4.6vw, 4rem);
}

.section-copy p,
.section-heading-row > p,
.contact-copy > p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.solution-grid article,
.product-card,
.process-list article,
.proof-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.solution-grid article {
  min-height: 218px;
  padding: 26px;
}

.solution-grid svg {
  width: 34px;
  height: 34px;
  color: var(--holz);
}

h3 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: 0;
}

.solution-grid h3,
.product-copy h3,
.process-list h3,
.case-content h3 {
  margin-top: 18px;
  font-size: 1.3rem;
}

.solution-grid p,
.product-copy p,
.product-copy li,
.process-list p,
.proof-grid p,
.case-content p,
.case-content dd {
  color: var(--muted);
}

.section-products {
  background: var(--white);
}

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading-row.compact {
  align-items: center;
}

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

.product-card {
  display: flex;
  min-height: 100%;
  overflow: hidden;
  flex-direction: column;
}

.product-card-featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
}

.product-image,
.product-photo {
  display: grid;
  place-items: center;
  min-height: 260px;
  padding: 26px;
  background: #eef1ee;
  overflow: hidden;
}

.product-image.tall {
  min-height: 510px;
  background: #111614;
}

.product-image.tall img {
  max-height: 540px;
}

.product-image:not(.tall) img {
  width: auto;
  max-width: min(100%, 520px);
  height: auto;
  max-height: 285px;
  object-fit: contain;
}

.product-photo {
  min-height: 244px;
  background-image: url("assets/schneider-wallbox-install.jpg");
  background-position: center;
  background-size: cover;
}

.product-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 26px;
}

.product-brand {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.starvo-text {
  color: var(--starvo);
}

.schneider-text {
  color: var(--schneider);
}

.product-copy p {
  margin: 14px 0 18px;
}

.product-copy ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: auto 0 0;
  list-style: none;
}

.product-copy li {
  position: relative;
  padding-left: 22px;
}

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

.section-usecases {
  background: #eef1ed;
}

.segment-control {
  display: inline-flex;
  gap: 3px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.segment {
  min-width: 94px;
  min-height: 40px;
  padding: 0 14px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 5px;
  font-weight: 900;
  cursor: pointer;
}

.segment.is-active {
  color: var(--white);
  background: var(--ink);
}

.case-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.case-visual {
  min-height: 520px;
  background: var(--black);
}

.case-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
}

.case-label {
  margin: 0;
  color: var(--holz);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.case-content h3 {
  margin-top: 14px;
  font-size: clamp(1.7rem, 3.2vw, 3rem);
}

.case-content dl {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
}

.case-content dl div {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.case-content dt {
  color: var(--ink);
  font-weight: 900;
}

.case-content dd {
  margin: 4px 0 0;
}

.section-process {
  background: var(--white);
}

.process-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

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

.process-list article {
  min-height: 258px;
  padding: 24px;
}

.process-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 900;
}

.process-list h3 {
  min-height: 58px;
}

.process-list p {
  margin-bottom: 0;
}

.section-proof {
  color: var(--white);
  background: #141815;
}

.proof-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
  align-items: center;
}

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

.proof-grid article {
  min-height: 210px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.proof-grid strong {
  display: block;
  color: var(--holz);
  font-size: 1.45rem;
}

.proof-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.contact-section {
  padding: 96px 0;
  color: var(--white);
  background: var(--black);
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.72fr);
  gap: 44px;
  align-items: start;
}

.contact-copy > p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-methods {
  display: grid;
  gap: 13px;
  margin-top: 30px;
}

.contact-methods a,
.contact-methods span {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.84);
}

.contact-methods svg {
  flex: 0 0 auto;
  color: var(--holz);
}

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

.contact-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 800;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  color: var(--white);
  background: rgba(13, 16, 14, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  outline: none;
  padding: 10px 12px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--holz);
  box-shadow: 0 0 0 3px rgba(255, 91, 20, 0.18);
}

.contact-form option {
  color: var(--ink);
}

.site-footer {
  padding: 28px 0;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-inner img {
  width: 210px;
}

.footer-inner p {
  margin: 0 auto 0 0;
  color: var(--muted);
}

.footer-inner a {
  color: var(--holz);
  font-weight: 900;
}

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

  .product-card-featured {
    grid-column: 1 / -1;
  }

  .process-list,
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    min-height: 68px;
  }

  .brand img {
    width: min(220px, 54vw);
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .nav-links {
    position: fixed;
    top: 68px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 24px;
    background: rgba(245, 246, 241, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .nav-links a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }

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

  .site-header.is-open .icon-menu {
    display: none;
  }

  .site-header.is-open .icon-close {
    display: block;
  }

  .hero {
    min-height: min(700px, 76svh);
    padding-top: 96px;
  }

  .hero-media {
    background-image: url("assets/schneider-fleet-dc.jpg");
  }

  .hero-product {
    right: -92px;
    bottom: -48px;
    width: 360px;
    opacity: 0.48;
  }

  .hero-inner {
    min-height: calc(min(700px, 76svh) - 130px);
    padding-right: 0;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 11vw, 4.1rem);
  }

  .hero-lede {
    max-width: 620px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .brand-rail-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .rail-label {
    margin-right: 0;
  }

  .two-column,
  .section-heading-row,
  .proof-inner,
  .contact-inner,
  .case-panel {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 76px 0;
  }

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

  .case-visual {
    min-height: 300px;
  }
}

@media (max-width: 700px) {
  .section-inner {
    width: calc(100% - 28px);
    max-width: var(--max);
  }

  .hero {
    min-height: min(690px, 80svh);
    padding-top: 84px;
    padding-bottom: 18px;
  }

  .hero-inner {
    min-height: calc(min(690px, 80svh) - 102px);
  }

  .hero h1 {
    font-size: 2.08rem;
  }

  .hero-lede {
    margin-top: 14px;
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin-top: 18px;
  }

  .button {
    width: 100%;
    min-height: 42px;
  }

  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 16px;
  }

  .hero-metrics div {
    padding: 10px 8px;
  }

  .hero-metrics strong {
    font-size: 0.74rem;
  }

  .hero-metrics span {
    font-size: 0.66rem;
  }

  .solution-grid,
  .product-grid,
  .process-list,
  .proof-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .product-card-featured {
    display: flex;
  }

  .product-image.tall {
    min-height: 360px;
  }

  .product-image.tall img {
    max-height: 390px;
  }

  .section-heading-row.compact {
    gap: 22px;
  }

  .segment-control {
    width: 100%;
  }

  .segment {
    flex: 1;
    min-width: 0;
    padding-inline: 8px;
  }

  .case-content,
  .contact-form {
    padding: 22px;
  }
}

@media (max-width: 420px) {
  .site-header {
    padding-inline: 14px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-lede {
    font-size: 0.97rem;
  }

  .hero-metrics {
    margin-top: 24px;
  }

  .brand-chip {
    width: 100%;
  }
}

/* Visual refresh */
:root {
  --ink: #121815;
  --muted: #606b64;
  --line: #d9e2dc;
  --paper: #f3f6f3;
  --panel: #fbfcf8;
  --black: #0a0f0d;
  --shadow: 0 24px 70px rgba(12, 19, 15, 0.14);
  --soft-shadow: 0 14px 36px rgba(12, 19, 15, 0.1);
}

body {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0) 480px),
    var(--paper);
  text-rendering: optimizeLegibility;
}

.site-header {
  min-height: 76px;
  background: rgba(251, 252, 248, 0.9);
  box-shadow: 0 10px 34px rgba(16, 24, 19, 0.07);
}

.brand img {
  width: 226px;
}

.nav-links {
  gap: 5px;
  justify-content: center;
  padding: 4px;
  border: 1px solid rgba(18, 24, 21, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 7px;
  transition: background 160ms ease, color 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
  background: rgba(255, 91, 20, 0.1);
}

.nav-links a::after {
  display: none;
}

.header-cta {
  background: #101612;
  box-shadow: 0 10px 24px rgba(16, 22, 18, 0.18);
}

.hero {
  min-height: min(650px, calc(100svh - 74px));
  padding: 94px 0 18px;
  background: #0b100d;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.9), transparent 78%);
  pointer-events: none;
}

.hero-media {
  filter: saturate(0.92) contrast(1.04);
  transform: scale(1.02);
}

.hero-media::after {
  background:
    linear-gradient(90deg, rgba(9, 14, 12, 0.95) 0%, rgba(9, 14, 12, 0.84) 45%, rgba(9, 14, 12, 0.58) 100%),
    linear-gradient(180deg, rgba(9, 14, 12, 0.34), rgba(9, 14, 12, 0.94));
}

.hero-product {
  right: max(12px, calc((100vw - var(--max)) / 2 + 12px));
  bottom: -26px;
  z-index: 2;
  width: min(36vw, 460px);
  opacity: 0.94;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 340px);
  gap: 22px;
  align-items: center;
  min-height: 0;
  padding-right: 0;
}

.hero-copy {
  min-width: 0;
  max-width: 790px;
}

.hero h1 {
  max-width: 800px;
  font-size: clamp(2.6rem, 4.7vw, 4rem);
  overflow-wrap: break-word;
  text-wrap: balance;
}

.hero-lede {
  max-width: 710px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.84);
  overflow-wrap: break-word;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.hero-actions {
  margin-top: 24px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  font-weight: 850;
}

.hero-panel {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 290px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.07)),
    rgba(12, 17, 14, 0.58);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.panel-label {
  color: var(--holz);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  max-width: 280px;
  margin-top: 12px;
  color: var(--white);
  font-size: 1.72rem;
  line-height: 1.04;
}

.hero-panel p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.panel-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 22px;
}

.panel-list span {
  padding: 10px 11px;
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  background: rgba(0, 0, 0, 0.18);
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-panel {
  display: none;
}

.hero-metrics {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 0;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(16px);
}

.hero-metrics div {
  padding: 14px 18px;
  background: rgba(10, 15, 13, 0.44);
}

.hero-metrics strong {
  color: var(--white);
  font-size: 1.08rem;
}

.button-primary {
  background: linear-gradient(135deg, #ff6b22, #f04414);
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.brand-rail {
  background: #fbfcf8;
}

.brand-rail-inner {
  min-height: 106px;
}

.rail-label {
  max-width: 260px;
  color: #46524b;
}

.brand-chip {
  min-width: 170px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(14, 22, 18, 0.06);
}

.assurance-strip {
  background: #edf3ef;
  border-bottom: 1px solid var(--line);
}

.assurance-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 1px 0;
  background: var(--line);
}

.assurance-inner article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 14px;
  align-items: start;
  padding: 22px;
  background: #fbfcf8;
}

.assurance-inner span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--holz);
  border: 1px solid rgba(255, 91, 20, 0.28);
  border-radius: 8px;
  background: rgba(255, 91, 20, 0.09);
  font-size: 0.78rem;
  font-weight: 950;
}

.assurance-inner strong {
  line-height: 1.1;
}

.assurance-inner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.section {
  padding: 108px 0;
}

.section-copy h2,
.section-heading-row h2,
.proof-inner h2,
.contact-copy h2 {
  text-wrap: balance;
}

.solution-grid article,
.product-card,
.process-list article,
.proof-grid article,
.contact-form {
  box-shadow: 0 12px 32px rgba(14, 22, 18, 0.07);
}

.solution-grid article {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #fbfcf8);
}

.solution-grid article::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  content: "";
  background: var(--holz);
}

.solution-grid article:hover,
.product-card:hover,
.process-list article:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 46px rgba(14, 22, 18, 0.12);
}

.solution-grid article,
.product-card,
.process-list article {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.section-products {
  background:
    linear-gradient(180deg, #ffffff 0%, #f6f8f5 100%);
}

.section-heading-row {
  margin-bottom: 42px;
}

.product-grid {
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-card {
  border-color: rgba(18, 24, 21, 0.1);
  background: #fbfcf8;
}

.product-card-featured {
  grid-column: auto;
  min-height: 500px;
}

.product-image,
.product-photo {
  position: relative;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(230, 237, 232, 0.9)),
    #eef3ee;
}

.product-image {
  min-height: 285px;
  padding: 24px;
}

.product-image.tall {
  min-height: 450px;
}

.product-image.tall img {
  max-height: 450px;
}

.product-image::before,
.product-photo::before {
  position: absolute;
  inset: 18px;
  content: "";
  border: 1px solid rgba(18, 24, 21, 0.08);
  border-radius: 8px;
  pointer-events: none;
}

.product-image.tall {
  background:
    linear-gradient(135deg, rgba(255, 91, 20, 0.18), rgba(33, 170, 67, 0.12)),
    linear-gradient(180deg, #111714, #202923);
}

.product-image.tall img {
  filter: drop-shadow(0 26px 38px rgba(0, 0, 0, 0.44));
}

.product-photo {
  min-height: 260px;
}

.product-copy {
  padding: 28px;
}

.product-brand {
  width: fit-content;
  padding: 5px 9px;
  border-radius: 6px;
  background: rgba(18, 24, 21, 0.05);
}

.product-copy h3 {
  font-size: 1.42rem;
}

.product-copy li::before {
  top: 0.58em;
  width: 8px;
  height: 8px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 1px rgba(255, 91, 20, 0.3);
}

.section-usecases {
  background:
    linear-gradient(180deg, #edf3ef, #f7f8f4);
}

.segment-control {
  box-shadow: 0 10px 28px rgba(14, 22, 18, 0.08);
}

.case-panel {
  border: 1px solid rgba(18, 24, 21, 0.08);
}

.case-visual {
  position: relative;
}

.case-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent 55%, rgba(10, 15, 13, 0.18));
  pointer-events: none;
}

.case-panel[data-case-visual="product"] .case-visual {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(255, 91, 20, 0.18), rgba(33, 170, 67, 0.12)),
    #111714;
}

.case-panel[data-case-visual="product"] .case-visual img {
  width: min(58%, 340px);
  height: auto;
  max-height: 430px;
  padding: 0;
  object-fit: contain;
  filter: drop-shadow(0 28px 42px rgba(0, 0, 0, 0.42));
}

.case-content {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(251, 252, 248, 0.96)),
    var(--white);
}

.case-content dl div {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 16px;
  align-items: start;
}

.case-content dd {
  margin-top: 0;
}

.section-process {
  background: #fbfcf8;
}

.process-list {
  counter-reset: process;
}

.process-list article {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.process-list article::after {
  position: absolute;
  right: -24px;
  bottom: -42px;
  color: rgba(18, 24, 21, 0.045);
  content: attr(data-step);
  font-size: 8rem;
  font-weight: 950;
  line-height: 1;
  pointer-events: none;
}

.process-list article:nth-child(1)::after {
  content: "01";
}

.process-list article:nth-child(2)::after {
  content: "02";
}

.process-list article:nth-child(3)::after {
  content: "03";
}

.process-list article:nth-child(4)::after {
  content: "04";
}

.process-list span {
  border-radius: 8px;
  background: var(--holz);
  box-shadow: 0 12px 24px rgba(255, 91, 20, 0.22);
}

.section-proof {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 91, 20, 0.16), rgba(33, 170, 67, 0.08)),
    #111714;
}

.section-proof::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.6;
  pointer-events: none;
}

.proof-inner {
  position: relative;
}

.proof-grid article {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.contact-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(33, 170, 67, 0.12), rgba(255, 91, 20, 0.14)),
    #090f0c;
}

.contact-inner {
  position: relative;
}

.contact-methods {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.contact-form {
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.07)),
    rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(7, 11, 9, 0.72);
}

.site-footer {
  background: #fbfcf8;
}

@media (max-width: 1120px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr) 310px;
  }

  .hero-panel {
    min-height: 360px;
  }

  .assurance-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .site-header {
    min-height: 68px;
  }

  .nav-links {
    top: 68px;
    padding: 12px 20px 24px;
    border-radius: 0;
    background: rgba(251, 252, 248, 0.98);
  }

  .nav-links a {
    border-radius: 0;
  }

  .hero {
    min-height: auto;
    padding: 104px 0 28px;
  }

  .hero::before {
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 80%);
  }

  .hero-product {
    right: -120px;
    bottom: 34px;
    width: 360px;
    opacity: 0.22;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: 0;
  }

  .hero-panel {
    min-height: 0;
    padding: 22px;
  }

  .hero-panel strong {
    max-width: none;
  }

  .hero-metrics {
    margin-top: 0;
  }

  .brand-rail-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rail-label {
    grid-column: 1 / -1;
  }

  .brand-chip {
    width: 100%;
    min-width: 0;
  }

  .section {
    padding: 82px 0;
  }

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

  .case-content dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .case-panel[data-case-visual="product"] .case-visual {
    min-height: 340px;
  }

  .case-panel[data-case-visual="product"] .case-visual img {
    width: min(46%, 220px);
    max-height: 280px;
  }
}

@media (max-width: 700px) {
  .hero {
    padding-top: 92px;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 10.8vw, 3rem);
  }

  .hero-badges {
    gap: 7px;
    margin-top: 18px;
  }

  .hero-badges span {
    min-height: 32px;
    font-size: 0.75rem;
  }

  .panel-list {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    display: none;
  }

  .hero-product {
    display: none;
  }

  .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 4px;
  }

  .hero-metrics div:last-child {
    grid-column: 1 / -1;
  }

  .hero-metrics div {
    padding: 10px 8px;
  }

  .hero-metrics strong {
    font-size: 0.76rem;
  }

  .hero-metrics span {
    font-size: 0.65rem;
    line-height: 1.25;
    overflow-wrap: break-word;
  }

  .brand-rail-inner {
    grid-template-columns: 1fr;
  }

  .assurance-inner article {
    padding: 18px;
  }

  .product-card-featured {
    min-height: 0;
  }

  .product-image.tall {
    min-height: 360px;
  }

  .product-image.tall img {
    max-height: 390px;
  }

  .product-copy {
    padding: 24px;
  }

  .product-photo {
    min-height: 230px;
  }

  .case-visual::after {
    background: linear-gradient(180deg, transparent 55%, rgba(10, 15, 13, 0.2));
  }

  .footer-inner {
    gap: 12px;
  }
}

@media (max-width: 420px) {
  .brand img {
    width: min(198px, 58vw);
  }

  .hero-panel,
  .contact-form,
  .contact-methods {
    padding: 18px;
  }

  .hero h1 {
    font-size: 2.1rem;
  }
}
