:root {
  --green: #174936;
  --green-2: #2f7d58;
  --sage: #dfe9df;
  --clay: #c5c0b2;
  --black: #1f2522;
  --iron: #323b36;
  --metal: #65706a;
  --off: #f7f5ed;
  --light: #e3e0d6;
  --white: #ffffff;
  --shadow: 0 22px 58px rgba(31, 37, 34, 0.16);
  --shadow-hover: 0 30px 70px rgba(31, 73, 54, 0.2);
  --radius: 22px;
  --max: 1180px;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-display: "Arial Black", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
  --font-tech: "Arial Narrow", "Roboto Condensed", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--black);
  background:
    linear-gradient(180deg, #faf9f3 0%, var(--off) 48%, #eeeadf 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body.site-locked {
  overflow: hidden;
}

body.site-locked > :not(.password-gate) {
  pointer-events: none;
  user-select: none;
}

.password-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 22px;
  background:
    linear-gradient(rgba(15, 28, 21, 0.7), rgba(15, 28, 21, 0.72)),
    url("assets/steelmax-hero.jpg") center/cover;
}

.password-gate.is-unlocked {
  display: none;
}

.password-panel {
  width: min(440px, 100%);
  padding: clamp(24px, 5vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 28px;
  color: var(--black);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(16px);
}

.password-panel img {
  width: min(240px, 72vw);
  height: auto;
  margin-bottom: 24px;
}

.password-kicker {
  margin: 0 0 8px;
  color: var(--green-2);
  font-family: var(--font-tech);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.password-panel h1 {
  margin: 0 0 10px;
  color: var(--black);
  font-family: var(--font-display);
  font-size: clamp(34px, 8vw, 52px);
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.password-panel p:not(.password-kicker) {
  margin: 0 0 22px;
  color: var(--metal);
  font-size: 15px;
  line-height: 1.5;
}

.password-field {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: stretch;
}

.password-field input {
  min-height: 52px;
}

.password-field button {
  min-height: 52px;
  padding: 0 22px;
  border: none;
  border-radius: 999px;
  color: #ffffff;
  background: var(--green);
  font-family: var(--font-tech);
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(23, 73, 54, 0.24);
  transition: transform 180ms ease, background 180ms ease;
}

.password-field button:hover {
  background: var(--green-2);
  transform: translateY(-2px);
}

.password-error {
  display: block;
  min-height: 20px;
  margin-top: 10px;
  color: #9b1c1c;
  font-size: 13px;
  font-weight: 800;
}

body.menu-open::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 42;
  background: rgba(16, 29, 23, 0.36);
  backdrop-filter: blur(3px);
}

.mobile-progress {
  display: none;
}

img,
svg {
  display: block;
}

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

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(20px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: linear-gradient(180deg, rgba(23, 73, 54, 0.84), rgba(23, 73, 54, 0.18));
  transition: background 180ms ease, box-shadow 180ms ease, height 180ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  height: 68px;
  background: rgba(247, 245, 237, 0.94);
  color: var(--green);
  box-shadow: 0 14px 42px rgba(31, 37, 34, 0.14);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(250px, 42vw);
  min-width: 160px;
}

.brand img {
  width: 100%;
  height: auto;
  max-height: 52px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-tech);
  letter-spacing: 0.01em;
}

.nav a {
  position: relative;
}

.mobile-nav-top,
.mobile-nav-label,
.mobile-nav-card,
.mobile-only-nav,
.nav-icon {
  display: none;
}

.nav > a:not(.nav-cta):not(.nav-partner)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--green-2);
  transition: width 180ms ease;
}

.nav > a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 12px 18px;
  background: var(--green-2);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  transition: transform 180ms ease, background 180ms ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  background: #2a7f59;
}

.nav-partner {
  padding-inline: 16px;
  color: var(--green);
  background: var(--white);
  border-color: rgba(23, 73, 54, 0.18);
  box-shadow: 0 8px 24px rgba(31, 37, 34, 0.1);
}

.nav-partner:hover {
  color: var(--white);
  background: var(--black);
}

.site-header:not(.is-scrolled):not(.menu-active) .nav-partner {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: none;
}

.site-header:not(.is-scrolled):not(.menu-active) .nav-partner:hover {
  background: rgba(255, 255, 255, 0.24);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.14);
  color: inherit;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--green);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url("assets/steelmax-hero.jpg");
  background-size: cover;
  background-position: center right;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    radial-gradient(circle at 72% 42%, rgba(47, 125, 88, 0.16), rgba(23, 73, 54, 0.54) 38%, rgba(31, 37, 34, 0.42) 70%),
    linear-gradient(90deg, rgba(23, 73, 54, 0.92) 0%, rgba(23, 73, 54, 0.76) 43%, rgba(31, 37, 34, 0.3) 100%),
    linear-gradient(180deg, rgba(31, 37, 34, 0.2), rgba(31, 37, 34, 0.12));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 66px;
  max-width: 690px;
  margin-left: max(20px, calc((100vw - var(--max)) / 2));
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-2);
  font-family: var(--font-tech);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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

h1 {
  display: grid;
  gap: 4px;
  margin-bottom: 16px;
  font-size: clamp(56px, 6.8vw, 94px);
  line-height: 0.94;
  letter-spacing: 0;
}

h1 span {
  font-family: var(--font-display);
  letter-spacing: 0.01em;
}

h1 em {
  width: fit-content;
  padding: 4px 14px 6px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-family: var(--font-tech);
  font-size: clamp(26px, 3vw, 42px);
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.22em;
  line-height: 1;
}

h2 {
  margin-bottom: 18px;
  max-width: 860px;
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 em {
  display: inline;
  color: var(--green-2);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
}

h3 {
  margin-bottom: 10px;
  font-family: var(--font-tech);
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.hero-subtitle {
  max-width: 640px;
  margin-bottom: 18px;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.18;
  font-weight: 800;
}

.hero-subtitle em {
  color: #b8ddc5;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.55;
}

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

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  font-family: var(--font-tech);
  letter-spacing: 0.01em;
  line-height: 1.1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.btn:hover {
  transform: translateY(-3px) scale(1.02);
}

.btn-primary {
  color: var(--white);
  background: var(--green-2);
}

.btn-primary:hover {
  background: var(--green);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.16);
}

.btn-secondary.light {
  color: var(--black);
  border-color: rgba(23, 73, 54, 0.22);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 26px rgba(31, 37, 34, 0.08);
}

.btn-secondary.light:hover {
  color: var(--white);
  border-color: var(--green-2);
  background: var(--green-2);
}

.quick-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(920px, calc(100vw - 100px));
  max-width: 920px;
  margin-top: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  overflow: hidden;
  background: rgba(247, 245, 237, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.12);
}

.quick-points span {
  display: grid;
  align-content: start;
  gap: 6px;
  min-height: 106px;
  padding: 18px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 800;
  font-family: var(--font-tech);
  line-height: 1.15;
  transition: background 180ms ease, transform 180ms ease;
}

.quick-points span:last-child {
  border-right: none;
}

.quick-points span:hover {
  background: rgba(47, 125, 88, 0.22);
  transform: translateY(-2px);
}

.quick-points em {
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-tech);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.1;
  text-transform: uppercase;
}

section {
  padding: 96px 0;
}

.section-dark {
  color: var(--black);
  background:
    linear-gradient(135deg, rgba(47, 125, 88, 0.16), rgba(255, 255, 255, 0.42)),
    #edf1e8;
}

.section-muted {
  background: #f0ede3;
}

.certifications {
  background:
    radial-gradient(circle at 8% 10%, rgba(47, 125, 88, 0.15), transparent 32%),
    linear-gradient(180deg, #edf4ec 0%, #f8f6ee 100%);
}

.about {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.54)),
    #fbfaf5;
}

.process {
  background:
    radial-gradient(circle at 92% 12%, rgba(197, 192, 178, 0.42), transparent 30%),
    linear-gradient(180deg, #f1eee4 0%, #e8efe7 100%);
}

.services {
  background:
    linear-gradient(180deg, #fbfaf5 0%, #f3efe5 100%);
}

.why.section-dark {
  background:
    radial-gradient(circle at 90% 10%, rgba(47, 125, 88, 0.13), transparent 28%),
    linear-gradient(180deg, #eef3eb, #e5eadf);
  color: var(--black);
}

.why.section-dark .eyebrow {
  color: var(--green-2);
}

.why.section-dark .section-heading p:not(.eyebrow) {
  color: var(--metal);
}

.why.section-dark h2 em {
  color: var(--green-2);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading p:not(.eyebrow) {
  color: var(--metal);
  font-size: 18px;
}

.section-dark .section-heading p:not(.eyebrow) {
  color: var(--metal);
}

.carousel-shell {
  position: relative;
}

.cert-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  overflow: visible;
  padding: 8px 0 4px;
  scroll-snap-type: none;
  scrollbar-width: none;
}

.cert-card {
  min-height: 310px;
  padding: 24px;
  scroll-snap-align: start;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8f6ee 100%);
  color: var(--black);
  border-top: 5px solid var(--green-2);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.cert-card:hover,
.service-card:hover {
  transform: translateY(-8px) rotate(0.25deg);
  box-shadow: var(--shadow-hover);
}

.cert-icon,
.service-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  color: var(--green-2);
  background: rgba(15, 61, 46, 0.08);
  border-radius: 16px;
  font-weight: 950;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

.cert-icon svg,
.service-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cert-card p {
  color: var(--metal);
}

.cert-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--green);
  background: #e9f2e7;
  font-family: var(--font-tech);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cert-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.cert-meta span {
  padding: 8px 10px;
  border: 1px solid rgba(23, 73, 54, 0.12);
  border-radius: 999px;
  color: var(--green);
  background: rgba(255, 255, 255, 0.72);
  font-family: var(--font-tech);
  font-size: 12px;
  font-weight: 900;
}

.cert-card h3,
.service-card h3,
.why-grid h3 {
  font-family: var(--font-tech);
  font-size: 22px;
}

.doc-slot {
  display: inline-grid;
  place-items: center;
  min-height: 48px;
  margin-top: 22px;
  padding: 0 18px;
  border: 1px solid rgba(15, 61, 46, 0.18);
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease;
}

.doc-slot:hover {
  background: var(--green-2);
  transform: translateY(-2px);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(23, 73, 54, 0.18);
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  transform: translateY(-50%);
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.carousel-btn:hover {
  background: var(--green-2);
  transform: translateY(-50%) scale(1.04);
}

.carousel-btn svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.carousel-btn.prev {
  left: -18px;
}

.carousel-btn.next {
  right: -18px;
}

.certifications .carousel-btn {
  display: none;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 58px;
  align-items: center;
}

.about p {
  color: var(--metal);
  font-size: 17px;
}

.about-panel {
  position: relative;
  display: grid;
  gap: 18px;
}

.metal-photo {
  min-height: 390px;
  background:
    linear-gradient(180deg, rgba(23, 73, 54, 0.02), rgba(23, 73, 54, 0.42)),
    url("assets/steelmax-hero.jpg") center / cover;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 0;
  margin-left: 0;
  background: transparent;
}

.stats-grid strong {
  min-height: 122px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
  background: linear-gradient(145deg, #ffffff, #ebe8dc);
  color: var(--black);
  border: 1px solid rgba(23, 73, 54, 0.12);
  border-radius: 22px;
  box-shadow: 0 16px 40px rgba(31, 37, 34, 0.08);
  line-height: 1.2;
  font-family: var(--font-tech);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.stats-grid strong:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.stats-grid span {
  margin-bottom: 6px;
  color: var(--green-2);
  font-size: 34px;
  font-family: var(--font-display);
  line-height: 1;
}

.process-grid,
.why-grid,
.services-grid {
  display: grid;
}

.process-grid {
  position: relative;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding-top: 34px;
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 82px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(23, 73, 54, 0.32) 10% 90%, transparent);
}

.process-grid article {
  position: relative;
  min-height: 320px;
  padding: 128px 26px 24px;
  border-top: 1px solid rgba(23, 73, 54, 0.14);
  transition: transform 220ms ease;
}

.process-grid article:nth-child(even) {
  margin-top: 72px;
}

.process-grid article::after {
  content: "";
  position: absolute;
  top: 22px;
  left: 22px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(31, 37, 34, 0.12);
  transition: transform 220ms ease, background 220ms ease;
}

.process-grab {
  position: absolute;
  top: 31px;
  left: 31px;
  z-index: 1;
  width: 74px;
  height: 74px;
  fill: none;
  stroke: var(--green);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.68;
  transition: transform 240ms ease, opacity 240ms ease, stroke 240ms ease;
}

.process-grid article h3 {
  font-size: 27px;
}

.process-grid article p,
.service-card p,
.why-grid p {
  color: var(--metal);
}

.process-grid article:hover {
  transform: translateY(-8px);
}

.process-grid article:hover::after {
  background: #dcebdc;
  transform: scale(1.08);
}

.process-grid article:hover .process-grab {
  opacity: 1;
  stroke: var(--green-2);
  transform: rotate(-7deg) scale(1.08);
}

.services-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 18px;
}

.service-card {
  position: relative;
  grid-column: span 4;
  min-height: 270px;
  overflow: hidden;
  padding: 30px;
  background: #ffffff;
  border: 1px solid rgba(23, 73, 54, 0.1);
  border-radius: 24px;
  box-shadow: 0 18px 52px rgba(31, 37, 34, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:nth-child(1) {
  grid-column: span 7;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(23, 73, 54, 0.06), rgba(23, 73, 54, 0.92)),
    url("assets/steelmax-hero.jpg") center / cover;
}

.service-card:nth-child(2) {
  grid-column: span 5;
  min-height: 360px;
  color: var(--white);
  background: var(--green);
}

.service-card:nth-child(6),
.service-card:nth-child(7) {
  grid-column: span 6;
  min-height: 240px;
}

.service-card:nth-child(1) p,
.service-card:nth-child(2) p {
  color: rgba(255, 255, 255, 0.78);
}

.service-card:nth-child(1) h3,
.service-card:nth-child(2) h3 {
  max-width: 480px;
  color: var(--white);
  font-size: 32px;
}

.service-card:nth-child(1) .service-icon,
.service-card:nth-child(2) .service-icon {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
}

.service-card:nth-child(3) {
  background: #e4ebe2;
}

.service-card:nth-child(4) {
  background: #f0eadc;
}

.service-card:nth-child(5) {
  background: #e9ece7;
}

.service-card:hover {
  z-index: 2;
  border-color: rgba(31, 107, 74, 0.34);
  box-shadow: var(--shadow-hover);
  transform: translateY(-8px);
}

.service-card:hover .service-icon {
  transform: translateY(-4px) rotate(-3deg) scale(1.06);
  background: rgba(47, 125, 88, 0.16);
}

.partner {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(61, 127, 88, 0.1), transparent 34%),
    #f6f8f1;
}

.partner-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.12fr);
  gap: 24px;
  align-items: center;
  border: 1px solid rgba(23, 73, 54, 0.12);
  border-radius: 30px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9));
  box-shadow: 0 26px 70px rgba(24, 44, 34, 0.1);
}

.partner-brand {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid rgba(23, 73, 54, 0.1);
  border-radius: 22px;
  color: var(--green);
  background:
    radial-gradient(circle at 82% 12%, rgba(42, 176, 221, 0.16), transparent 28%),
    radial-gradient(circle at 8% 90%, rgba(58, 183, 76, 0.18), transparent 32%),
    #ffffff;
}

.partner-brand .eyebrow {
  color: var(--green);
}

.partner-logo-card {
  display: grid;
  gap: 18px;
  align-content: center;
  min-height: 182px;
  margin: 18px 0;
  padding: 24px;
  border: 1px solid rgba(25, 127, 71, 0.16);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(238, 248, 240, 0.9));
  box-shadow: 0 18px 42px rgba(24, 44, 34, 0.08);
}

.partner-logo {
  width: min(330px, 100%);
  height: auto;
}

.partner-logo-card span {
  width: fit-content;
  padding: 9px 12px;
  border-radius: 999px;
  color: #174936;
  background: #e8f4e8;
  font-family: var(--font-tech);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.partner-lead {
  max-width: 410px;
  margin-bottom: 0;
  color: var(--black);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
}

.partner-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px 32px;
}

.partner-content > p {
  max-width: 680px;
  color: var(--metal);
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.22;
  letter-spacing: -0.02em;
}

.partner-services {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 30px;
}

.partner-services span {
  padding: 11px 14px;
  border: 1px solid rgba(23, 73, 54, 0.16);
  border-radius: 999px;
  color: var(--green);
  background: #f0f5ee;
  font-family: var(--font-tech);
  font-size: 13px;
  font-weight: 900;
}

.partner-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.partner-actions span {
  max-width: 260px;
  color: #66736c;
  font-size: 14px;
  line-height: 1.35;
}

.why-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.45fr);
  gap: 56px;
  align-items: stretch;
}

.why-statement {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 470px;
  padding: 38px;
  border-radius: 32px 8px 32px 8px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(23, 73, 54, 0.08), rgba(23, 73, 54, 0.88)),
    url("assets/steelmax-hero.jpg") 72% center / cover;
  box-shadow: var(--shadow);
}

.why-statement strong {
  font-family: var(--font-display);
  font-size: clamp(84px, 10vw, 142px);
  line-height: 0.8;
}

.why-statement span {
  margin-top: 18px;
  font-family: var(--font-tech);
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

.why-statement p {
  max-width: 300px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.why-grid {
  grid-template-columns: 1fr;
  align-content: stretch;
  gap: 14px;
}

.why-grid article {
  display: grid;
  grid-template-columns: minmax(170px, 0.8fr) minmax(220px, 1.2fr);
  gap: 22px;
  align-items: center;
  padding: 26px 28px;
  color: var(--black);
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(23, 73, 54, 0.12);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(31, 37, 34, 0.05);
  transition: padding 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.why-grid article:last-child {
  border-bottom: 1px solid rgba(23, 73, 54, 0.12);
}

.why-grid article:hover {
  padding-left: 34px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 42px rgba(31, 73, 54, 0.1);
  transform: translateY(-3px);
}

.why-grid h3 {
  margin: 0;
  color: var(--black);
}

.why-grid p {
  margin: 0;
}

.contact {
  background:
    radial-gradient(circle at 86% 14%, rgba(47, 125, 88, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7f3e9 58%, #ece4d2 100%);
  border-top: 1px solid rgba(23, 73, 54, 0.12);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 72px;
  align-items: stretch;
}

.contact-info p {
  color: var(--metal);
  font-size: 17px;
}

.contact-info {
  position: relative;
  padding: 38px;
  border-radius: 8px 34px 8px 34px;
  color: var(--white);
  background: var(--green);
  box-shadow: var(--shadow);
}

.contact-info .eyebrow {
  color: #a9d2b8;
}

.contact-info h2,
.contact-info h2 em {
  color: var(--white);
}

.contact-info > p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-info .btn-secondary.light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.contact-info .btn-secondary.light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.16);
}

.contact-card {
  margin-top: 28px;
  padding: 22px 0;
  color: var(--white);
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.contact-card a,
.contact-card span,
.footer a {
  display: block;
  width: fit-content;
  margin-top: 9px;
  color: inherit;
}

.contact-card span {
  width: auto;
  max-width: 100%;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  line-height: 1.35;
}

.contact-card a:hover,
.footer a:hover {
  color: #a9d2b8;
}

.footer-link-button {
  display: block;
  width: fit-content;
  margin-top: 9px;
  padding: 0;
  border: none;
  color: inherit;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.footer-link-button:hover {
  color: #a9d2b8;
}

.contact-form {
  padding: 10px 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.form-row {
  margin-bottom: 16px;
}

.split-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: block;
  margin-bottom: 7px;
  font-size: 13px;
  font-weight: 900;
  font-family: var(--font-tech);
  letter-spacing: 0.02em;
  color: var(--iron);
}

input,
select,
textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(23, 73, 54, 0.3);
  background: transparent;
  padding: 14px 4px;
  color: var(--black);
  font: inherit;
  border-radius: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--green-2);
  background: rgba(255, 255, 255, 0.46);
  box-shadow: 0 4px 0 rgba(31, 107, 74, 0.12);
}

textarea {
  resize: vertical;
}

.privacy-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 18px 0;
  color: var(--metal);
  font-weight: 700;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: 5px;
  accent-color: var(--green-2);
}

.form-submit {
  width: 100%;
  border: none;
  cursor: pointer;
}

.form-error,
.form-success {
  display: none;
  margin: 10px 0 16px;
  font-weight: 800;
}

.form-error {
  color: #9b1c1c;
}

.form-success {
  padding: 14px;
  background: rgba(31, 107, 74, 0.1);
  color: var(--green);
  border-radius: 16px;
}

.form-error.is-visible,
.form-success.is-visible {
  display: block;
}

.footer {
  padding: 58px 0 26px;
  color: rgba(247, 245, 237, 0.82);
  background:
    linear-gradient(135deg, rgba(47, 125, 88, 0.18), rgba(31, 37, 34, 0)),
    var(--iron);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 0.8fr 0.8fr;
  gap: 32px;
}

.footer h2,
.footer h3 {
  color: var(--white);
}

.footer h2 {
  font-family: var(--font-tech);
  font-size: 28px;
}

.footer-logo {
  width: min(260px, 78vw);
  height: auto;
  margin-bottom: 18px;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.22));
}

.footer p {
  max-width: 390px;
}

.footer-bottom {
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
}

.cookie-consent {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  align-items: end;
  padding: 22px;
  background: rgba(15, 24, 20, 0.34);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.cookie-consent.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.cookie-panel {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 22px;
  border: 1px solid rgba(23, 73, 54, 0.14);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 30px 90px rgba(13, 28, 20, 0.28);
}

.cookie-kicker {
  margin: 0 0 8px;
  color: var(--green-2);
  font-family: var(--font-tech);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cookie-copy h2 {
  margin: 0 0 10px;
  color: var(--black);
  font-family: var(--font-tech);
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1;
}

.cookie-copy p:not(.cookie-kicker) {
  margin: 0;
  color: var(--metal);
  font-size: 15px;
  line-height: 1.55;
}

.cookie-copy a {
  color: var(--green);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-preferences {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.cookie-preferences[hidden] {
  display: none;
}

.cookie-preferences label {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid rgba(23, 73, 54, 0.12);
  border-radius: 16px;
  background: #f7faf4;
}

.cookie-preferences input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--green-2);
}

.cookie-preferences span {
  color: var(--metal);
  font-size: 14px;
  line-height: 1.4;
}

.cookie-preferences strong {
  display: block;
  color: var(--black);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  margin-top: 20px;
}

.cookie-btn,
.cookie-link {
  min-height: 44px;
  border-radius: 999px;
  font-family: var(--font-tech);
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.cookie-btn {
  padding: 0 18px;
  border: 1px solid rgba(23, 73, 54, 0.18);
}

.cookie-btn.primary {
  color: #ffffff;
  background: var(--green-2);
}

.cookie-btn.secondary {
  color: #ffffff;
  background: var(--green);
}

.cookie-btn.ghost {
  color: var(--green);
  background: #ffffff;
}

.cookie-link {
  padding: 0 8px;
  border: none;
  color: var(--green);
  background: transparent;
}

.legal-body {
  min-height: 100vh;
  color: var(--black);
  background:
    radial-gradient(circle at 12% 8%, rgba(47, 125, 88, 0.12), transparent 28%),
    linear-gradient(180deg, #fbfaf5 0%, #f2efe5 100%);
}

.legal-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(var(--max), calc(100% - 48px));
  margin: 18px auto 0;
  padding: 14px 16px;
  border: 1px solid rgba(23, 73, 54, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 50px rgba(31, 37, 34, 0.12);
  backdrop-filter: blur(14px);
}

.legal-brand img {
  width: min(210px, 46vw);
  height: auto;
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.legal-nav a {
  padding: 10px 14px;
  border: 1px solid rgba(23, 73, 54, 0.12);
  border-radius: 999px;
  color: var(--green);
  background: #ffffff;
  font-family: var(--font-tech);
  font-size: 13px;
  font-weight: 900;
}

.legal-nav a:hover {
  color: #ffffff;
  background: var(--green);
}

.legal-main {
  width: min(980px, calc(100% - 48px));
  margin: 48px auto 76px;
}

.legal-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 5vw, 54px);
  border-radius: 30px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(23, 73, 54, 0.96), rgba(47, 125, 88, 0.86)),
    url("assets/steelmax-hero.jpg") center/cover;
  box-shadow: var(--shadow);
}

.legal-hero::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 280px;
  height: 280px;
  border: 42px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.legal-hero .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.legal-hero h1 {
  position: relative;
  z-index: 1;
  margin: 10px 0 12px;
  font-family: var(--font-display);
  font-size: clamp(40px, 8vw, 78px);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.legal-hero p:not(.eyebrow) {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.45;
}

.legal-hero span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-top: 22px;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--green);
  background: #ffffff;
  font-family: var(--font-tech);
  font-size: 12px;
  font-weight: 900;
}

.legal-content {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.legal-section {
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(23, 73, 54, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 38px rgba(31, 37, 34, 0.07);
}

.legal-section h2 {
  margin: 0 0 12px;
  color: var(--green);
  font-family: var(--font-tech);
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.05;
}

.legal-section p {
  margin: 0;
  color: var(--iron);
  line-height: 1.68;
}

.legal-section p + p {
  margin-top: 12px;
}

.legal-section a {
  color: var(--green);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.legal-list li {
  position: relative;
  padding: 14px 14px 14px 42px;
  border-radius: 16px;
  color: var(--iron);
  background: #f7faf4;
}

.legal-list li::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 18px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green-2);
}

.legal-footer {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 34px 24px;
  border-top: 1px solid rgba(23, 73, 54, 0.12);
  color: var(--iron);
  background: #ffffff;
}

.legal-footer img {
  width: min(210px, 58vw);
  height: auto;
}

.legal-footer div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
}

.legal-footer a {
  color: var(--green);
  font-family: var(--font-tech);
  font-weight: 900;
}

.legal-footer p {
  margin: 0;
  color: var(--metal);
  font-size: 13px;
  text-align: center;
}

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

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .site-header.menu-active {
    z-index: 70;
    background: transparent;
    color: var(--green);
    box-shadow: none;
    backdrop-filter: none;
  }

  .site-header.menu-active .brand {
    color: var(--green);
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 76;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(31, 37, 34, 0.12);
  }

  .site-header.menu-active .menu-toggle {
    opacity: 0;
    pointer-events: none;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    z-index: 75;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: min(338px, calc(100vw - 54px));
    min-height: 100dvh;
    gap: 10px;
    padding: 18px 12px 0;
    color: var(--black);
    background: #ffffff;
    border-left: 1px solid rgba(23, 73, 54, 0.1);
    border-radius: 0;
    box-shadow: -18px 0 48px rgba(14, 31, 23, 0.12);
    transform: translateX(100%);
    opacity: 1;
    pointer-events: auto;
    transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .nav.is-open {
    transform: translateX(0);
  }

  .nav a {
    display: flex;
    width: 100%;
    min-height: 48px;
    align-items: center;
    gap: 12px;
    margin: 0;
    padding: 0 12px;
    border: none;
    border-radius: 10px;
    color: var(--black);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0;
    background: transparent;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
  }

  .mobile-only-nav {
    display: flex;
  }

  .mobile-nav-top {
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    padding: 0 6px 10px;
    border-bottom: 1px solid rgba(23, 73, 54, 0.07);
  }

  .mobile-nav-brands {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    margin-right: 10px;
  }

  .steelmax-menu-logo,
  .ecomax-menu-logo {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    justify-content: flex-start;
    border-radius: 999px;
    font-family: var(--font-tech);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.05em;
  }

  .steelmax-menu-logo {
    padding: 0;
    color: var(--black);
    background: transparent;
  }

  .ecomax-menu-logo {
    padding: 0 11px;
    color: var(--green);
    background: #e9f2e7;
  }

  .mobile-nav-close {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 999px;
    color: #66736c;
    background: #f4f7f2;
    box-shadow: none;
    font-size: 18px;
    font-weight: 900;
  }

  .mobile-nav-label {
    display: block;
    margin: 0 12px 4px;
    color: #748179;
    font-family: var(--font-tech);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .nav-icon {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: #e8f1e6;
    font-size: 14px;
    box-shadow: inset 0 0 0 1px rgba(23, 73, 54, 0.06);
  }

  .nav a:not(.nav-cta):not(.nav-partner):hover,
  .nav a:not(.nav-cta):not(.nav-partner):focus-visible {
    background: #e9f2e7;
    color: var(--green);
    transform: translateX(-2px);
  }

  .nav a:not(.nav-cta):not(.nav-partner):hover .nav-icon,
  .nav a:not(.nav-cta):not(.nav-partner):focus-visible .nav-icon {
    background: var(--green-2);
  }

  .nav a.is-menu-active {
    background: #dce8f1;
    color: #075996;
    transform: none;
    box-shadow: none;
  }

  .nav a.is-menu-active .nav-icon {
    color: #ffffff;
    background: #075996;
  }

  .nav-cta {
    display: none !important;
    min-height: 44px;
    margin: 34px 20px 0;
    padding: 0 18px !important;
    color: #ffffff !important;
    background: var(--green-2);
    text-align: center;
    border-bottom: none !important;
    border-radius: 12px;
    box-shadow: none;
    font-family: var(--font-tech);
    font-size: 14px;
  }

  .nav-partner {
    display: none !important;
    margin-top: 8px;
    color: var(--green) !important;
    background: #f2f6f1;
    border: 1px solid rgba(23, 73, 54, 0.18);
    box-shadow: none;
  }

  .site-header:not(.is-scrolled):not(.menu-active) .nav-partner {
    color: var(--green) !important;
    background: #f2f6f1;
    border-color: rgba(23, 73, 54, 0.18);
    box-shadow: none;
  }

  .mobile-nav-card {
    display: block;
    margin: auto 0 14px;
    padding: 18px 16px 16px;
    border-radius: 14px;
    color: #ffffff;
    background:
      radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.18), transparent 38%),
      linear-gradient(135deg, #075996, #174936);
    box-shadow: 0 16px 32px rgba(7, 89, 150, 0.16);
  }

  .mobile-nav-card p {
    margin: 0 0 2px;
    color: #ffffff;
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.2;
  }

  .mobile-nav-card span {
    display: block;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 12px;
    font-weight: 800;
  }

  .mobile-nav-card a {
    display: flex;
    min-height: 40px;
    justify-content: center;
    padding: 0 14px;
    color: #075996;
    background: #ffffff;
    border: none;
    border-radius: 12px;
    font-family: var(--font-tech);
    font-size: 14px;
    font-weight: 900;
  }

  .mobile-nav-card a:hover,
  .mobile-nav-card a:focus-visible {
    color: #ffffff;
    background: var(--green-2);
  }

  .menu-active .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-active .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .menu-active .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    min-height: 660px;
  }

  .hero-content {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
  }

  .split,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

  .service-card,
  .service-card:nth-child(1),
  .service-card:nth-child(2),
  .service-card:nth-child(6),
  .service-card:nth-child(7) {
    grid-column: span 1;
  }

  .why-layout {
    grid-template-columns: 1fr;
  }

  .partner-layout {
    grid-template-columns: 1fr;
  }

  .partner-brand {
    min-height: 280px;
  }

  .why-statement {
    min-height: 360px;
  }

  .carousel-btn {
    display: none;
  }
}

@media (max-width: 680px) {
  .mobile-progress {
    position: fixed;
    right: 14px;
    bottom: 14px;
    z-index: 48;
    display: grid;
    grid-template-columns: auto 72px;
    gap: 10px;
    align-items: center;
    min-width: 162px;
    padding: 10px 12px;
    border: 1px solid rgba(23, 73, 54, 0.14);
    border-radius: 18px;
    color: var(--green);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 14px 38px rgba(31, 37, 34, 0.16);
    backdrop-filter: blur(14px);
    pointer-events: none;
  }

  .mobile-progress > span {
    overflow: hidden;
    font-family: var(--font-tech);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .mobile-progress i {
    position: relative;
    display: block;
    height: 3px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(23, 73, 54, 0.14);
  }

  .mobile-progress b {
    display: block;
    width: 14%;
    height: 100%;
    border-radius: inherit;
    background: var(--green-2);
    transition: width 300ms ease;
  }

  .container {
    width: min(var(--max), calc(100% - 28px));
  }

  .password-field {
    grid-template-columns: 1fr;
  }

  .password-field button {
    width: 100%;
  }

  .legal-header {
    position: static;
    width: calc(100% - 24px);
    margin-top: 12px;
    padding: 12px;
    border-radius: 18px;
    flex-direction: column;
    align-items: flex-start;
  }

  .legal-brand img {
    width: min(190px, 64vw);
  }

  .legal-nav {
    width: 100%;
    justify-content: flex-start;
  }

  .legal-nav a {
    flex: 1 1 auto;
    text-align: center;
  }

  .legal-main {
    width: calc(100% - 24px);
    margin: 24px auto 46px;
  }

  .legal-hero {
    padding: 26px 20px;
    border-radius: 22px;
  }

  .legal-hero h1 {
    font-size: clamp(36px, 12vw, 54px);
  }

  .legal-section {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .legal-list li {
    padding: 13px 12px 13px 36px;
  }

  .site-header {
    height: 82px;
    padding: 0 14px;
    color: var(--green);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 34px rgba(31, 37, 34, 0.08);
    backdrop-filter: blur(12px);
  }

  .site-header.is-scrolled,
  .site-header.menu-active {
    height: 76px;
  }

  .hero {
    min-height: 0;
    align-items: start;
    padding: 116px 0 326px;
    color: var(--black);
    background:
      radial-gradient(circle at 78% 8%, rgba(47, 125, 88, 0.14), transparent 28%),
      linear-gradient(rgba(23, 73, 54, 0.045) 1px, transparent 1px),
      linear-gradient(90deg, rgba(23, 73, 54, 0.045) 1px, transparent 1px),
      #fbfaf5;
    background-size: auto, 34px 34px, 34px 34px, auto;
  }

  .certifications {
    color: var(--white);
    background:
      linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
      linear-gradient(155deg, #174936, #293b33);
    background-size: 34px 34px, 34px 34px, auto;
  }

  .certifications .eyebrow {
    color: var(--green);
  }

  .certifications h2,
  .certifications h2 em {
    color: var(--white);
  }

  .certifications .section-heading p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.7);
  }

  .certifications .cert-card {
    border-top: none;
    background: #fbfaf5;
  }

  .about {
    background: #fbfaf5;
  }

  .about .split {
    display: flex;
    flex-direction: column;
    gap: 34px;
  }

  .about-panel {
    order: -1;
    width: 100%;
    margin-left: 0;
  }

  .about .metal-photo {
    min-height: 390px;
    border-radius: 32px;
    box-shadow: 0 18px 46px rgba(31, 37, 34, 0.14);
  }

  .about .stats-grid {
    width: calc(100% - 28px);
    margin: -68px auto 0;
    grid-template-columns: 1fr 1fr;
    z-index: 2;
  }

  .about .stats-grid strong {
    min-height: 110px;
    padding: 16px;
    border-radius: 18px;
    box-shadow: 0 16px 38px rgba(31, 37, 34, 0.13);
  }

  .about .stats-grid span {
    font-size: 29px;
  }

  .process {
    background:
      radial-gradient(circle at 100% 0%, rgba(197, 192, 178, 0.42), transparent 32%),
      linear-gradient(180deg, #f0eadc 0%, #edf3ec 100%);
  }

  .services {
    background: #fbfaf5;
  }

  .partner {
    background:
      linear-gradient(rgba(23, 73, 54, 0.035) 1px, transparent 1px),
      linear-gradient(90deg, rgba(23, 73, 54, 0.035) 1px, transparent 1px),
      #f1efe5;
    background-size: 32px 32px, 32px 32px, auto;
  }

  .why.section-dark {
    background: linear-gradient(180deg, #eef3eb 0%, #e4e9de 100%);
  }

  .contact {
    background:
      linear-gradient(rgba(23, 73, 54, 0.035) 1px, transparent 1px),
      linear-gradient(90deg, rgba(23, 73, 54, 0.035) 1px, transparent 1px),
      linear-gradient(180deg, #ffffff 0%, #f6f0e3 100%);
    background-size: 32px 32px, 32px 32px, auto;
  }

  .hero-bg {
    inset: auto 14px 34px;
    height: 254px;
    border-radius: 34px;
    background-position: center;
    box-shadow: 0 20px 54px rgba(31, 37, 34, 0.16);
    opacity: 0.86;
    transform: none;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(251, 250, 245, 0) 0%, rgba(251, 250, 245, 0) 54%, rgba(23, 73, 54, 0.18) 100%);
  }

  .hero-content {
    padding-top: 0;
  }

  .eyebrow {
    width: fit-content;
    max-width: 100%;
    margin-bottom: 20px;
    padding: 10px 14px;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(31, 37, 34, 0.08);
    color: var(--green);
    font-size: 11px;
  }

  h1 {
    max-width: 360px;
    color: var(--black);
    gap: 6px;
    font-size: clamp(50px, 15.2vw, 68px);
    line-height: 0.96;
  }

  h1 em {
    padding: 5px 12px 6px;
    border-color: rgba(23, 73, 54, 0.2);
    background: rgba(255, 255, 255, 0.72);
    color: var(--green);
    font-size: 20px;
    letter-spacing: 0.18em;
  }

  .hero-subtitle {
    max-width: 100%;
    color: var(--green);
    font-size: 24px;
    line-height: 1.14;
  }

  .hero-subtitle em {
    color: var(--green-2);
  }

  .hero-copy {
    max-width: 100%;
    color: var(--metal);
    font-size: 17px;
    line-height: 1.55;
  }

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

  .hero-actions .btn-primary {
    color: var(--white);
  }

  .hero-actions .btn-secondary {
    color: var(--green);
    border-color: rgba(23, 73, 54, 0.2);
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(31, 37, 34, 0.08);
  }

  h2 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(31px, 8.6vw, 38px);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  h2 em {
    display: block;
    margin-top: 2px;
    font-size: 0.94em;
  }

  section {
    padding: 72px 0;
    scroll-margin-top: 104px;
  }

  .cert-track {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: calc(100vw - 28px);
    gap: 14px;
    overflow-x: auto;
    overflow-y: visible;
    padding: 8px 14px 18px;
    margin: 0 -14px;
    scroll-padding-left: 14px;
    scroll-snap-type: x mandatory;
    touch-action: pan-x pan-y;
    -webkit-overflow-scrolling: touch;
  }

  .cert-card {
    width: 100%;
    min-height: 330px;
    scroll-snap-align: start;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .quick-points {
    display: none;
  }

  .process-grid,
  .services-grid,
  .split-fields,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    gap: 0;
    padding-top: 0;
  }

  .process-grid::before {
    top: 0;
    bottom: 0;
    left: 45px;
    right: auto;
    width: 2px;
    height: auto;
    background: rgba(23, 73, 54, 0.2);
  }

  .process-grid article,
  .process-grid article:nth-child(even) {
    min-height: 190px;
    margin-top: 0;
    padding: 24px 0 28px 112px;
    border-top: none;
    border-bottom: 1px solid rgba(23, 73, 54, 0.13);
  }

  .process-grid article::after {
    top: 24px;
    left: 0;
    width: 90px;
    height: 90px;
  }

  .process-grab {
    top: 32px;
    left: 8px;
    width: 74px;
    height: 74px;
  }

  .process-grid article {
    border-radius: 20px;
    transition: background 260ms ease, box-shadow 260ms ease, transform 260ms ease;
  }

  .process-grid article h3,
  .process-grid article p {
    transition: color 260ms ease, transform 260ms ease;
  }

  .process-grid article.is-active-step {
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 18px 42px rgba(31, 73, 54, 0.12);
    transform: translateX(4px);
  }

  .process-grid article.is-active-step::after {
    background: var(--green-2);
    box-shadow: 0 18px 42px rgba(31, 73, 54, 0.24);
    transform: scale(1.06);
  }

  .process-grid article.is-active-step .process-grab {
    stroke: var(--white);
    opacity: 1;
    transform: rotate(-7deg) scale(1.08);
  }

  .process-grid article.is-active-step h3 {
    color: var(--green);
    transform: translateX(5px);
  }

  .process-grid article.is-active-step p {
    color: var(--black);
  }

  .service-card,
  .service-card:nth-child(1),
  .service-card:nth-child(2),
  .service-card:nth-child(6),
  .service-card:nth-child(7) {
    grid-column: auto;
    min-height: 270px;
  }

  .service-card:nth-child(1),
  .service-card:nth-child(2) {
    min-height: 330px;
  }

  .services .container {
    width: 100%;
  }

  .services .section-heading {
    width: calc(100% - 28px);
    margin-right: auto;
    margin-left: auto;
  }

  .services-grid {
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: calc(100vw - 28px);
    gap: 14px;
    overflow-x: auto;
    overflow-y: visible;
    padding: 4px 14px 30px;
    scroll-padding-left: 14px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    touch-action: pan-x pan-y;
    -webkit-overflow-scrolling: touch;
  }

  .services-grid::-webkit-scrollbar {
    display: none;
  }

  .service-card {
    width: 100%;
    scroll-snap-align: start;
  }

  .partner .container {
    width: min(var(--max), calc(100% - 28px));
  }

  .partner-layout {
    border: 1px solid rgba(23, 73, 54, 0.12);
    border-radius: 30px;
    padding: 10px;
    background: #ffffff;
    box-shadow: 0 18px 46px rgba(31, 37, 34, 0.08);
  }

  .partner-brand {
    min-height: auto;
    margin: 0;
    padding: 20px;
    border-radius: 22px;
  }

  .partner-logo-card {
    min-height: auto;
    margin: 16px 0;
    padding: 18px;
    border-radius: 18px;
  }

  .partner-logo-card span {
    font-size: 11px;
  }

  .partner-lead {
    font-size: 16px;
  }

  .partner-content {
    padding: 24px 10px 10px;
  }

  .partner-content > p {
    font-size: 22px;
    line-height: 1.24;
  }

  .partner-services {
    display: flex;
    gap: 8px;
    margin: 20px 0 24px;
  }

  .partner-services span {
    border-radius: 999px;
    font-size: 12px;
    white-space: nowrap;
  }

  .partner-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .partner-actions .btn {
    width: 100%;
  }

  .partner-actions span {
    max-width: none;
    font-size: 13px;
  }

  .why-layout {
    gap: 28px;
  }

  .why-statement {
    min-height: 340px;
    padding: 28px;
    border-radius: 32px 8px 32px 8px;
  }

  .why-grid article {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 24px 22px;
    border-radius: 20px;
    transition: color 260ms ease, background 260ms ease, box-shadow 260ms ease, transform 260ms ease;
  }

  .why-grid {
    gap: 16px;
  }

  .why-grid article p {
    grid-column: 1;
  }

  .why-grid article h3,
  .why-grid article p {
    transition: color 260ms ease, transform 260ms ease;
  }

  .why-grid article.is-active-step {
    color: var(--white);
    background: var(--green);
    box-shadow: 0 18px 42px rgba(23, 73, 54, 0.2);
    transform: translateX(4px);
  }

  .why-grid article.is-active-step h3,
  .why-grid article.is-active-step p {
    color: var(--white);
  }

  .why-grid article.is-active-step h3 {
    transform: translateX(4px);
  }

  .contact-info {
    padding: 28px;
  }

  main > section {
    transition: background-color 360ms ease, filter 360ms ease;
  }

  main > section:not(.is-current-mobile) .section-heading {
    opacity: 0.72;
    transition: opacity 360ms ease;
  }

  main > section.is-current-mobile .section-heading {
    opacity: 1;
  }

  .stats-grid {
    margin: 0;
  }

  .metal-photo {
    min-height: 300px;
  }

  .contact-form {
    padding: 8px 0;
  }

  .cookie-consent {
    padding: 12px;
  }

  .cookie-panel {
    padding: 18px;
    border-radius: 20px;
  }

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

  .cookie-btn,
  .cookie-link {
    width: 100%;
  }
}
