/* ============================================================
       EVOK INK — Production CSS
       Theme: Crimson #B81828 · Charcoal #111111 · White/Off-White
    ============================================================ */

/* ── Custom Properties ── */
:root {
  --crimson: #b81828;
  --crimson-deep: #8c0f1c;
  --crimson-light: #d42035;
  --crimson-pale: #fdf0f2;
  --white: #ffffff;
  --off-white: #f8f7f6;
  --light-grey: #f0eeec;
  --charcoal: #111111;
  --charcoal-mid: #1c1c1c;
  --text-dark: #141414;
  --text-body: #3d3535;
  --text-muted: #7a7070;
  --border-light: rgba(20, 20, 20, 0.09);
  --border-dark: rgba(255, 255, 255, 0.09);
  --shadow-card: 0 4px 28px rgba(0, 0, 0, 0.07);
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font: 'Poppins', system-ui, sans-serif;
}

/* ── Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
}
ul {
  list-style: none;
}
button {
  font-family: inherit;
  cursor: pointer;
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-48px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}
.reveal-right {
  opacity: 0;
  transform: translateX(48px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}
.reveal.active,
.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: none;
}
.d1 {
  transition-delay: 0.1s;
}
.d2 {
  transition-delay: 0.2s;
}
.d3 {
  transition-delay: 0.3s;
}
.d4 {
  transition-delay: 0.4s;
}

/* ── Skip Link (Accessibility) ── */
.skip-link {
  position: fixed;
  top: -60px;
  left: 0;
  z-index: 9999;
  background: var(--crimson);
  color: #fff;
  padding: 12px 24px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

/* ════════════════════════════════════
       NAVIGATION
    ════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid var(--border-light);
  transition:
    height 0.3s ease,
    box-shadow 0.3s ease;
  will-change: height;
}
#navbar.scrolled {
  height: 60px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo img {
  height: 34px;
  width: auto;
  transition: opacity 0.3s;
}
.nav-logo:hover img {
  opacity: 0.8;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: var(--text-body);
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--crimson);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover {
  color: var(--crimson);
}
.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  background: var(--crimson) !important;
  color: #fff !important;
  padding: 10px 24px;
  font-weight: 800 !important;
  font-size: 12px !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  border: 2px solid var(--crimson);
  transition: all 0.3s ease !important;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.nav-cta::after {
  display: none !important;
}
.nav-cta:hover {
  background: var(--crimson-deep) !important;
  border-color: var(--crimson-deep) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  border: none;
  background: none;
  padding: 4px;
  min-width: 44px;
  min-height: 44px; /* touch target */
  align-items: center;
  justify-content: center;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  display: block;
  transition: all 0.3s;
  transform-origin: center;
}

/* ════════════════════════════════════
       HERO
    ════════════════════════════════════ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
}
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 1.5s ease;
  will-change: opacity;
}
.hero-slide.active {
  opacity: 1;
}
.hero-slide:nth-child(1) {
  background-image: url('assets/image_9.webp');
}
.hero-slide:nth-child(2) {
  background-image: url('assets/image_6.webp');
}
.hero-slide:nth-child(3) {
  background-image: url('assets/image_16.webp');
}
.hero-slide:nth-child(4) {
  background-image: url('assets/image_13.webp');
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    110deg,
    rgba(17, 17, 17, 0.91) 0%,
    rgba(17, 17, 17, 0.72) 50%,
    rgba(17, 17, 17, 0.25) 100%
  );
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(184, 24, 40, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 24, 40, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to right, black 0%, transparent 55%);
  -webkit-mask-image: linear-gradient(to right, black 0%, transparent 55%);
}
.hero-scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  z-index: 3;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(184, 24, 40, 0.5),
    transparent
  );
  animation: scan 7s linear infinite;
  opacity: 0.6;
}
@keyframes scan {
  0% {
    top: 0;
    opacity: 0;
  }
  5% {
    opacity: 0.6;
  }
  95% {
    opacity: 0.6;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 0 5%;
  padding-top: 72px;
  max-width: 880px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s var(--ease) forwards;
}
.eyebrow-line {
  width: 36px;
  height: 2px;
  background: var(--crimson);
}
.eyebrow-text {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
}
.eyebrow-badge {
  background: rgba(184, 24, 40, 0.18);
  border: 1px solid rgba(184, 24, 40, 0.5);
  color: #e87080;
  padding: 4px 12px;
  font-size: 10px;
  letter-spacing: 2px;
  margin-left: 8px;
}

.hero-h1 {
  font-weight: 900;
  font-size: clamp(50px, 3vw, 100px);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s var(--ease) forwards;
}
.hero-h1 .accent {
  color: var(--crimson);
  display: block;
}
.hero-h1 .outline {
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.45);
  color: transparent;
  display: block;
}

.hero-sub {
  font-size: 16px;
  line-height: 1.75;
  max-width: 540px;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.9s 0.7s var(--ease) forwards;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.9s 0.85s var(--ease) forwards;
}
.hero-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  padding: 5px 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.hero-tag::before {
  content: '▸';
  color: var(--crimson);
  margin-right: 6px;
  font-size: 9px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 1s var(--ease) forwards;
  margin-bottom: 35px;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--crimson);
  color: #fff;
  padding: 16px 36px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--crimson);
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent);
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease);
}
.btn-primary:hover::before {
  transform: translateX(100%);
}
.btn-primary:hover {
  background: var(--crimson-deep);
  border-color: var(--crimson-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(184, 24, 40, 0.45);
}
.btn-primary:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #fff;
  padding: 16px 36px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.3);
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  transition: all 0.3s var(--ease);
}
.btn-secondary:hover {
  border-color: #fff;
  transform: translateY(-2px);
}
.btn-secondary:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.btn-icon {
  transition: transform 0.3s;
  display: inline-block;
}
.btn-primary:hover .btn-icon {
  transform: translateX(4px);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 5%;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeUp 0.9s 1.4s var(--ease) forwards;
}
.scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--crimson),
    transparent
  );
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}
.scroll-text {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  writing-mode: vertical-rl;
}

.hero-statsbar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  background: var(--crimson);
}
.stat-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}
.stat-item:last-child {
  border-right: none;
}
.stat-num {
  font-weight: 900;
  font-size: 28px;
  color: #fff;
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.35;
  font-weight: 500;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ════════════════════════════════════
       TRUST BAR
    ════════════════════════════════════ */
/* BEFORE & AFTER — base rules are identical */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  padding: 18px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.trust-icon {
  width: 30px;
  height: 30px;
  background: var(--crimson-pale);
  border: 1px solid rgba(184, 24, 40, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-divider {
  width: 1px;
  height: 22px;
  background: var(--border-light);
}
/* ════════════════════════════════════
       SECTION COMMONS
    ════════════════════════════════════ */
.section-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}

.stag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.stag-line {
  width: 30px;
  height: 2px;
  background: var(--crimson);
}
.stag-text {
  font-size: 11px;
  color: var(--crimson);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
}

.section-h {
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.93;
  letter-spacing: -0.5px;
}
.sh-lg {
  font-size: clamp(38px, 5vw, 70px);
}
.sh-md {
  font-size: clamp(30px, 4vw, 54px);
}
.section-sub {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 540px;
  margin-top: 14px;
}
.accent {
  color: var(--crimson);
}
.dim-dark {
  color: rgba(255, 255, 255, 0.5) !important;
}

/* ════════════════════════════════════
       WHY CHOOSE US
    ════════════════════════════════════ */
#why {
  padding: 120px 0;
  background: var(--off-white);
}
#why .section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.feat-card {
  background: var(--white);
  padding: 38px 30px;
  border-top: 3px solid transparent;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.feat-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--crimson);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.feat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.feat-card:hover::after {
  transform: scaleX(1);
}

.feat-icon {
  width: 50px;
  height: 50px;
  background: var(--crimson-pale);
  border: 1px solid rgba(184, 24, 40, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background 0.3s;
}
.feat-card:hover .feat-icon {
  background: rgba(184, 24, 40, 0.12);
}
.feat-num {
  font-size: 10px;
  color: var(--crimson);
  letter-spacing: 2px;
  margin-bottom: 8px;
  font-weight: 500;
}
.feat-title {
  font-weight: 800;
  font-size: 19px;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.feat-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

.why-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  margin-top: 24px;
}
.cert-row {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.cert-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.7);
  padding: 9px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.cert-dot {
  width: 6px;
  height: 6px;
  background: var(--crimson);
  border-radius: 50%;
}

.why-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

/* ════════════════════════════════════
       PRODUCTS
    ════════════════════════════════════ */
#products {
  padding: 120px 0;
  background: var(--charcoal);
}
.prod-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
}
.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.prod-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
  background: var(--charcoal-mid);
}
.prod-card.wide {
  grid-column: span 2;
  aspect-ratio: 6/4;
}
.prod-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.7s var(--ease),
    filter 0.5s;
  filter: saturate(0.9) brightness(0.82);
}
.prod-card:hover img {
  transform: scale(1.06);
  filter: saturate(1.1) brightness(0.88);
}
.prod-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(17, 17, 17, 0.93) 0%,
    rgba(17, 17, 17, 0.3) 55%,
    transparent 100%
  );
  transition: background 0.5s;
}
.prod-card:hover .prod-overlay {
  background: linear-gradient(
    to top,
    rgba(17, 17, 17, 0.96) 0%,
    rgba(17, 17, 17, 0.5) 55%,
    rgba(17, 17, 17, 0.08) 100%
  );
}
.prod-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 26px;
}
.prod-cat {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 7px;
}
.prod-name {
  font-weight: 900;
  font-size: 21px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 8px;
}
.prod-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.5s var(--ease),
    opacity 0.4s;
  opacity: 0;
}
.prod-card:hover .prod-desc {
  max-height: 80px;
  opacity: 1;
}
.prod-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--crimson-light);
  text-decoration: none;
  transform: translateY(8px);
  opacity: 0;
  transition:
    transform 0.4s 0.1s var(--ease),
    opacity 0.4s 0.1s;
}
.prod-card:hover .prod-link {
  transform: translateY(0);
  opacity: 1;
}

.slider-btns {
  display: flex;
  gap: 4px;
}
.sld-btn {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.sld-btn:hover {
  background: var(--crimson);
  border-color: var(--crimson);
}

/* ════════════════════════════════════
       INDUSTRIES
    ════════════════════════════════════ */
#industries {
  padding: 120px 0;
  background: var(--white);
}
.ind-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
  margin-top: 56px;
}
.ind-item {
  background: var(--off-white);
  padding: 34px 18px;
  text-align: center;
  border-bottom: 3px solid transparent;
  transition: all 0.35s var(--ease);
}
.ind-item:hover {
  background: var(--charcoal);
  border-bottom-color: var(--crimson);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}
.ind-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ind-icon svg {
  flex-shrink: 0;
  transition: stroke 0.3s;
}
.ind-item:hover .ind-icon svg {
  stroke: #fff;
}
.ind-name {
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dark);
  transition: color 0.3s;
}
.ind-item:hover .ind-name {
  color: #fff;
}
.ind-desc {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
  line-height: 1.5;
  transition: color 0.3s;
}
.ind-item:hover .ind-desc {
  color: rgba(255, 255, 255, 0.45);
}

/* ════════════════════════════════════
       COMPANY STRENGTH (numbers)
    ════════════════════════════════════ */
#strength {
  padding: 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.strength-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/image_5.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  filter: saturate(0);
}
.strength-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.strength-left {
  padding: 110px 60px 110px 5%;
  border-right: 1px solid var(--border-dark);
}
.strength-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.metric {
  padding: 56px 44px;
  border-right: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
}
.metric:hover {
  background: rgba(184, 24, 40, 0.06);
}
.metric::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--crimson);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.metric:hover::after {
  transform: scaleX(1);
}
.metric:nth-child(2n) {
  border-right: none;
}
.metric:nth-child(3),
.metric:nth-child(4) {
  border-bottom: none;
}
.metric-num {
  font-weight: 900;
  font-size: clamp(48px, 5vw, 80px);
  color: #fff;
  line-height: 1;
  letter-spacing: -2px;
}
.metric-num .u {
  color: var(--crimson);
  font-size: 0.6em;
  letter-spacing: 0;
}
.metric-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 500;
}
.metric-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.27);
  margin-top: 4px;
  line-height: 1.5;
}
.strength-img {
  width: 100%;
  max-width: 400px;
  margin-top: 44px;
}

/* ════════════════════════════════════
       ECO BAND
    ════════════════════════════════════ */
#eco-band {
  background: #0e380c;
  padding: 56px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
#eco-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.04) 10px,
    rgba(255, 255, 255, 0.04) 11px
  );
}
.eco-title {
  font-weight: 900;
  font-size: clamp(26px, 3.5vw, 48px);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  max-width: 460px;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.eco-title span {
  color: rgb(95, 205, 95);
}
.eco-items {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.eco-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.eco-dot {
  width: 7px;
  height: 7px;
  background: rgb(95, 205, 95);
  border-radius: 50%;
  opacity: 0.7;
}

/* ════════════════════════════════════
       QUALITY
    ════════════════════════════════════ */
#quality {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.qual-visual {
  position: relative;
  min-height: 580px;
  overflow: hidden;
}
.qual-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.qual-visual-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 55%, white 100%);
}
.qual-content {
  padding: 96px 5% 96px 72px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.qual-list {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.qual-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px;
  background: var(--off-white);
  border-left: 3px solid transparent;
  transition: all 0.3s;
}
.qual-item:hover {
  border-left-color: var(--crimson);
  background: var(--light-grey);
}
.qual-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
}
.qual-title {
  font-weight: 800;
  font-size: 15px;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.qual-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ════════════════════════════════════
       MANUFACTURING PROCESS (replaces testimonials)
    ════════════════════════════════════ */
#process {
  padding: 120px 0;
  background: var(--off-white);
}
#process .section-inner > div:first-child {
  text-align: center;
  margin-bottom: 64px;
}
#process .stag {
  justify-content: center;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.process-card {
  background: var(--white);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  border-top: 3px solid transparent;
  transition: all 0.4s var(--ease);
}
.process-card::before {
  content: attr(data-step);
  position: absolute;
  top: 20px;
  right: 24px;
  font-weight: 900;
  font-size: 72px;
  color: rgba(184, 24, 40, 0.06);
  line-height: 1;
  pointer-events: none;
  font-variant-numeric: tabular-nums;
}
.process-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.08);
  border-top-color: var(--crimson);
}
.proc-icon {
  width: 56px;
  height: 56px;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.proc-step {
  font-size: 10px;
  color: var(--crimson);
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.proc-title {
  font-weight: 800;
  font-size: 19px;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.proc-text {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-muted);
}

.process-bottom {
  margin-top: 2px;
  background: var(--charcoal);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.proc-stat {
  padding: 36px 36px;
  border-right: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  gap: 20px;
}
.proc-stat:last-child {
  border-right: none;
}
.proc-stat-icon {
  flex-shrink: 0;
}
.proc-stat-val {
  font-weight: 900;
  font-size: 28px;
  color: #fff;
  line-height: 1;
}
.proc-stat-lbl {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ════════════════════════════════════
       CONTACT
    ════════════════════════════════════ */
#contact {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
}
.contact-left {
  background: var(--charcoal);
  padding: 96px 60px 96px 5%;
  position: relative;
  overflow: hidden;
}
.contact-left-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/image_9.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.07;
}
.contact-left::before {
  content: '';
  position: absolute;
  top: 0;
  right: -1px;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--crimson),
    transparent
  );
}
.contact-h {
  font-weight: 900;
  font-size: clamp(34px, 4vw, 62px);
  color: #fff;
  text-transform: uppercase;
  line-height: 0.93;
  letter-spacing: -1px;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.contact-h .accent {
  color: var(--crimson);
}
.contact-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.75;
  margin-bottom: 44px;
  max-width: 400px;
  position: relative;
  z-index: 1;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  z-index: 1;
}
.ci-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}
.ci-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  background: rgba(184, 24, 40, 0.18);
  border: 1px solid rgba(184, 24, 40, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-right {
  background: var(--off-white);
  padding: 96px 5% 96px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cform {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.fgroup {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.flabel {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dark);
}
.finput,
.fselect,
.ftextarea {
  background: var(--white);
  border: 2px solid var(--border-light);
  padding: 13px 17px;
  font-family: var(--font);
  font-size: 15px;
  color: var(--text-dark);
  outline: none;
  width: 100%;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
  border-radius: 0;
  -webkit-appearance: none;
}
.finput:focus,
.fselect:focus,
.ftextarea:focus {
  border-color: var(--crimson);
  box-shadow: 0 0 0 4px rgba(184, 24, 40, 0.08);
}
.ftextarea {
  min-height: 96px;
  resize: vertical;
}
.fsubmit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--crimson);
  color: #fff;
  padding: 17px 44px;
  font-family: var(--font);
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: none;
  clip-path: polygon(14px 0%, 100% 0%, calc(100% - 14px) 100%, 0% 100%);
  position: relative;
  overflow: hidden;
  margin-top: 6px;
  transition: all 0.3s var(--ease);
}
.fsubmit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s var(--ease);
}
.fsubmit:hover::before {
  transform: translateX(100%);
}
.fsubmit:hover {
  background: var(--crimson-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(184, 24, 40, 0.42);
}
.fsubmit:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}
.fnote {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 8px;
  text-align: center;
}
.fnote-lock {
  margin-right: 6px;
  display: inline-block;
  vertical-align: middle;
}

/* ════════════════════════════════════
       FOOTER
    ════════════════════════════════════ */
footer {
  background: var(--white);
  border-top: 1px solid var(--border-light);
}
.footer-top {
  padding: 72px 5% 56px;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 56px;
}
.footer-logo-img {
  height: 64px;
  width: auto;
  display: block;
  margin-bottom: 16px;
}
.footer-brand-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 22px;
  max-width: 320px;
}
.footer-social {
  display: flex;
  gap: 8px;
}
.soc-btn {
  width: 34px;
  height: 34px;
  background: var(--off-white);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s;
}
.soc-btn:hover {
  background: var(--crimson);
  border-color: var(--crimson);
  color: #fff;
}
.soc-btn:focus-visible {
  outline: 2px solid var(--crimson);
  outline-offset: 2px;
}
.footer-col-title {
  font-weight: 800;
  font-size: 13px;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 18px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a::before {
  content: '—';
  color: var(--crimson);
  font-size: 10px;
}
.footer-links a:hover {
  color: var(--crimson);
}
.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding: 22px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}
.footer-credit {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-credit a {
  color: var(--crimson);
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition:
    color 0.2s,
    opacity 0.2s;
}
.footer-credit a:hover {
  color: var(--crimson-deep);
  opacity: 0.85;
}
.footer-credit a:focus-visible {
  outline: 2px solid var(--crimson);
  outline-offset: 2px;
}
.footer-credit svg {
  flex-shrink: 0;
}
.footer-badges {
  display: flex;
  gap: 10px;
}
.f-badge {
  background: var(--off-white);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Evok 3D showcase */
.evok-3d {
  width: 100%;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.evok-3d::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 12px,
    rgba(184, 24, 40, 0.03) 12px,
    rgba(184, 24, 40, 0.03) 13px
  );
}
.evok-3d img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 24px 64px rgba(184, 24, 40, 0.25));
}

/* ════════════════════════════════════
       FLOATING UI
    ════════════════════════════════════ */
.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.floating-cta.show {
  opacity: 1;
  pointer-events: all;
}
.float-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--crimson);
  color: #fff;
  text-decoration: none;
  padding: 13px 22px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  box-shadow: 0 8px 28px rgba(184, 24, 40, 0.45);
  transition: all 0.3s;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}
.float-btn:hover {
  background: var(--crimson-deep);
  transform: translateY(-2px);
}

.back-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 999;
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  box-shadow: var(--shadow-card);
}
.back-top.show {
  opacity: 1;
  pointer-events: all;
}
.back-top:hover {
  background: var(--crimson);
  border-color: var(--crimson);
  color: #fff;
}

/* ════════════════════════════════════
       RESPONSIVE
    ════════════════════════════════════ */
@media (max-width: 1200px) {
  #why .section-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .prod-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .prod-card.wide {
    grid-column: span 2;
  }
  .ind-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .strength-wrap {
    grid-template-columns: 1fr;
  }
  .strength-left {
    padding: 80px 5%;
  }
  .strength-right {
    border-top: 1px solid var(--border-dark);
  }
  #quality {
    grid-template-columns: 1fr;
  }
  .qual-visual {
    min-height: 380px;
  }
  .qual-visual-fade {
    background: linear-gradient(to bottom, transparent 55%, white 100%);
  }
  .qual-content {
    padding: 60px 5%;
  }
  #contact {
    grid-template-columns: 1fr;
  }
  .contact-left {
    padding: 80px 5%;
  }
  .contact-right {
    padding: 60px 5%;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-bottom {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero-statsbar {
    flex-wrap: wrap;
  }
  .stat-item {
    flex: 50%;
  }
  .prod-grid {
    grid-template-columns: 1fr;
  }
  .prod-card.wide {
    grid-column: span 1;
    aspect-ratio: 3/4;
  }
  .ind-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .strength-right {
    grid-template-columns: 1fr 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .frow {
    grid-template-columns: 1fr;
  }
  .hero-ctas {
    flex-direction: column;
  }
  .prod-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .process-bottom {
    grid-template-columns: 1fr;
  }
  .proc-stat {
    border-right: none;
    border-bottom: 1px solid var(--border-dark);
  }
  .proc-stat:last-child {
    border-bottom: none;
  }
  .hero-overlay {
    background: rgba(10, 10, 10, 0.78);
  }

  .hero-h1 {
    font-size: clamp(36px, 10vw, 64px);
    letter-spacing: -0.5px;
    line-height: 0.96;
    margin-bottom: 20px;
  }

  .hero-h1 .outline {
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.7);
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.9);
  }
  .hero-content {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding-top: 0px;
  }

  .hero-h1 span {
    display: block;
    max-width: 100%;
  }
  .hero-ctas {
    display: none;
  }
  .feat-card {
    padding: 38px 10px;
  }
  .reveal-left,
  .reveal-right {
    transform: translateY(30px);
  }

  .trust-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
    border-bottom: 1px solid var(--border-light);
  }

  .trust-divider {
    display: none;
  }

  .trust-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 16px 14px;
    font-size: 11px;
    letter-spacing: 0.8px;
    border-bottom: 1px solid var(--border-light);
    border-right: 1px solid var(--border-light);
    background: var(--white);
  }

  .trust-item:nth-child(even) {
    border-right: none;
  }

  .trust-item:nth-last-child(-n + 2) {
    border-bottom: none;
  }

  .trust-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    background: var(--crimson-pale);
    border: 1px solid rgba(184, 24, 40, 0.2);
  }

  .trust-icon svg {
    width: 17px;
    height: 17px;
  }
}

@media (max-width: 480px) {
  .trust-bar {
    justify-content: center;
  }
  .trust-divider {
    display: none;
  }
  .ind-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .metric {
    padding: 40px 28px;
  }
  .hero-scroll {
    display: none;
  }
  .trust-bar {
    grid-template-columns: 1fr 1fr; /* stays 2 columns on small phones too */
  }

  .trust-item {
    padding: 14px 10px;
    font-size: 10px;
    gap: 9px;
  }
}

@media (min-width: 1600px) {
  .section-inner {
    max-width: 1600px;
  }
}

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