:root {
  --black: #000000;
  --near-black: #101010;
  --dark: #181818;
  --red: #ff4c4c;
  --red-dark: #d93636;
  --white: #ffffff;
  --offwhite: #f6f6f6;
  --muted: #c9c9c9;
  --text: #1a1a1a;
  --line: rgba(0, 0, 0, .12);
  --line-light: rgba(255, 255, 255, .2);
  --shadow: 0 24px 70px rgba(0, 0, 0, .25);
  --soft-shadow: 0 14px 34px rgba(0, 0, 0, .1);
  --max: 1240px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html,
body {
  overflow-x: hidden;
}
body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.4;
  text-rendering: optimizeLegibility;
}
body.quote-open,
body.menu-open {
  overflow: hidden;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }
h1, h2, h3, p, a, button, input, textarea { overflow-wrap: anywhere; }
h1, h2, h3 {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 1.2rem;
  color: var(--white);
  max-width: 1020px;
  font-size: clamp(2.85rem, 6.55vw, 6.15rem);
  line-height: .91;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}
h2 {
  margin-bottom: .9rem;
  font-size: clamp(2rem, 4.2vw, 4.15rem);
  line-height: .96;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}
h3 {
  margin-bottom: .6rem;
  font-size: clamp(1.15rem, 2.3vw, 1.9rem);
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: uppercase;
}
p { margin-bottom: 1rem; }

.quick-contact {
  min-height: 38px;
  display: flex;
  justify-content: center;
  gap: 1.1rem;
  padding: .55rem 1rem;
  color: var(--white);
  background: var(--black);
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.quick-contact a,
.quick-contact button {
  border: 0;
  color: var(--white);
  background: transparent;
  text-decoration: none;
}
.quick-contact a:hover,
.quick-contact button:hover {
  color: var(--red);
}

.phone-modal {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 0, 0, .72);
}
.phone-modal.open { display: flex; }
.phone-modal-card {
  width: min(470px, 100%);
  padding: 2rem;
  color: var(--white);
  background: var(--black);
  border: 1px solid var(--line-light);
  box-shadow: var(--shadow);
  text-align: center;
}
.phone-modal-card h2 {
  font-size: 2rem;
}
.phone-modal-card p {
  color: var(--muted);
}
.modal-number {
  display: block;
  margin: 1rem 0;
  color: var(--red);
  font-size: 1.5rem;
  font-weight: 950;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: 84px;
  padding: .62rem max(1rem, calc((100vw - var(--max)) / 2));
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 6px 24px rgba(0, 0, 0, .08);
  backdrop-filter: blur(14px);
  transition: min-height .22s var(--ease), box-shadow .22s var(--ease);
}
.site-header.is-scrolled {
  min-height: 72px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .14);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  min-width: 0;
  color: var(--black);
}
.brand img {
  width: 66px;
  height: 64px;
  object-fit: contain;
  transform: scale(1.28);
  transform-origin: center;
}
.brand strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
}
.brand em {
  display: block;
  margin-top: .16rem;
  color: var(--red);
  font-style: normal;
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(.55rem, 1.15vw, 1rem);
  font-size: .8rem;
  font-weight: 900;
  text-transform: uppercase;
}
.main-nav a {
  position: relative;
  padding: .4rem 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s var(--ease);
}
.main-nav a:hover::after {
  transform: scaleX(1);
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 0;
  background: transparent;
}
.menu-toggle span {
  display: block;
  height: 2px;
  margin: 8px 0;
  background: var(--black);
  transition: transform .2s var(--ease), opacity .2s var(--ease);
}
.menu-open .menu-toggle span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

.indus-btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: .84rem 1.22rem;
  border: 1px solid var(--red);
  color: var(--white);
  background: var(--red);
  font-weight: 950;
  letter-spacing: .01em;
  text-transform: uppercase;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(255, 76, 76, .2);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.indus-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--black);
  transform: translateX(-105%);
  transition: transform .28s var(--ease);
}
.indus-btn:hover::before {
  transform: translateX(0);
}
.indus-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .24);
}
.indus-btn.outline {
  border-color: var(--white);
  background: rgba(0, 0, 0, .22);
  box-shadow: none;
}
.indus-btn.dark {
  border-color: var(--black);
  background: var(--black);
}
.header-btn {
  white-space: nowrap;
}

.section-tilt-bottom,
.section-tilt-top,
.section-tilt-both {
  position: relative;
}
.section-tilt-bottom::after,
.section-tilt-both::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: clamp(28px, 4vw, 58px);
  background: var(--white);
  clip-path: polygon(0 8%, 100% 100%, 100% 100%, 0 100%);
  z-index: 2;
}
.section-tilt-top::before,
.section-tilt-both::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: clamp(28px, 4vw, 58px);
  background: var(--white);
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 0);
  z-index: 2;
}
.section-image {
  position: relative;
  isolation: isolate;
  color: var(--white);
  background: var(--black);
  background-image: url("assets/hero-industrial-sourcing.jpg");
  background-position: center;
  background-size: cover;
}
.section-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .86), rgba(0, 0, 0, .64)),
    rgba(0, 0, 0, .28);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - 122px);
  color: var(--white);
  background: var(--black);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("assets/hero-industrial-sourcing.jpg");
  background-size: cover;
  background-position: center;
  filter: grayscale(.18) contrast(1.02);
  transform: scale(1.02);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0,0,0,.24), rgba(0,0,0,.82)),
    radial-gradient(circle at 76% 34%, rgba(255, 76, 76, .2), transparent 32%),
    linear-gradient(90deg, rgba(0,0,0,.96), rgba(0,0,0,.8) 48%, rgba(0,0,0,.34)),
    rgba(0, 0, 0, .38);
}
.hero-inner {
  width: min(var(--max), calc(100% - 2rem));
  min-height: calc(100svh - 122px);
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: 1.7rem;
  margin: 0 auto;
  padding: clamp(3.4rem, 8vw, 7rem) 0 clamp(4rem, 7vw, 6rem);
}
.hero-copy {
  max-width: 1020px;
}
.hero-copy::before {
  content: "SOURCING INDUSTRIEL B2B";
  display: inline-flex;
  margin-bottom: .9rem;
  padding: .38rem .65rem;
  color: var(--white);
  background: rgba(255, 76, 76, .94);
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-copy p {
  max-width: 640px;
  color: #ededed;
  font-size: clamp(1.02rem, 1.45vw, 1.28rem);
  font-weight: 700;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.6rem;
}
.hero-checks {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.hero-checks li {
  position: relative;
  min-height: 66px;
  display: flex;
  align-items: center;
  padding: .8rem .8rem .8rem 2.35rem;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(0, 0, 0, .58);
  backdrop-filter: blur(10px);
  font-size: .9rem;
  font-weight: 900;
}
.hero-checks li::before {
  content: "✓";
  position: absolute;
  left: .8rem;
  color: var(--red);
  font-weight: 950;
}

.boxed,
.split,
.section-head,
.timeline,
.testimonial-row,
.diamond-grid,
.faq-list,
.contact-layout {
  width: min(var(--max), calc(100% - 2rem));
  margin-left: auto;
  margin-right: auto;
}
.problem {
  padding: clamp(7rem, 12vw, 11rem) 0;
}
.dark-card {
  max-width: 860px;
  padding: clamp(1.3rem, 3vw, 2.2rem);
  background: rgba(0, 0, 0, .82);
  border-left: 6px solid var(--red);
  outline: 1px solid rgba(255, 255, 255, .13);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}
.dark-card h2 {
  color: var(--white);
}
.dark-card p {
  color: var(--white);
  font-size: clamp(1.25rem, 2.5vw, 2.1rem);
  font-weight: 950;
  line-height: 1.22;
}
.dark-card h3 {
  color: var(--red);
}

.expertise {
  padding: clamp(5rem, 9vw, 8rem) 0 clamp(6rem, 10vw, 9rem);
  background:
    linear-gradient(180deg, #fff 0%, #f7f7f7 100%);
}
.split {
  display: grid;
  grid-template-columns: minmax(0, .76fr) minmax(420px, 1fr);
  gap: clamp(1.2rem, 4vw, 3rem);
  align-items: stretch;
}
.black-panel {
  padding: clamp(1.3rem, 3vw, 2.2rem);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 76, 76, .13), transparent 38%),
    var(--black);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, .92);
}
.black-panel h2 {
  color: var(--white);
  font-size: clamp(1.7rem, 3.7vw, 3.4rem);
}
.black-panel p {
  color: #e8e8e8;
  font-size: 1.04rem;
  font-weight: 700;
}
.arrow-list {
  display: grid;
  gap: .65rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}
.arrow-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--white);
  font-weight: 900;
}
.arrow-list li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: 1.4rem;
  line-height: 1;
}
.brand-cloud {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .7rem;
  align-content: center;
}
.brand-cloud span {
  min-height: 76px;
  display: grid;
  place-items: center;
  padding: .8rem;
  position: relative;
  border: 1px solid rgba(0, 0, 0, .1);
  background: var(--white);
  box-shadow: var(--soft-shadow);
  color: var(--black);
  font-weight: 950;
  text-align: center;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.brand-cloud span::after {
  content: "";
  position: absolute;
  left: .65rem;
  right: .65rem;
  bottom: .55rem;
  height: 3px;
  background: var(--red);
  transform: scaleX(.34);
  transition: transform .2s var(--ease);
}
.brand-cloud span:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 76, 76, .45);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .14);
}
.brand-cloud span:hover::after {
  transform: scaleX(1);
}

.process {
  padding: clamp(6rem, 10vw, 9rem) 0;
}
.process-bg {
  background-position: center right;
}
.section-head {
  max-width: 980px;
  margin-bottom: 2rem;
}
.section-head.center {
  text-align: center;
}
.section-head h2 {
  color: inherit;
}
.section-head p {
  max-width: 780px;
  margin: 0 auto;
  color: inherit;
  font-size: clamp(1rem, 1.7vw, 1.35rem);
  font-weight: 700;
}
.timeline {
  display: grid;
  gap: 1rem;
  max-width: 920px;
  margin-bottom: 2rem;
}
.timeline article {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: clamp(1rem, 2.2vw, 1.6rem);
  color: var(--white);
  background: rgba(0, 0, 0, .8);
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .24);
  backdrop-filter: blur(8px);
  transition: transform .2s var(--ease), border-color .2s var(--ease);
}
.timeline article:hover {
  transform: translateX(4px);
  border-color: rgba(255, 76, 76, .45);
}
.timeline article:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 34px;
  top: calc(100% - 1px);
  width: 2px;
  height: 1rem;
  background: var(--red);
}
.step-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
  font-weight: 950;
}
.timeline h3 {
  color: var(--white);
  font-size: clamp(1.1rem, 2.2vw, 1.7rem);
}
.timeline p {
  color: #e5e5e5;
}
.timeline span {
  display: inline-flex;
  margin: .25rem .35rem .25rem 0;
  padding: .22rem .55rem;
  color: var(--white);
  background: rgba(255, 76, 76, .18);
  border: 1px solid rgba(255, 76, 76, .45);
  font-size: .82rem;
  font-weight: 900;
}
.center {
  text-align: center;
}

.cases {
  padding: clamp(5.5rem, 9vw, 8rem) 0 clamp(6.5rem, 10vw, 9rem);
  color: var(--black);
  background: #f8f8f8;
}
.testimonial-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.testimonial {
  position: relative;
  min-height: 245px;
  display: grid;
  gap: .55rem;
  padding: 1.45rem;
  border: 1px solid rgba(0, 0, 0, .09);
  background: var(--white);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.testimonial::before {
  content: "“";
  position: absolute;
  right: 1rem;
  top: -.8rem;
  color: rgba(255, 76, 76, .18);
  font-size: 6rem;
  font-weight: 950;
  line-height: 1;
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 46px rgba(0, 0, 0, .14);
}
.testimonial strong {
  color: var(--black);
  font-size: 1.15rem;
  font-weight: 950;
  text-transform: uppercase;
}
.testimonial small {
  color: var(--red);
  font-weight: 950;
}
.testimonial p {
  color: #333;
  margin-bottom: 0;
}
.testimonial span {
  color: var(--red);
  font-weight: 950;
}

.why {
  padding: clamp(5.8rem, 9vw, 8.5rem) 0 clamp(6.5rem, 10vw, 9rem);
}
.why-bg {
  background-position: center left;
}
.diamond-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(.85rem, 1.6vw, 1.25rem);
  padding: clamp(1.45rem, 2.6vw, 2.4rem) 0 0;
}
.diamond {
  position: relative;
  min-height: 0;
  display: flex;
  align-items: stretch;
  padding: clamp(1.2rem, 2vw, 1.65rem);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 76, 76, .12), transparent 44%),
    rgba(0, 0, 0, .84);
  border: 1px solid rgba(255, 255, 255, .22);
  overflow: hidden;
  transition: transform .24s var(--ease), background .24s var(--ease), border-color .24s var(--ease);
}
.diamond::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: var(--red);
}
.diamond::after {
  content: "";
  position: absolute;
  right: -44px;
  top: -44px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(255, 255, 255, .16);
  transform: rotate(45deg);
}
.diamond:hover {
  transform: translateY(-4px);
  background:
    linear-gradient(135deg, rgba(255, 76, 76, .22), transparent 42%),
    rgba(0, 0, 0, .92);
  border-color: rgba(255, 76, 76, .55);
}
.diamond div {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: left;
}
.diamond h3 {
  max-width: 12rem;
  margin-bottom: .7rem;
  color: var(--white);
  font-size: clamp(1.02rem, 1.45vw, 1.22rem);
  line-height: 1.14;
  overflow-wrap: anywhere;
}
.diamond p {
  margin-bottom: 0;
  color: #ececec;
  font-size: clamp(.93rem, 1.05vw, 1rem);
  line-height: 1.5;
  font-weight: 700;
}

.faq {
  padding: clamp(5.5rem, 9vw, 8rem) 0;
  color: var(--white);
  background: var(--black);
}
.faq .section-head p {
  color: #dcdcdc;
}
.faq-list {
  max-width: 980px;
  display: grid;
  gap: .65rem;
}
.faq details {
  background: var(--white);
  color: var(--black);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .16);
}
.faq summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.1rem;
  font-weight: 950;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .2s var(--ease);
}
.faq summary:hover {
  color: var(--red-dark);
}
.faq summary::before {
  content: "+";
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  color: var(--white);
  background: var(--red);
}
.faq details[open] summary::before {
  content: "-";
  background: var(--black);
}
.faq details p {
  margin: 0;
  padding: 0 1.1rem 1.1rem 4.1rem;
  color: #383838;
  font-weight: 700;
}

.contact {
  padding: clamp(5.5rem, 9vw, 8rem) 0;
}
.contact-bg {
  background-position: center;
}
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(430px, 1fr);
  gap: clamp(1rem, 4vw, 3rem);
  align-items: start;
}
.contact-copy h2 {
  color: var(--white);
}
.contact-copy p {
  color: #e7e7e7;
  font-size: 1.1rem;
  font-weight: 800;
}
.contact-cards {
  display: grid;
  gap: .7rem;
  margin-top: 1.2rem;
}
.contact-cards a {
  display: grid;
  gap: .15rem;
  padding: .9rem 1rem;
  color: var(--black);
  background: var(--white);
  border-left: 5px solid var(--red);
}
.contact-cards strong {
  text-transform: uppercase;
}
.contact-cards span {
  color: #3a3a3a;
  font-weight: 850;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .7rem;
  padding: clamp(1rem, 2vw, 1.35rem);
  color: var(--black);
  background: var(--white);
  box-shadow: var(--shadow);
  border-top: 5px solid var(--red);
}
.form-head {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: .8rem;
  border-bottom: 1px solid var(--line);
}
.form-head strong {
  font-size: 1.15rem;
  font-weight: 950;
  text-transform: uppercase;
}
.form-head span {
  color: #555;
  font-size: .86rem;
  font-weight: 850;
}
input,
textarea {
  width: 100%;
  min-height: 48px;
  padding: .82rem .85rem;
  border: 1px solid rgba(0, 0, 0, .18);
  border-radius: 0;
  color: var(--black);
  background: #f8f8f8;
  transition: border-color .2s var(--ease), background .2s var(--ease), outline-color .2s var(--ease);
}
input:focus,
textarea:focus {
  outline: 3px solid rgba(255, 76, 76, .18);
  border-color: var(--red);
  background: var(--white);
}
textarea {
  min-height: 135px;
  resize: vertical;
}
.quote-form textarea,
.quote-form button,
.quote-form .form-status {
  grid-column: 1 / -1;
}
.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--red-dark);
  font-weight: 900;
}
.form-status a {
  color: var(--black);
  text-decoration: underline;
}

.quote-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 120;
  width: min(470px, 100vw);
  background: var(--white);
  box-shadow: -24px 0 70px rgba(0, 0, 0, .35);
  transform: translateX(105%);
  transition: transform .3s var(--ease);
}
.quote-drawer.open { transform: translateX(0); }
.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  color: var(--white);
  background: var(--black);
}
.drawer-head strong {
  text-transform: uppercase;
}
.drawer-head button {
  border: 1px solid rgba(255, 255, 255, .4);
  color: var(--white);
  background: transparent;
  padding: .5rem .75rem;
  font-weight: 900;
  text-transform: uppercase;
}
.quote-form.compact {
  grid-template-columns: 1fr;
  margin: 1rem;
  box-shadow: none;
  border: 1px solid var(--line);
}
.quote-form.compact .form-head { display: none; }

.floating-actions {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  display: grid;
  gap: .55rem;
  justify-items: end;
}
.floating-main,
.floating-links a,
.whatsapp-button {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--red);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .22);
  font-size: 1.35rem;
  font-weight: 950;
}
.floating-links {
  display: none;
  gap: .5rem;
}
.floating-actions.open .floating-links {
  display: grid;
}
.floating-actions.open .floating-main {
  background: var(--black);
}
.floating-links a.phone {
  background: var(--black);
}
.floating-links a.mail {
  background: var(--red);
}
.whatsapp-widget {
  position: fixed;
  right: 1rem;
  bottom: 5.75rem;
  z-index: 90;
}
.whatsapp-button {
  width: auto;
  min-width: 112px;
  border-radius: 999px;
  padding: 0 1rem;
  font-size: .9rem;
}
.whatsapp-panel {
  position: absolute;
  right: 0;
  bottom: 68px;
  width: min(360px, calc(100vw - 2rem));
  display: none;
  color: var(--black);
  background: var(--white);
  box-shadow: var(--shadow);
}
.whatsapp-panel.open {
  display: block;
}
.whatsapp-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .9rem 1rem;
  color: var(--white);
  background: var(--black);
}
.whatsapp-head button {
  border: 0;
  color: var(--white);
  background: transparent;
  font-size: 1.4rem;
}
.whatsapp-panel p {
  padding: 1rem 1rem 0;
  color: #333;
  font-weight: 800;
}
.whatsapp-panel textarea {
  margin: 0 1rem 1rem;
  width: calc(100% - 2rem);
  min-height: 116px;
}
.whatsapp-panel .indus-btn {
  margin: 0 1rem 1rem;
}

.footer {
  display: grid;
  grid-template-columns: minmax(280px, 1.25fr) repeat(3, minmax(180px, .72fr));
  gap: 2rem;
  padding: clamp(2.4rem, 5vw, 4rem) max(1rem, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 76, 76, .08), transparent 38%),
    var(--black);
}
.footer .brand {
  color: var(--white);
  margin-bottom: 1rem;
}
.footer .brand img {
  background: var(--white);
}
.footer h3 {
  color: var(--white);
  font-size: 1.05rem;
}
.footer h3 span {
  border-bottom: 3px solid var(--red);
  padding-bottom: .18rem;
}
.footer p {
  color: var(--muted);
  font-weight: 700;
}
.footer a {
  display: block;
  margin: .44rem 0;
  color: var(--muted);
  font-weight: 800;
}
.footer a:hover {
  color: var(--red);
}
.footer-cta {
  padding: 1rem;
  background: #151515;
}
.legalbar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: .9rem max(1rem, calc((100vw - var(--max)) / 2));
  color: #d8d8d8;
  background: #090909;
  font-size: .82rem;
  font-weight: 850;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }
  .menu-toggle {
    display: block;
    order: 3;
    justify-self: end;
  }
  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 78;
    display: none;
    align-content: center;
    justify-items: center;
    flex-direction: column;
    padding: 6rem 2rem;
    color: var(--white);
    background: var(--black);
    font-size: clamp(1.35rem, 4.6vw, 2.8rem);
  }
  .main-nav.open {
    display: flex;
  }
  .main-nav a::after {
    background: var(--red);
  }
  .header-btn {
    justify-self: end;
  }
  .split,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .brand-cloud {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .hero-checks,
  .testimonial-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1121px) {
  .hero-checks {
    width: calc(100% - 150px);
  }
}

@media (max-width: 720px) {
  .quick-contact {
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
  }
  .quick-contact a {
    display: none;
  }
  .site-header {
    min-height: 76px;
    grid-template-columns: 1fr auto;
    overflow: hidden;
  }
  .menu-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    z-index: 82;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    order: 0;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    transform: translateY(-50%);
  }
  .menu-open .menu-toggle {
    position: fixed;
  }
  .menu-open .menu-toggle span {
    background: var(--white);
  }
  .brand {
    padding-right: 3.5rem;
  }
  .brand img {
    width: 58px;
    height: 58px;
    transform: scale(1.22);
  }
  .header-btn {
    display: none;
  }
  .hero-inner {
    width: calc(100vw - 2rem);
    max-width: calc(100vw - 2rem);
    min-height: auto;
    padding-top: 3.2rem;
  }
  .hero-copy,
  .boxed,
  .split,
  .section-head,
  .timeline,
  .testimonial-row,
  .diamond-grid,
  .faq-list,
  .contact-layout {
    width: calc(100vw - 2rem);
    max-width: calc(100vw - 2rem);
  }
  h1 {
    max-width: 100%;
    font-size: 2.55rem;
    line-height: .98;
  }
  h2 {
    font-size: 2.2rem;
    line-height: 1;
  }
  .hero-copy p {
    max-width: 100%;
    font-size: 1rem;
    font-weight: 750;
  }
  .hero-actions .indus-btn {
    width: 100%;
  }
  .hero-checks,
  .brand-cloud,
  .testimonial-row,
  .quote-form,
  .footer {
    grid-template-columns: 1fr;
  }
  .dark-card p {
    font-size: 1.2rem;
  }
  .timeline article {
    grid-template-columns: 1fr;
  }
  .timeline article:not(:last-child)::after {
    display: none;
  }
  .diamond-grid {
    grid-template-columns: 1fr;
    gap: .85rem;
    padding-top: 1.15rem;
  }
  .diamond {
    min-height: 0;
    padding: 1.15rem;
  }
  .diamond div {
    min-height: 0;
  }
  .diamond h3 {
    font-size: 1.05rem;
  }
  .form-head {
    display: grid;
  }
  .floating-actions,
  .whatsapp-widget {
    display: none;
  }
}
