﻿/* Molitech focused sourcing-agent website layer */

:root {
  --steel: #5f737d;
  --teal: #0f5c64;
  --ink: #071824;
  --panel: #ffffff;
  --soft: #f4f7f7;
  --line: #dce3e2;
  --shadow: 0 22px 60px rgba(7, 24, 36, 0.14);
}

html {
  scroll-padding-top: 120px;
}

body {
  overflow-x: hidden;
}

h1,
h2,
h3,
.nav__logo-name,
.footer__logo-name,
.label,
.btn,
.nav__links a {
  letter-spacing: 0 !important;
}

.wrap {
  max-width: 1240px;
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0;
}

.label::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
  opacity: 0.85;
}

.nav {
  transition: height 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.nav.scrolled {
  height: 60px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 30px rgba(7, 24, 36, 0.08);
}

.nav__links {
  gap: 1.25rem;
}

.nav__cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  border-radius: 3px;
}

.nav__cta:hover {
  background: #d75413 !important;
}

.btn {
  border-radius: 3px;
  min-height: 44px;
  justify-content: center;
  transform: translateY(0);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(7, 24, 36, 0.18);
}

.site-hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: var(--ink);
}

.site-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 24, 36, 0.94), rgba(7, 24, 36, 0.78) 42%, rgba(7, 24, 36, 0.28)),
    linear-gradient(0deg, rgba(7, 24, 36, 0.72), rgba(7, 24, 36, 0.04) 40%);
}

.site-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,0.7), transparent 72%);
}

.site-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: hero-drift 18s ease-in-out infinite alternate;
}

@keyframes hero-drift {
  from { transform: scale(1.04) translateX(0); }
  to { transform: scale(1.09) translateX(1.5%); }
}

.site-hero__wrap {
  position: relative;
  z-index: 2;
  min-height: 760px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.site-hero__content {
  max-width: 840px;
  min-width: 0;
}

.site-hero h1 {
  color: var(--white);
  max-width: 900px;
  overflow-wrap: normal;
  margin: 1rem 0 1.25rem;
  font-size: clamp(2.35rem, 5.4vw, 5rem);
  line-height: 0.98;
}

.site-hero p {
  max-width: 690px;
  color: rgba(255,255,255,0.76);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.65;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 4rem;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 44px rgba(7, 24, 36, 0.22);
}

.proof-strip div {
  padding: 1.25rem;
  border-right: 1px solid rgba(255,255,255,0.16);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.proof-strip span {
  color: rgba(255,255,255,0.58);
  font-size: 0.78rem;
}

.section {
  position: relative;
  padding: 6rem 0;
}

.section--alt {
  background:
    linear-gradient(180deg, rgba(15,92,100,0.04), rgba(15,92,100,0)),
    var(--soft);
}

.section-head {
  max-width: 780px;
  margin-bottom: 2.8rem;
}

.section-head--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 3rem;
  align-items: end;
}

.section-head h2 {
  margin-top: 0.7rem;
  color: var(--ink);
  line-height: 1.08;
}

.section-head p {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.7;
}

.image-card-grid {
  display: grid;
  gap: 1rem;
}

.image-card-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.image-card-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.image-card-grid--seven {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.image-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
  box-shadow: 0 1px 0 var(--line);
}

.image-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(7,24,36,0.05), rgba(7,24,36,0.82));
}

.image-card img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.55s ease;
}

.image-card div {
  position: absolute;
  z-index: 2;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
}

.image-card span {
  display: inline-flex;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.image-card h3 {
  color: var(--white);
  font-size: 1.05rem;
  line-height: 1.25;
}

.image-card:hover img {
  transform: scale(1.08);
  filter: contrast(1.05) saturate(1.05);
}

.compact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

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

.compact-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.compact-card {
  background: var(--panel);
  padding: 2rem;
  min-height: 185px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.compact-card h3 {
  color: var(--ink);
  font-size: 1.1rem;
  margin-bottom: 0.85rem;
}

.compact-card p {
  font-size: 0.93rem;
  line-height: 1.65;
}

.compact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  background: #fbfdfd;
  z-index: 2;
}

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

.decision-card {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 1.8rem;
  min-height: 220px;
}

.decision-card span {
  display: inline-flex;
  color: var(--steel);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.decision-card h3 {
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.3;
  margin-bottom: 0.8rem;
}

.decision-card p {
  font-size: 0.92rem;
  line-height: 1.6;
}

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

.faq-item {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 1.55rem;
}

.faq-item h3 {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.25;
  margin-bottom: 0.7rem;
}

.faq-item p {
  font-size: 0.93rem;
  line-height: 1.65;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.timeline-step {
  position: relative;
  padding: 2.4rem 1.4rem;
  border-right: 1px solid var(--line);
}

.timeline-step:last-child {
  border-right: 0;
}

.timeline-step::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 52px;
  height: 7px;
  background: var(--orange);
}

.timeline-step span {
  color: var(--steel);
  font-size: 0.8rem;
  font-weight: 800;
}

.timeline-step h3 {
  color: var(--ink);
  margin: 0.7rem 0;
}

.timeline-step p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.section--image {
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}

.section--image > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
}

.section--image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(7,24,36,0.86), rgba(7,24,36,0.35));
}

.section--image .wrap {
  position: relative;
  z-index: 2;
  width: 100%;
}

.floating-panel {
  max-width: 500px;
  margin-left: auto;
  background: rgba(255,255,255,0.94);
  padding: 2.4rem;
  box-shadow: var(--shadow);
}

.floating-panel h2 {
  color: var(--ink);
  margin: 0.8rem 0 1.25rem;
}

.check-list {
  display: grid;
  gap: 0.55rem;
}

.check-list p {
  margin: 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
}

.check-list p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 8px;
  height: 8px;
  background: var(--orange);
}

.sub-hero {
  position: relative;
  overflow: hidden;
  padding: 7.5rem 0 5rem;
  background:
    linear-gradient(90deg, rgba(7,24,36,0.94), rgba(15,92,100,0.74)),
    url("/assets/images/home/home-hero-sourcing-coordination_1920x1080.jpg") center/cover;
}

.sub-hero::after {
  content: "";
  position: absolute;
  right: -6rem;
  top: 20%;
  width: 40rem;
  height: 40rem;
  border: 1px solid rgba(255,255,255,0.12);
  transform: rotate(28deg);
}

.sub-hero .wrap {
  position: relative;
  z-index: 2;
}

.sub-hero h1 {
  color: var(--white);
  max-width: 900px;
  margin-top: 0.9rem;
  font-size: clamp(2.2rem, 4.6vw, 4.2rem);
  line-height: 1.04;
}

.sub-hero p {
  color: rgba(255,255,255,0.72);
  max-width: 660px;
  margin-top: 1rem;
  font-size: 1.05rem;
}

.sub-hero--services,
.sub-hero--products,
.sub-hero--industries,
.sub-hero--about,
.sub-hero--contact {
  background-image:
    linear-gradient(90deg, rgba(7,24,36,0.94), rgba(15,92,100,0.74)),
    url("/assets/images/home/home-hero-sourcing-coordination_1920x1080.jpg");
}

.sub-hero--insights {
  background-image:
    linear-gradient(90deg, rgba(7,24,36,0.92), rgba(15,92,100,0.68)),
    url("/assets/images/insights/insights-landing-cover_800x500.jpg");
}

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

.service-tile {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  min-height: 315px;
  background: var(--panel);
  border: 1px solid var(--line);
  overflow: hidden;
}

.service-tile img,
.product-group img,
.persona-card img,
.article-card img,
.contact-panel img,
.about-layout > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-tile img {
  aspect-ratio: 3 / 4;
}

.service-tile div {
  padding: 2rem;
}

.service-tile span {
  display: inline-flex;
  color: var(--orange);
  font-weight: 800;
  margin-bottom: 1rem;
}

.service-tile h2,
.product-group h2,
.persona-card h2,
.article-card h2,
.about-layout h2 {
  color: var(--ink);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 1.15;
}

.service-tile p,
.product-group p,
.persona-card p,
.article-card p,
.about-layout p {
  font-size: 0.95rem;
  line-height: 1.65;
  margin-top: 0.9rem;
}

.data-table {
  display: grid;
  border: 1px solid var(--line);
  background: var(--panel);
}

.data-row {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr 1.1fr;
  border-bottom: 1px solid var(--line);
}

.data-row:last-child {
  border-bottom: 0;
}

.data-row span {
  padding: 1rem;
  border-right: 1px solid var(--line);
  color: var(--text-mid);
  font-size: 0.92rem;
  line-height: 1.55;
}

.data-row span:last-child {
  border-right: 0;
}

.data-row--head span {
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
}

.product-grid {
  display: grid;
  gap: 1.2rem;
}

.product-group {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  min-height: 340px;
  background: var(--panel);
  border: 1px solid var(--line);
  overflow: hidden;
}

.product-group:nth-child(even) {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
}

.product-group:nth-child(even) img {
  order: 2;
}

.product-group__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.6rem;
  min-width: 0;
  overflow: visible;
}

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

.persona-card {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  background: var(--panel);
  border: 1px solid var(--line);
  min-height: 330px;
  overflow: hidden;
}

.persona-card div {
  padding: 2rem;
  align-self: center;
}

.persona-card strong {
  color: var(--ink);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 4rem;
  align-items: center;
}

.about-layout > img {
  aspect-ratio: 6 / 7;
  box-shadow: var(--shadow);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 2rem;
}

.signal-grid div {
  background: var(--soft);
  padding: 1.15rem;
}

.signal-grid strong,
.signal-grid span {
  display: block;
}

.signal-grid strong {
  color: var(--ink);
  font-size: 0.93rem;
  margin-bottom: 0.3rem;
}

.signal-grid span {
  color: var(--text-mid);
  font-size: 0.78rem;
}

.topic-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.topic-bar span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 0.9rem;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--soft);
  font-size: 0.82rem;
  font-weight: 800;
}

.insights-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.insights-search {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--soft);
  padding: 0 1rem;
  color: var(--ink);
  font: inherit;
}

.insights-search:focus {
  outline: 2px solid rgba(232,98,26,0.18);
  border-color: var(--orange);
  background: var(--white);
}

.insights-count {
  color: var(--text-mid);
  font-size: 0.85rem;
  font-weight: 800;
  white-space: nowrap;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 2rem;
}

.filter-chip {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--white);
  color: var(--ink);
  padding: 0 0.85rem;
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
}

.filter-chip.active,
.filter-chip:hover {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--white);
}

.featured-insight {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  border: 1px solid var(--line);
  background: var(--white);
  margin-bottom: 2rem;
  overflow: hidden;
}

.featured-insight img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.featured-insight div {
  padding: 2.2rem;
  align-self: center;
}

.featured-insight span {
  display: block;
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.featured-insight h2 {
  color: var(--ink);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.08;
}

.featured-insight p {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.65;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.article-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.88fr) minmax(0, 1.12fr);
  min-height: 235px;
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.article-card img {
  width: 100%;
  height: 100%;
  min-height: 235px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.article-card div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 1.45rem;
}

.article-card__meta {
  display: block;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.article-card h2 {
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.18;
}

.article-card p {
  color: var(--muted);
  display: -webkit-box;
  margin-top: 0.85rem;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.article-card__more {
  color: var(--ink);
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 800;
  margin-top: auto;
  padding-top: 1.1rem;
}

.article-card__more::after {
  content: ">";
  color: var(--orange);
  margin-left: 0.45rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 1.5rem;
  align-items: start;
}

.rfq-form,
.contact-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(7, 24, 36, 0.03);
}

.rfq-form {
  padding: 2rem;
}

.form-intro {
  margin-bottom: 1.35rem;
}

.form-intro h2 {
  color: var(--ink);
  font-size: clamp(1.45rem, 2vw, 2rem);
  margin: 0.55rem 0 0.45rem;
}

.form-intro p {
  color: var(--text-mid);
  max-width: 46rem;
}

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

.rfq-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--ink);
  font-size: 0.83rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.rfq-form input,
.rfq-form select,
.rfq-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--soft);
  padding: 0.85rem 0.95rem;
  color: var(--text);
  font: inherit;
  font-weight: 500;
}

.rfq-form select {
  min-height: 48px;
}

.rfq-form textarea {
  resize: vertical;
}

.rfq-form input:focus,
.rfq-form select:focus,
.rfq-form textarea:focus {
  outline: 2px solid rgba(232,98,26,0.18);
  border-color: var(--orange);
  background: var(--white);
}

.form-checks {
  border: 1px solid var(--line);
  margin: 0.25rem 0 1rem;
  padding: 1rem;
}

.form-checks legend {
  color: var(--ink);
  font-size: 0.83rem;
  font-weight: 800;
  padding: 0 0.35rem;
}

.form-checks label {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 0.55rem;
  margin-bottom: 0.65rem;
  color: var(--text);
  font-weight: 600;
}

.form-checks input {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  accent-color: var(--orange);
}

.form-trust {
  display: grid;
  gap: 0.6rem;
  margin: 0.75rem 0 1rem;
  padding: 1rem;
  background: var(--soft);
  border-left: 3px solid var(--orange);
}

.form-trust p {
  color: var(--text-mid);
  font-size: 0.86rem;
  line-height: 1.55;
}

.form-trust a {
  color: var(--teal);
  font-weight: 800;
  text-decoration: none;
}

.form-status {
  display: none;
  margin-bottom: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(31, 157, 85, 0.25);
  background: rgba(31, 157, 85, 0.08);
  color: #17643c;
  font-size: 0.9rem;
  font-weight: 700;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-error {
  border-color: rgba(188, 62, 62, 0.25);
  background: rgba(188, 62, 62, 0.08);
  color: #8f2424;
}

.form-note,
.response-note {
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--text-mid);
}

.contact-panel {
  overflow: hidden;
}

.contact-panel img {
  aspect-ratio: 4 / 3;
}

.contact-panel div {
  padding: 1.6rem;
}

.contact-panel h2 {
  color: var(--ink);
  margin-bottom: 1rem;
}

.contact-panel a,
.legal-copy a,
.footer a {
  color: inherit;
  text-decoration: none;
}

.contact-panel a,
.legal-copy a {
  color: var(--teal);
  font-weight: 700;
}

.legal-copy h2 {
  color: var(--ink);
  font-size: 1.5rem;
  margin: 2rem 0 0.6rem;
}

.legal-copy h2:first-child {
  margin-top: 0;
}

.cta-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.footer__social a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.35rem 0.65rem;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 3px;
  color: rgba(255,255,255,0.82);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.footer__social a:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.32);
  color: var(--white);
  transform: translateY(-1px);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1002;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  padding: 0;
  background: #1f9d55;
  color: var(--white);
  border: 3px solid rgba(255,255,255,0.9);
  border-radius: 50%;
  box-shadow: 0 18px 46px rgba(7, 24, 36, 0.24), 0 0 0 0 rgba(31,157,85,0.36);
  text-decoration: none;
  overflow: visible;
  animation: molitech-whatsapp-pulse 2.8s ease-in-out infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.whatsapp-float:hover {
  background: #178a49;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 20px 52px rgba(7, 24, 36, 0.28);
}

.whatsapp-float__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  flex: 0 0 auto;
  background: transparent;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
}

.whatsapp-float__copy {
  display: none;
  gap: 0.1rem;
  min-width: 0;
}

.whatsapp-float__copy strong,
.whatsapp-float__copy small {
  display: block;
  color: var(--white);
  line-height: 1.1;
  white-space: nowrap;
}

.whatsapp-float__copy strong {
  font-size: 0.88rem;
}

.whatsapp-float__copy small {
  opacity: 0.82;
  font-size: 0.72rem;
}

@keyframes molitech-whatsapp-pulse {
  0%, 100% {
    box-shadow: 0 18px 46px rgba(7, 24, 36, 0.24), 0 0 0 0 rgba(31,157,85,0.28);
  }
  50% {
    box-shadow: 0 18px 46px rgba(7, 24, 36, 0.24), 0 0 0 12px rgba(31,157,85,0);
  }
}

.article-detail {
  max-width: 840px;
}

.article-detail > img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid var(--line);
  margin-bottom: 1.5rem;
}

.article-meta {
  color: var(--steel);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.article-lead {
  color: var(--ink);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.article-detail h2 {
  color: var(--ink);
  font-size: 1.45rem;
  margin: 2rem 0 0.85rem;
}

.article-detail ul {
  display: grid;
  gap: 0.8rem;
  margin: 0 0 1.4rem;
  padding-left: 1.2rem;
}

.article-detail li,
.article-detail p {
  line-height: 1.7;
}

.article-cta {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

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

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

@media (max-width: 1100px) {
  .image-card-grid--four,
  .image-card-grid--six,
  .image-card-grid--seven {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 900px) {
  .proof-strip,
  .timeline-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-strip div:nth-child(2) {
    border-right: 0;
  }

  .proof-strip div {
    border-bottom: 1px solid rgba(255,255,255,0.16);
  }

  .section-head--split,
  .about-layout,
  .contact-layout,
  .product-group,
  .product-group:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .product-group:nth-child(even) img {
    order: 0;
  }

  .service-tile,
  .persona-card,
  .article-card,
  .featured-insight {
    grid-template-columns: 1fr;
  }

  .service-tile img,
  .persona-card img,
  .article-card img,
  .product-group img,
  .featured-insight img {
    aspect-ratio: 16 / 9;
    height: auto;
    min-height: 0;
  }

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

@media (max-width: 768px) {
  body {
    padding-top: 104px;
  }

  .contact-bar__links {
    width: 100%;
    justify-content: center;
    gap: 1.25rem;
  }

  .contact-bar__link:first-child {
    display: none;
  }

  .nav__links {
    gap: 0;
    max-width: none;
  }

  .site-hero,
  .site-hero__wrap {
    min-height: auto;
  }

  .site-hero__wrap {
    padding-top: 5rem;
    padding-bottom: 3rem;
  }

  .site-hero h1 {
    max-width: min(100%, 360px);
    font-size: 1.92rem;
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .site-hero p {
    max-width: min(100%, 340px);
    font-size: 0.98rem;
  }

  .sub-hero h1 {
    max-width: min(100%, 350px);
    font-size: 1.95rem;
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  .sub-hero p {
    max-width: min(100%, 340px);
    font-size: 0.98rem;
  }

  .product-group h2,
  .service-tile h2,
  .persona-card h2,
  .article-card h2 {
    max-width: min(100%, 330px);
    font-size: 1.05rem;
    line-height: 1.22;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .product-group p,
  .service-tile p,
  .persona-card p,
  .article-card p {
    max-width: min(100%, 330px);
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .product-group__body,
  .service-tile div,
  .persona-card div,
  .article-card div,
  .featured-insight div {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

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

  .sub-hero {
    padding: 5rem 0 3.5rem;
  }

  .section {
    padding: 4rem 0 !important;
  }

  .floating-panel,
  .rfq-form {
    padding: 1.5rem;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
    padding: 0;
  }

  .whatsapp-float__copy {
    display: none;
  }
}

@media (max-width: 540px) {
  .insights-toolbar {
    grid-template-columns: 1fr;
  }

  .insights-count {
    white-space: normal;
  }
}

@media (max-width: 620px) {
  .image-card-grid--four,
  .image-card-grid--six,
  .image-card-grid--seven,
  .decision-grid,
  .compact-grid,
  .compact-grid--three,
  .compact-grid--four,
  .faq-grid,
  .article-grid,
  .proof-strip,
  .timeline-grid,
  .signal-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .image-card {
    min-height: 310px;
  }

  .timeline-step {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .timeline-step:last-child {
    border-bottom: 0;
  }

  .data-table {
    overflow-x: auto;
  }

  .data-row {
    min-width: 720px;
  }

  .product-group__body,
  .service-tile div,
  .persona-card div {
    padding: 1.25rem;
  }

  .site-hero__content {
    max-width: 100%;
  }
}

@media (max-width: 430px) {
  .contact-bar__links {
    width: 100%;
    justify-content: space-between;
    gap: 0.4rem;
  }

  .contact-bar__link:first-child {
    display: none;
  }

  .site-hero h1 {
    font-size: 2.05rem;
  }
}
