/* =========================================================
   Kinetra Industrial — Global Stylesheet
   Primary Brand Color: #C41230 (Crimson Red)
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700;800&family=Inter:wght@400;500;700&display=swap');

/* ── Custom Properties ─────────────────────────────────── */
:root {
  /* Brand Colors */
  --red-900: #7A0A1D;
  --red-800: #9A0E26;
  --red-700: #B8112E;
  --red-600: #C41230;
  --red-500: #D41535;
  --red-400: #E8192C;
  --red-300: #F04D63;
  --red-100: #FDE8EC;
  --red-50:  #FEF5F6;

  /* Neutral Colors */
  --gray-950: #0D0D0D;
  --gray-900: #1A1A1A;
  --gray-800: #2A2A2A;
  --gray-700: #3A3A3A;
  --gray-600: #555555;
  --gray-500: #777777;
  --gray-400: #9E9E9E;
  --gray-300: #CECECE;
  --gray-200: #E4E4E4;
  --gray-100: #F0F0F0;
  --gray-50:  #F8F8F8;
  --white:    #FFFFFF;

  /* Semantic Tokens */
  --color-primary:        var(--red-600);
  --color-primary-dark:   var(--red-800);
  --color-primary-light:  var(--red-400);
  --color-primary-pale:   var(--red-50);
  --color-body:           var(--gray-900);
  --color-muted:          var(--gray-600);
  --color-border:         var(--gray-200);
  --color-surface:        var(--gray-50);
  --color-surface-dark:   var(--gray-900);

  /* Typography */
  --font-sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-display: 'Barlow', 'Inter', Arial, sans-serif;

  /* Font Weights */
  --fw-regular: 400;
  --fw-medium:  500;
  --fw-bold:    700;

  /* Scale — desktop */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;
  --text-6xl:  3.75rem;

  /* Spacing (8px base) */
  --sp-1:  0.5rem;
  --sp-2:  1rem;
  --sp-3:  1.5rem;
  --sp-4:  2rem;
  --sp-5:  2.5rem;
  --sp-6:  3rem;
  --sp-8:  4rem;
  --sp-10: 5rem;
  --sp-12: 6rem;
  --sp-16: 8rem;

  /* Radius */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;
  --radius-xl:  16px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow-md:  0 4px 12px rgba(0,0,0,.10);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.14);
  --shadow-xl:  0 16px 48px rgba(0,0,0,.18);

  /* Transitions */
  --ease-out:  cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast:  150ms;
  --dur-base:  280ms;
  --dur-slow:  480ms;

  /* Layout */
  --container: 1280px;
  --header-h:  80px;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: var(--fw-bold);
  color: var(--gray-900);
}

h1 { font-size: clamp(2.25rem, 5vw, var(--text-6xl)); }
h2 { font-size: clamp(1.75rem, 3.5vw, var(--text-4xl)); }
h3 { font-size: clamp(1.25rem, 2.5vw, var(--text-2xl)); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }
p  { line-height: 1.7; color: var(--gray-600); }

/* ── Utility classes ─────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-4);
}

.section {
  padding-block: var(--sp-12);
}

.section--sm {
  padding-block: var(--sp-8);
}

.section__eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--sp-2);
}

.section__title {
  margin-bottom: var(--sp-2);
}

.section__subtitle {
  font-size: var(--text-lg);
  color: var(--gray-600);
  max-width: 640px;
  margin-bottom: var(--sp-6);
  line-height: 1.7;
}

.text-center { text-align: center; }
.text-center .section__subtitle { margin-inline: auto; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all var(--dur-base) var(--ease-out);
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-primary);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(196,18,48,.25);
}
.btn--primary:hover {
  background: var(--color-primary-dark);
  box-shadow: 0 4px 16px rgba(196,18,48,.35);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn--outline-dark {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.btn--outline-dark:hover {
  background: var(--color-primary);
  color: var(--white);
}

.btn--ghost {
  background: transparent;
  color: var(--gray-700);
  border: 1px solid var(--gray-300);
}
.btn--ghost:hover {
  background: var(--gray-100);
  border-color: var(--gray-400);
}

/* ── Header / Navigation ─────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  transition: background var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}

.site-header.is-transparent {
  background: transparent;
}

.site-header.is-scrolled {
  background: var(--white);
  box-shadow: 0 1px 0 var(--gray-200), var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding-inline: var(--sp-4);
  max-width: var(--container);
  margin-inline: auto;
}

.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header__logo img {
  height: 48px;
  width: auto;
  transition: filter var(--dur-base);
}

.site-header.is-transparent .header__logo img {
  filter: brightness(0) invert(1);
}

.site-header.is-scrolled .header__logo img {
  filter: none;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}

.nav__link {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  transition: color var(--dur-fast), background var(--dur-fast);
}

.site-header.is-transparent .nav__link {
  color: rgba(255,255,255,0.9);
}
.site-header.is-transparent .nav__link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.12);
}

.site-header.is-scrolled .nav__link {
  color: var(--gray-700);
}
.site-header.is-scrolled .nav__link:hover {
  color: var(--color-primary);
  background: var(--red-50);
}

.nav__link.is-active {
  color: var(--color-primary) !important;
  font-weight: var(--fw-bold);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.5rem 1.25rem;
  background: var(--color-primary);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background var(--dur-fast);
}
.nav__cta:hover { background: var(--color-primary-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--dur-fast);
}
.nav-toggle:hover { background: rgba(0,0,0,.06); }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  transition: all var(--dur-base) var(--ease-out);
}
.site-header.is-transparent .nav-toggle span { background: var(--white); }
.site-header.is-scrolled .nav-toggle span { background: var(--gray-700); }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Nav ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
    padding: var(--sp-3) var(--sp-4);
    transform: translateY(-110%);
    opacity: 0;
    transition: transform var(--dur-base) var(--ease-out),
                opacity var(--dur-base) var(--ease-out);
    pointer-events: none;
  }
  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: var(--sp-1);
  }
  .nav__link {
    display: block;
    color: var(--gray-700) !important;
    padding: 0.75rem 1rem;
    font-size: var(--text-base);
  }
  .nav__cta {
    margin-top: var(--sp-2);
    justify-content: center;
    padding: 0.75rem 1.25rem;
  }
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,10,10,0.82) 0%,
    rgba(10,10,10,0.55) 55%,
    rgba(10,10,10,0.30) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin-inline: auto;
  padding: var(--sp-16) var(--sp-4) var(--sp-10);
  width: 100%;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red-400);
  margin-bottom: var(--sp-3);
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--red-400);
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  max-width: 760px;
  margin-bottom: var(--sp-3);
  letter-spacing: -0.02em;
}

.hero__title mark {
  background: none;
  color: var(--red-400);
}

.hero__sub {
  font-size: clamp(1rem, 2vw, var(--text-xl));
  color: rgba(255,255,255,0.78);
  max-width: 600px;
  line-height: 1.65;
  margin-bottom: var(--sp-5);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.hero__scroll {
  position: absolute;
  bottom: var(--sp-5);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: bounceY 2.2s ease-in-out infinite;
}

.hero__scroll svg { opacity: 0.6; }

@keyframes bounceY {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── Trustbar ─────────────────────────────────────────────── */
.trustbar {
  background: var(--gray-900);
  padding-block: var(--sp-3);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.trustbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: var(--sp-3);
}

.trustbar__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.65);
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  letter-spacing: 0.02em;
}

.trustbar__item svg { color: var(--red-400); flex-shrink: 0; }

/* ── About ─────────────────────────────────────────────────── */
.about {
  background: var(--white);
}

.about__grid {
  /* display: grid;
  grid-template-columns: 1fr 1fr; */
  gap: var(--sp-10);
  align-items: center;
}

.about__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/2;
  margin-top: 15px;
}

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

.about__image::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 80px;
  height: 4px;
  background: var(--color-primary);
}

.about__badge {
  position: absolute;
  bottom: -1px; right: var(--sp-3);
  background: var(--color-primary);
  color: var(--white);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  text-align: center;
}

.about__badge-number {
  display: block;
  font-size: var(--text-3xl);
  font-weight: 800;
  line-height: 1;
  font-family: var(--font-display);
}

.about__badge-label {
  font-size: var(--text-xs);
  font-weight: var(--fw-medium);
  letter-spacing: 0.05em;
  opacity: 0.9;
}

.about__pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2);
  margin-top: var(--sp-4);
}

.about__pillar {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: var(--text-sm);
  color: var(--gray-700);
  font-weight: var(--fw-medium);
}

.about__pillar::before {
  content: '';
  flex-shrink: 0;
  margin-top: 0.35em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
}

/* ── Products ────────────────────────────────────────────── */
.products { background: var(--gray-50); }

.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3);
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.product-card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}

.product-card:hover .product-card__image img {
  transform: scale(1.06);
}

.product-card__body {
  padding: var(--sp-3);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card__category {
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--sp-1);
}

.product-card__title {
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  margin-bottom: var(--sp-1);
  color: var(--gray-900);
}

.product-card__desc {
  font-size: var(--text-sm);
  color: var(--gray-500);
  line-height: 1.6;
  flex: 1;
}

.product-card__footer {
  padding: var(--sp-2) var(--sp-3);
  border-top: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card__link {
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 0.3em;
  transition: gap var(--dur-fast);
}
.product-card:hover .product-card__link { gap: 0.6em; }

/* ── Industries ──────────────────────────────────────────── */
.industries { background: var(--white); }

.industries__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-2);
}

.industry-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}

.industry-card:hover img { transform: scale(1.07); }

.industry-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 55%);
  transition: background var(--dur-base);
}

.industry-card:hover .industry-card__overlay {
  background: linear-gradient(to top, rgba(154,14,38,.85) 0%, rgba(0,0,0,.30) 100%);
}

.industry-card__label {
  position: absolute;
  bottom: var(--sp-3);
  left: var(--sp-3);
  right: var(--sp-3);
  color: var(--white);
}

.industry-card__label h3 {
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  color: var(--white);
  line-height: 1.2;
}

.industry-card__label p {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.7);
  margin-top: 0.25rem;
}

/* ── Why Choose ──────────────────────────────────────────── */
.why { background: var(--gray-50); }

.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}

.why-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--sp-4);
  transition: border-color var(--dur-base), box-shadow var(--dur-base);
}

.why-card:hover {
  border-color: var(--red-300);
  box-shadow: var(--shadow-md);
}

.why-card__line {
  width: 40px;
  height: 3px;
  background: var(--color-primary);
  border-radius: 2px;
  margin-bottom: var(--sp-3);
}

.why-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--sp-1);
  color: var(--gray-900);
}

.why-card p {
  font-size: var(--text-sm);
  color: var(--gray-500);
  line-height: 1.7;
}

/* ── Partners ────────────────────────────────────────────── */
.partners { background: var(--white); }

.partners__heading {
  text-align: center;
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: var(--sp-5);
}

.partners__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3) var(--sp-5);
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 2.25rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  filter: grayscale(100%) opacity(0.45);
  transition: filter var(--dur-base), border-color var(--dur-base);
  min-width: 140px;
}

.partner-logo:hover {
  filter: grayscale(0%) opacity(1);
  border-color: var(--gray-300);
}

.partner-logo span {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--fw-bold);
  color: var(--gray-700);
  letter-spacing: 0.04em;
}

/* ── Statistics ──────────────────────────────────────────── */
.stats {
  background: var(--gray-900);
  padding-block: var(--sp-10);
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(196,18,48,.12) 0%, transparent 60%),
    radial-gradient(circle at 80% 50%, rgba(196,18,48,.08) 0%, transparent 60%);
}

.stats__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.stat-item {
  padding: var(--sp-6) var(--sp-4);
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
  transition: background var(--dur-base);
}

.stat-item:last-child { border-right: none; }

.stat-item:hover { background: rgba(255,255,255,.03); }

.stat-item__number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.1em;
}

.stat-item__suffix {
  font-size: 0.55em;
  color: var(--red-400);
}

.stat-item__label {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  font-weight: var(--fw-medium);
  letter-spacing: 0.04em;
  margin-top: var(--sp-1);
}

/* ── CTA Banner ──────────────────────────────────────────── */
.cta-banner {
  position: relative;
  overflow: hidden;
  padding-block: var(--sp-12);
  text-align: center;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.75);
  z-index: 1;
}

.cta-banner__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin-inline: auto;
  padding-inline: var(--sp-4);
}

.cta-banner__content h2 {
  color: var(--white);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: var(--sp-2);
  font-weight: 800;
}

.cta-banner__content p {
  color: rgba(255,255,255,0.72);
  font-size: var(--text-lg);
  margin-bottom: var(--sp-5);
  line-height: 1.65;
}

.cta-banner__actions {
  display: flex;
  gap: var(--sp-2);
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: var(--gray-950);
  color: rgba(255,255,255,0.6);
  padding-top: var(--sp-10);
  border-top: 3px solid var(--color-primary);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-8);
  padding-bottom: var(--sp-8);
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer__brand img {
  height: 44px;
  width: auto;
  margin-bottom: var(--sp-3);
  filter: brightness(0) invert(1);
}

.footer__brand p {
  font-size: var(--text-sm);
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  max-width: 280px;
}

.footer__contact-list {
  margin-top: var(--sp-3);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

.footer__contact-item svg {
  flex-shrink: 0;
  margin-top: 0.15em;
  color: var(--red-400);
}

.footer__contact-item a {
  color: rgba(255,255,255,0.55);
  transition: color var(--dur-fast);
}
.footer__contact-item a:hover { color: var(--white); }

.footer__col-title {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--sp-3);
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.footer__nav-list li a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  transition: color var(--dur-fast), padding-left var(--dur-fast);
  display: block;
  padding-block: 0.25rem;
}

.footer__nav-list li a:hover {
  color: var(--white);
  padding-left: 0.3rem;
}

.footer__bottom {
  padding-block: var(--sp-3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.footer__copy {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.3);
}

.footer__legal {
  display: flex;
  gap: var(--sp-3);
}
.footer__legal a {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.3);
  transition: color var(--dur-fast);
}
.footer__legal a:hover { color: rgba(255,255,255,0.6); }

/* ── Page Hero (inner pages) ─────────────────────────────── */
.page-hero {
  position: relative;
  padding-block: var(--sp-16) var(--sp-10);
  display: flex;
  align-items: flex-end;
  min-height: 380px;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,0.78) 0%, rgba(10,10,10,0.42) 100%);
  z-index: 1;
}

.page-hero__content {
  position: relative;
  z-index: 2;
  padding-inline: var(--sp-4);
  max-width: var(--container);
  margin-inline: auto;
  width: 100%;
}

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-xs);
  font-weight: var(--fw-medium);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--sp-2);
}

.page-hero__breadcrumb a { color: rgba(255,255,255,0.5); transition: color var(--dur-fast); }
.page-hero__breadcrumb a:hover { color: var(--white); }
.page-hero__breadcrumb .sep { color: rgba(255,255,255,0.25); }
.page-hero__breadcrumb .current { color: var(--red-400); }

.page-hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  font-weight: 800;
  max-width: 640px;
}

.page-hero__sub {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  line-height: 1.65;
  margin-top: var(--sp-2);
}

/* ── Contact page ────────────────────────────────────────── */
.contact-section { background: var(--white); }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-10);
  align-items: start;
}

.contact__info-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: var(--sp-5);
}

.contact__info-card h3 {
  font-size: var(--text-2xl);
  margin-bottom: var(--sp-4);
}

.contact__item {
  display: flex;
  gap: var(--sp-2);
  padding-block: var(--sp-3);
  border-bottom: 1px solid var(--gray-200);
}
.contact__item:last-of-type { border-bottom: none; }

.contact__item-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--red-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.contact__item-body h4 {
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 0.25rem;
}

.contact__item-body a,
.contact__item-body p {
  font-size: var(--text-base);
  color: var(--gray-800);
  font-weight: var(--fw-medium);
  transition: color var(--dur-fast);
  line-height: 1.5;
}
.contact__item-body a:hover { color: var(--color-primary); }

.contact__map-placeholder {
  background: var(--gray-100);
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-200);
  position: relative;
}

.contact__map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.map-label {
  position: absolute;
  top: var(--sp-2);
  left: var(--sp-2);
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 0.5rem 0.75rem;
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-600);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.contact__hours {
  margin-top: var(--sp-4);
  padding: var(--sp-3);
  background: var(--gray-900);
  border-radius: var(--radius-lg);
  color: rgba(255,255,255,0.7);
}

.contact__hours h4 {
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--sp-2);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-sm);
  padding-block: 0.3rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.hours-row:last-child { border-bottom: none; }

/* ── About page ──────────────────────────────────────────── */
.about-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}

.value-card {
  padding: var(--sp-4);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  background: var(--white);
}

.value-card__number {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--red-100);
  line-height: 1;
  margin-bottom: var(--sp-2);
}

.value-card h3 {
  margin-bottom: var(--sp-1);
}

.team-section { background: var(--gray-50); }

.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}

.team-card {
  text-align: center;
}

.team-card__photo {
  aspect-ratio: 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: var(--sp-2);
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h4 { font-size: var(--text-xl); }
.team-card p { font-size: var(--text-sm); color: var(--gray-500); }
.team-card .role { color: var(--color-primary); font-weight: var(--fw-bold); font-size: var(--text-sm); }

/* ── Products page ───────────────────────────────────────── */
.products-full__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}

.product-full-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}

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

.product-full-card__image {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.product-full-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}
.product-full-card:hover .product-full-card__image img { transform: scale(1.05); }

.product-full-card__body { padding: var(--sp-4); }

.product-full-card__tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--red-50);
  color: var(--color-primary);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: var(--sp-2);
}

.product-full-card__features {
  margin-top: var(--sp-2);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.product-full-card__features li {
  font-size: var(--text-sm);
  color: var(--gray-500);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.product-full-card__features li::before {
  content: '';
  flex-shrink: 0;
  margin-top: 0.45em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
}

/* ── Scroll animations ───────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--dur-slow) var(--ease-out),
              transform var(--dur-slow) var(--ease-out);
}

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

.fade-up[data-delay="1"] { transition-delay: 80ms; }
.fade-up[data-delay="2"] { transition-delay: 160ms; }
.fade-up[data-delay="3"] { transition-delay: 240ms; }
.fade-up[data-delay="4"] { transition-delay: 320ms; }
.fade-up[data-delay="5"] { transition-delay: 400ms; }
.fade-up[data-delay="6"] { transition-delay: 480ms; }
.fade-up[data-delay="7"] { transition-delay: 560ms; }
.fade-up[data-delay="8"] { transition-delay: 640ms; }

/* ── Divider ─────────────────────────────────────────────── */
.divider {
  width: 56px;
  height: 3px;
  background: var(--color-primary);
  border-radius: 2px;
  margin-bottom: var(--sp-4);
}

.divider--center { margin-inline: auto; }

/* ── Responsive breakpoints ─────────────────────────────── */
@media (max-width: 1100px) {
  .products__grid { grid-template-columns: repeat(2, 1fr); }
  .industries__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,.08); border-top: 1px solid rgba(255,255,255,.08); }
  .stat-item:nth-child(4) { border-right: none; border-top: 1px solid rgba(255,255,255,.08); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .about-values__grid { grid-template-columns: repeat(2, 1fr); }
  .products-full__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 800px) {
  :root { --header-h: 70px; }
  .about__grid { grid-template-columns: 1fr; }
  .about__image { order: -1; }
  .why__grid { grid-template-columns: 1fr 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .team__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .section { padding-block: var(--sp-8); }
  .products__grid { grid-template-columns: 1fr; }
  .industries__grid { grid-template-columns: 1fr 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,.08); }
  .why__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .trustbar__inner { flex-direction: column; align-items: flex-start; padding-inline: var(--sp-2); }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .industries__grid { grid-template-columns: 1fr; }
  .about-values__grid { grid-template-columns: 1fr; }
  .products-full__grid { grid-template-columns: 1fr; }
  .team__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .cta-banner__actions { flex-direction: column; align-items: center; }
}
