/* ============================================================
   EXTRACUT TOOL MASTER - ULTIMATE DESIGN SYSTEM v4.0
   Editorial Industrial Design Language
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand Colors - Inspired by EXTRACUT logo */
  --ink-900: #0A1628;        /* Deepest navy - main text */
  --ink-800: #111D35;        /* Dark navy */
  --ink-700: #1B2A4A;        /* Mid navy */
  --ink-600: #2A3B5E;        /* Light navy */
  --ink-500: #4B5B7E;        /* Cool gray */
  --ink-400: #6B7A99;        /* Medium gray */
  --ink-300: #95A1BC;        /* Light gray */
  --ink-200: #C8D0DD;        /* Pale gray */
  --ink-100: #E5E9F0;        /* Very light gray */
  --ink-50:  #F4F6FA;        /* Off white */

  /* Accent Colors */
  --accent-red: #E63946;     /* Logo underline - signature red */
  --accent-red-dark: #C12D3A;
  --accent-red-light: #FF5765;
  --accent-blue: #1D4ED8;    /* Logo "CUT" - signature blue */
  --accent-blue-dark: #1E3A8A;
  --accent-orange: #FF6B35;  /* Tool Master accent */
  --accent-amber: #F59E0B;

  /* Surface */
  --bg-primary: #FFFFFF;
  --bg-secondary: #FAFBFC;
  --bg-tertiary: #F4F6FA;
  --bg-warm: #FBF7F2;        /* Warm cream */
  --bg-dark: #0A1628;
  --bg-darker: #050B17;

  /* Gradients */
  --grad-red: linear-gradient(135deg, #E63946 0%, #C12D3A 100%);
  --grad-blue: linear-gradient(135deg, #1D4ED8 0%, #1E3A8A 100%);
  --grad-ink: linear-gradient(180deg, #0A1628 0%, #1B2A4A 100%);
  --grad-warm: linear-gradient(135deg, #FBF7F2 0%, #F4E9D8 100%);
  --grad-mesh:
    radial-gradient(at 20% 30%, rgba(230, 57, 70, 0.08) 0px, transparent 50%),
    radial-gradient(at 80% 20%, rgba(29, 78, 216, 0.08) 0px, transparent 50%),
    radial-gradient(at 50% 80%, rgba(255, 107, 53, 0.05) 0px, transparent 50%);

  /* Typography */
  --font-display: "Inter", -apple-system, "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", -apple-system, "Segoe UI", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", "SF Mono", Menlo, Consolas, monospace;

  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-32: 128px;

  /* Layout */
  --container-max: 1440px;
  --container-padding: 32px;
  --gutter: 24px;

  /* Radius */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-2xl: 32px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(10, 22, 40, 0.04), 0 1px 1px rgba(10, 22, 40, 0.06);
  --shadow-md: 0 4px 12px rgba(10, 22, 40, 0.06), 0 2px 4px rgba(10, 22, 40, 0.04);
  --shadow-lg: 0 16px 40px rgba(10, 22, 40, 0.10), 0 4px 12px rgba(10, 22, 40, 0.06);
  --shadow-xl: 0 32px 80px rgba(10, 22, 40, 0.14), 0 8px 24px rgba(10, 22, 40, 0.08);
  --shadow-red: 0 12px 32px rgba(230, 57, 70, 0.25);
  --shadow-blue: 0 12px 32px rgba(29, 78, 216, 0.20);

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --d-fast: 200ms;
  --d-base: 400ms;
  --d-slow: 700ms;
  --d-xslow: 1200ms;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-900);
  background: var(--bg-primary);
  overflow-x: hidden;
  font-feature-settings: "ss01", "cv11";
  letter-spacing: -0.005em;
}

/* Subtle grain texture for premium feel */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.025;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

/* ---------- Layout ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  position: relative;
}

.section {
  padding: var(--space-24) 0;
  position: relative;
}

.section-tight {
  padding: var(--space-16) 0;
}

/* Editorial Section Header */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-8);
  margin-bottom: var(--space-16);
  flex-wrap: wrap;
}

.section-meta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--space-5);
}

.section-meta::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--accent-red);
}

.section-title {
  font-size: clamp(40px, 5.5vw, 88px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--ink-900);
  max-width: 900px;
}

.section-title em {
  font-style: normal;
  color: var(--accent-red);
  position: relative;
}

.section-title .accent-blue {
  color: var(--accent-blue);
}

.section-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-500);
  max-width: 560px;
  margin-top: var(--space-6);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-red);
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-red);
  box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.18);
  animation: pulse 2.4s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.18); }
  50% { box-shadow: 0 0 0 8px rgba(230, 57, 70, 0); }
}

/* ============================================
   TOP BANNER STRIP - The first impression
   ============================================ */
.topbar {
  background: var(--ink-900);
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  z-index: 100;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.topbar-marquee {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  min-width: 0;
}

.marquee-track {
  display: inline-flex;
  gap: 48px;
  animation: marquee 50s linear infinite;
  align-items: center;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
}

.marquee-item::before {
  content: "";
  width: 4px;
  height: 4px;
  background: var(--accent-red);
  border-radius: 50%;
  flex-shrink: 0;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  font-size: 12px;
  font-family: var(--font-mono);
}

.topbar-actions a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--d-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.topbar-actions a:hover { color: var(--accent-red-light); }

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(10, 22, 40, 0.06);
  transition: all var(--d-base) var(--ease-out);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: var(--space-8);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink-900);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.02em;
  position: relative;
}

.brand-mark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 0.9;
}

.brand-extra {
  color: var(--ink-900);
  font-weight: 900;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.brand-cut {
  color: var(--accent-blue);
  font-weight: 900;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.brand-tagline {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  color: var(--accent-red);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 4px;
  position: relative;
  padding-bottom: 2px;
}

.brand-tagline::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--accent-red);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-800);
  letter-spacing: -0.01em;
  border-radius: var(--r-md);
  transition: all var(--d-fast) var(--ease-out);
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 18px;
  height: 2px;
  background: var(--accent-red);
  transition: transform var(--d-base) var(--ease-out);
  transform-origin: center;
}

.nav-link:hover { color: var(--accent-red); }
.nav-link:hover::after { transform: translateX(-50%) scaleX(1); }

.nav-chevron {
  width: 10px;
  height: 10px;
  margin-left: 2px;
  transition: transform var(--d-fast);
}

.nav-item:hover .nav-chevron { transform: rotate(180deg); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.nav-icon-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-pill);
  color: var(--ink-700);
  transition: all var(--d-fast);
  position: relative;
}

.nav-icon-btn:hover {
  background: var(--ink-50);
  color: var(--ink-900);
}

.nav-icon-btn .badge {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  background: var(--accent-red);
  color: white;
  font-size: 10px;
  font-weight: 700;
  border-radius: var(--r-pill);
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  border-radius: var(--r-pill);
  transition: all var(--d-base) var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn-primary {
  background: var(--ink-900);
  color: white;
  box-shadow: 0 4px 14px rgba(10, 22, 40, 0.18);
}

.btn-primary:hover {
  background: var(--ink-800);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 22, 40, 0.25);
}

.btn-accent {
  background: var(--accent-red);
  color: white;
  box-shadow: var(--shadow-red);
}

.btn-accent:hover {
  background: var(--accent-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(230, 57, 70, 0.35);
}

.btn-blue {
  background: var(--accent-blue);
  color: white;
  box-shadow: var(--shadow-blue);
}

.btn-blue:hover {
  background: var(--accent-blue-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--ink-900);
  border: 1.5px solid var(--ink-200);
}

.btn-outline:hover {
  background: var(--ink-900);
  color: white;
  border-color: var(--ink-900);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-lg { padding: 16px 32px; font-size: 15px; }
.btn-xl { padding: 20px 40px; font-size: 16px; }

.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
  transition: gap var(--d-base) var(--ease-out);
}

.btn-arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  transition: transform var(--d-base) var(--ease-out);
  transform-origin: left;
}

.btn-arrow:hover { gap: 12px; color: var(--accent-red); }

/* Mega Menu */
.megamenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 720px;
  background: white;
  border: 1px solid var(--ink-100);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  padding: var(--space-8);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-8);
  opacity: 0;
  visibility: hidden;
  transition: all var(--d-base) var(--ease-out);
  pointer-events: none;
}

.nav-item:hover .megamenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.mm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
}

.mm-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-3);
  border-radius: var(--r-md);
  transition: all var(--d-fast);
}

.mm-item:hover {
  background: var(--ink-50);
  transform: translateX(2px);
}

.mm-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-md);
  background: var(--ink-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-red);
}

.mm-item:hover .mm-icon {
  background: var(--accent-red);
  color: white;
}

.mm-item-body { flex: 1; min-width: 0; }
.mm-item-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-900);
  margin-bottom: 2px;
}
.mm-item-desc {
  font-size: 12px;
  color: var(--ink-500);
  line-height: 1.5;
}

.mm-feature {
  background: var(--ink-900);
  color: white;
  border-radius: var(--r-lg);
  padding: var(--space-6);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
}

.mm-feature::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -30%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--accent-red) 0%, transparent 70%);
  opacity: 0.5;
  filter: blur(40px);
}

.mm-feature-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-red-light);
  margin-bottom: var(--space-3);
}

.mm-feature-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-3);
}

.mm-feature-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-red-light);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ============================================
   HERO - Bold editorial design
   ============================================ */
.hero {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
}

/* Full-bleed background image — product collection as atmospheric backdrop */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../oss-images/custom/hero-products.png?v=3") center center / cover no-repeat;
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}

/* Soft white overlay for text readability — gradient: stronger on left (text), lighter on right */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(255, 255, 255, 0.62) 0%, rgba(255, 255, 255, 0.62) 42%, rgba(255, 255, 255, 0.20) 68%, rgba(255, 255, 255, 0.05) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Subtle grid pattern overlay */
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 22, 40, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 22, 40, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  background-position: -1px -1px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 80%);
  z-index: 2;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--space-16);
  align-items: center;
  position: relative;
  z-index: 3;
}

.hero-content { position: relative; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 8px;
  background: var(--ink-50);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-700);
  letter-spacing: 0.02em;
  margin-bottom: var(--space-6);
}

.hero-eyebrow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--accent-red);
  border-radius: 50%;
  color: white;
}

.hero-eyebrow strong { color: var(--ink-900); font-weight: 700; }

.hero-title {
  font-size: clamp(48px, 6.5vw, 104px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.045em;
  color: var(--ink-900);
  margin-bottom: var(--space-6);
  text-shadow: 0 2px 24px rgba(255, 255, 255, 0.7), 0 1px 4px rgba(255, 255, 255, 0.5);
}

.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-title .line-inner {
  display: block;
  animation: heroLineUp 1.2s var(--ease-out) both;
}

.hero-title .line:nth-child(2) .line-inner { animation-delay: 0.1s; }
.hero-title .line:nth-child(3) .line-inner { animation-delay: 0.2s; }

@keyframes heroLineUp {
  from { transform: translateY(110%); }
  to { transform: translateY(0); }
}

.hero-title .red {
  color: var(--accent-red);
  position: relative;
  display: inline-block;
}

.hero-title .red::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.08em;
  width: 100%;
  height: 0.08em;
  background: var(--accent-red);
  transform-origin: left;
  animation: drawLine 1s var(--ease-out) 0.8s both;
}

@keyframes drawLine {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.hero-title .blue {
  color: var(--accent-blue);
  font-style: italic;
  font-weight: 900;
}

.hero-title em.italic {
  font-style: italic;
  font-weight: 800;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-600);
  max-width: 540px;
  margin-bottom: var(--space-8);
  text-shadow: 0 1px 12px rgba(255, 255, 255, 0.6);
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-12);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--ink-100);
}

.trust-stat { position: relative; padding-right: var(--space-8); }
.trust-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 32px;
  background: var(--ink-100);
}

.trust-stat-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--ink-900);
  line-height: 1;
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 2px;
  text-shadow: 0 1px 8px rgba(255, 255, 255, 0.5);
}

.trust-stat-num .suffix {
  font-size: 18px;
  color: var(--accent-red);
  font-weight: 700;
}

.trust-stat-label {
  font-size: 12px;
  color: var(--ink-600);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
  text-shadow: 0 1px 6px rgba(255, 255, 255, 0.4);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 620px;
  margin-left: auto;
  height: 0;
  padding-top: 75%; /* 4:3 ratio — padding-top works in ALL browsers (no aspect-ratio dependency) */
}

.hero-stage {
  position: absolute;
  top: 4%;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  overflow: visible;
}

.hero-stage::before,
.hero-stage::after {
  content: none;
}

.hero-product {
  display: none; /* Hidden: product image is now the full-bleed hero background */
}

/* ============================================
   HERO - Drill Bit Badges (2007 / ISO9001 / 50+ Countries)
   Horizontal drills, tip pointing left, stacked vertically.
   Hover: only the drill body spins (rotateX) + feeds left;
   the label card stays still and readable.
   ============================================ */
.hero-drill-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  pointer-events: none;
}

.hero-drill {
  position: relative;
  width: 320px;
  height: 116px;
  pointer-events: auto;
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform;
}

.hero-drill:hover {
  transform: scale(1.04);
}

.hero-drill-inner {
  position: absolute;
  inset: 0;
  perspective: 900px;
  transform-style: preserve-3d;
}

/* Hover: drill spins around horizontal axis + feeds left; label stays still */
.hero-drill:hover .hero-drill-inner {
  animation: hdVibrateX 0.4s linear infinite;
}
.hero-drill:hover .hero-drill-shape {
  animation: hdSpinX 0.5s linear infinite;
}

@keyframes hdSpinX {
  from { transform: rotateX(0deg); }
  to   { transform: rotateX(360deg); }
}

@keyframes hdVibrateX {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(-5px); }
}

.hero-drill-slot {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.hero-drill-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #D5DBE2;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(10, 22, 40, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  padding: 7px 12px 6px;
  min-width: 74px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
}

.hd-top {
  font-size: 8px;
  letter-spacing: 2.2px;
  font-weight: 700;
}

.hd-val {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink-900);
  line-height: 1.05;
  letter-spacing: 0.5px;
  font-variant-numeric: tabular-nums;
}

.hd-val.sm {
  font-size: 13px;
  letter-spacing: 0.8px;
  white-space: nowrap;
}

.hd-sub {
  font-size: 7.5px;
  letter-spacing: 1.6px;
  color: #8A94A3;
  font-weight: 600;
}

.hd-ico {
  width: 20px;
  height: 20px;
  margin: 1px 0;
}

.hero-scroll-hint {
  position: absolute;
  bottom: -60px;
  left: 0;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-400);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hero-scroll-hint::after {
  content: "";
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--ink-300), transparent);
  margin-top: 12px;
}

/* ============================================
   BRAND MARQUEE - Big text scroll
   ============================================ */
.marquee-big {
  background: var(--ink-900);
  color: white;
  padding: var(--space-8) 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.marquee-big::before,
.marquee-big::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.marquee-big::before {
  left: 0;
  background: linear-gradient(90deg, var(--ink-900), transparent);
}

.marquee-big::after {
  right: 0;
  background: linear-gradient(-90deg, var(--ink-900), transparent);
}

.marquee-big-track {
  display: inline-flex;
  align-items: center;
  gap: 64px;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
  padding: 0 32px;
}

.marquee-big-item {
  display: inline-flex;
  align-items: center;
  gap: 64px;
  font-size: clamp(48px, 5vw, 80px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: white;
  flex-shrink: 0;
}

.marquee-big-item .star {
  display: inline-block;
  color: var(--accent-red);
  font-size: 0.5em;
  transform: translateY(-0.3em);
}

.marquee-big-item .outline {
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.4);
  color: transparent;
}

.marquee-big-item .red { color: var(--accent-red); }
.marquee-big-item .blue { color: var(--accent-blue); }

/* ============================================
   CATEGORIES - Editorial grid
   ============================================ */
.categories {
  padding: var(--space-32) 0 var(--space-24);
  background: var(--bg-primary);
  position: relative;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--space-6);
}

.cat-card {
  position: relative;
  background: var(--bg-tertiary);
  border-radius: var(--r-2xl);
  overflow: hidden;
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 360px;
  transition: all var(--d-base) var(--ease-out);
  isolation: isolate;
  text-decoration: none;
  color: var(--ink-900);
  border: 1px solid transparent;
}

.cat-card:hover {
  transform: translateY(-4px);
  border-color: var(--ink-900);
  background: white;
  box-shadow: var(--shadow-lg);
}

.cat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(10, 22, 40, 0.04) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Featured card spans 8 cols, 2 rows */
.cat-card.featured {
  grid-column: span 8;
  grid-row: span 2;
  background: var(--ink-900);
  color: white;
  min-height: 744px;
  padding: var(--space-12);
}

.cat-card.featured::before {
  background: linear-gradient(135deg, transparent 30%, rgba(230, 57, 70, 0.15) 100%);
}

.cat-card.featured::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 30 L30 0 L60 30 L30 60 Z' fill='none' stroke='%23ffffff' stroke-width='0.5' opacity='0.05'/%3E%3C/svg%3E");
  background-size: 60px 60px;
  z-index: 1;
  pointer-events: none;
}

.cat-card.medium { grid-column: span 4; min-height: 360px; }
.cat-card.small { grid-column: span 4; min-height: 360px; }

.cat-num {
  position: relative;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cat-card.featured .cat-num { color: var(--accent-red-light); }
.cat-card:not(.featured) .cat-num { color: var(--ink-500); }

.cat-num::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
}

.cat-content {
  position: relative;
  z-index: 2;
}

.cat-title {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-3);
}

.cat-card.featured .cat-title {
  font-size: clamp(40px, 4.5vw, 72px);
}

.cat-desc {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.7;
  max-width: 280px;
}

.cat-card.featured .cat-desc {
  font-size: 16px;
  opacity: 0.75;
  max-width: 420px;
  margin-bottom: var(--space-6);
}

.cat-image {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.cat-card:not(.featured) .cat-image {
  bottom: -10%;
  right: -10%;
  width: 70%;
  height: 70%;
  opacity: 0.85;
  transition: all var(--d-slow) var(--ease-out);
}

.cat-card:hover .cat-image {
  transform: scale(1.06) rotate(-3deg);
  opacity: 1;
}

.cat-card.featured .cat-image {
  bottom: 0;
  right: 0;
  width: 60%;
  height: 80%;
}

.cat-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.3));
}

.cat-cta {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: var(--space-4);
  transition: gap var(--d-base);
}

.cat-card:hover .cat-cta { gap: 12px; }

.cat-cta-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-tertiary);
  transition: all var(--d-base) var(--ease-out);
}

.cat-card:not(.featured) .cat-cta-icon { background: var(--ink-900); color: white; }
.cat-card.featured .cat-cta-icon { background: var(--accent-red); color: white; }

.cat-card:hover .cat-cta-icon { transform: rotate(-45deg); }

.cat-specs {
  position: relative;
  z-index: 2;
  display: flex;
  gap: var(--space-6);
  margin-top: var(--space-6);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cat-spec {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.cat-spec strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: white;
  margin-bottom: 4px;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

/* ============================================
   PRODUCT SHOWCASE - Editorial
   ============================================ */
.products {
  padding: var(--space-24) 0;
  background: var(--bg-secondary);
  position: relative;
}

.products::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ink-200), transparent);
}

.products-header {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--space-8);
  align-items: end;
  margin-bottom: var(--space-16);
}

.products-filter {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-bottom: var(--space-10);
}

.filter-pill {
  padding: 10px 18px;
  background: white;
  border: 1px solid var(--ink-100);
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-700);
  cursor: pointer;
  transition: all var(--d-fast) var(--ease-out);
}

.filter-pill:hover {
  border-color: var(--ink-900);
  color: var(--ink-900);
}

.filter-pill.active {
  background: var(--ink-900);
  color: white;
  border-color: var(--ink-900);
}

.filter-pill .count {
  margin-left: 4px;
  font-size: 11px;
  opacity: 0.6;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}

.product-card {
  position: relative;
  background: white;
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: all var(--d-base) var(--ease-out);
  border: 1px solid var(--ink-100);
  display: flex;
  flex-direction: column;
}

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

.product-media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, var(--bg-warm) 0%, #f0e8d8 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
}

.product-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 10 L10 0 L20 10 L10 20 Z' fill='none' stroke='%23E63946' stroke-width='0.3' opacity='0.06'/%3E%3C/svg%3E");
  background-size: 20px 20px;
}

.product-media img {
  position: relative;
  z-index: 2;
  width: 90%;
  height: 90%;
  object-fit: contain;
  transition: transform 0.6s var(--ease-out);
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.15));
}

.product-card:hover .product-media img {
  transform: scale(1.08) rotate(-2deg);
}

.product-tag {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  z-index: 3;
  padding: 5px 10px;
  background: var(--accent-red);
  color: white;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--r-sm);
}

.product-tag.new { background: var(--accent-blue); }
.product-tag.hot { background: var(--accent-orange); }

.product-fav {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  z-index: 3;
  width: 36px;
  height: 36px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-500);
  cursor: pointer;
  transition: all var(--d-fast);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(-4px);
}

.product-card:hover .product-fav {
  opacity: 1;
  transform: translateY(0);
}

.product-fav:hover { color: var(--accent-red); }

.product-quick {
  position: absolute;
  bottom: var(--space-3);
  left: var(--space-3);
  right: var(--space-3);
  z-index: 3;
  padding: 10px 14px;
  background: var(--ink-900);
  color: white;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--r-md);
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--d-base) var(--ease-out);
  cursor: pointer;
}

.product-card:hover .product-quick {
  opacity: 1;
  transform: translateY(0);
}

.product-quick:hover { background: var(--accent-red); }

.product-body {
  padding: var(--space-5) var(--space-5) var(--space-6);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-cat {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-500);
  margin-bottom: var(--space-2);
}

.product-name {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink-900);
  margin-bottom: var(--space-3);
  letter-spacing: -0.01em;
  min-height: 42px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: var(--space-3);
  border-top: 1px dashed var(--ink-100);
}

.product-price-wrap { display: flex; flex-direction: column; }
.product-price-label {
  font-size: 10px;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.product-price {
  font-size: 18px;
  font-weight: 800;
  color: var(--ink-900);
  letter-spacing: -0.02em;
}

.product-price small {
  font-size: 11px;
  color: var(--ink-500);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-spec {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-500);
}

.product-spec svg { color: var(--accent-red); }

/* ============================================
   FEATURED BANNER - Big editorial section
   ============================================ */
.feature-banner {
  position: relative;
  padding: var(--space-32) 0;
  background: var(--ink-900);
  color: white;
  overflow: hidden;
}

.feature-banner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at right, rgba(230, 57, 70, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.feature-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 40 L40 0 L80 40 L40 80 Z' fill='none' stroke='%23ffffff' stroke-width='0.5' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 80px 80px;
  pointer-events: none;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  position: relative;
  z-index: 2;
}

.feature-visual {
  position: relative;
  aspect-ratio: 5 / 4;
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

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

.feature-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 22, 40, 0.6) 100%);
}

.feature-badge {
  position: absolute;
  top: var(--space-6);
  left: var(--space-6);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--r-pill);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.feature-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--accent-red);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.feature-content .eyebrow { color: var(--accent-red-light); }

.feature-title {
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  margin: var(--space-4) 0 var(--space-6);
}

.feature-title em {
  font-style: normal;
  color: var(--accent-red);
}

.feature-title em.blue {
  color: var(--accent-blue);
}

.feature-desc {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: var(--space-8);
  max-width: 480px;
}

.feature-list {
  list-style: none;
  margin-bottom: var(--space-8);
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.feature-list li:last-child { border-bottom: none; }

.feature-list-icon {
  width: 24px;
  height: 24px;
  background: var(--accent-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: white;
}

/* ============================================
   STATS SECTION - Big numbers
   ============================================ */
.stats {
  padding: var(--space-20) 0;
  background: var(--bg-primary);
  position: relative;
  border-top: 1px solid var(--ink-100);
  border-bottom: 1px solid var(--ink-100);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
}

.stat-item {
  text-align: left;
  position: relative;
  padding-left: var(--space-6);
  border-left: 2px solid var(--accent-red);
}

.stat-num {
  font-size: clamp(56px, 6vw, 96px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: var(--ink-900);
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.stat-num .suffix {
  font-size: 0.5em;
  color: var(--accent-red);
  font-weight: 800;
}

.stat-num .prefix {
  font-size: 0.5em;
  color: var(--ink-400);
  font-weight: 700;
  margin-right: 4px;
}

.stat-label {
  font-size: 14px;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-top: var(--space-3);
}

.stat-sub {
  font-size: 12px;
  color: var(--ink-400);
  margin-top: 4px;
}

/* ============================================
   CAPABILITIES - Process / Services
   ============================================ */
.capabilities {
  padding: var(--space-32) 0;
  background: var(--bg-primary);
}

.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--ink-100);
  border-radius: var(--r-2xl);
  overflow: hidden;
  background: white;
}

.cap-card {
  padding: var(--space-10) var(--space-8);
  border-right: 1px solid var(--ink-100);
  border-bottom: 1px solid var(--ink-100);
  position: relative;
  transition: all var(--d-base) var(--ease-out);
  cursor: pointer;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cap-card:nth-child(3n) { border-right: none; }
.cap-card:nth-last-child(-n+3) { border-bottom: none; }

.cap-card:hover {
  background: var(--ink-900);
  color: white;
}

.cap-card:hover .cap-num,
.cap-card:hover .cap-title,
.cap-card:hover .cap-desc {
  color: white;
}

.cap-card:hover .cap-num { color: var(--accent-red-light); }

.cap-card:hover .cap-link {
  color: var(--accent-red-light);
}

.cap-num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-red);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: var(--space-6);
  display: flex;
  align-items: center;
  gap: 8px;
}

.cap-num::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--ink-100);
  transition: background var(--d-base);
}

.cap-card:hover .cap-num::after { background: rgba(255, 255, 255, 0.2); }

.cap-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  background: var(--ink-50);
  color: var(--ink-900);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  transition: all var(--d-base);
}

.cap-card:hover .cap-icon {
  background: var(--accent-red);
  color: white;
}

.cap-title {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  margin-bottom: var(--space-3);
}

.cap-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-500);
}

.cap-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-red);
  margin-top: var(--space-4);
  transition: gap var(--d-base);
}

.cap-card:hover .cap-link { gap: 10px; }

/* ============================================
   EXHIBITIONS - Image showcase
   ============================================ */
.exhibitions {
  padding: var(--space-24) 0;
  background: var(--bg-warm);
  position: relative;
  overflow: hidden;
}

.exhibitions::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='40' fill='none' stroke='%23E63946' stroke-width='0.3' opacity='0.04'/%3E%3Ccircle cx='50' cy='50' r='20' fill='none' stroke='%23E63946' stroke-width='0.3' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 100px 100px;
  pointer-events: none;
}

.exhibitions-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-12);
  align-items: center;
  position: relative;
  z-index: 2;
}

.exh-collage {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: var(--space-4);
  aspect-ratio: 1 / 1;
}

.exh-tile {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all var(--d-base) var(--ease-out);
}

.exh-tile:nth-child(1) { grid-row: span 2; }

.exh-tile:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
  z-index: 2;
}

.exh-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.exh-tile:hover img { transform: scale(1.05); }

.exh-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 22, 40, 0.5) 100%);
  pointer-events: none;
}

.exh-tile-label {
  position: absolute;
  bottom: var(--space-4);
  left: var(--space-4);
  right: var(--space-4);
  z-index: 2;
  color: white;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.exh-tile-label::before {
  content: "";
  width: 4px;
  height: 4px;
  background: var(--accent-red);
  border-radius: 50%;
}

.exh-content .eyebrow { color: var(--accent-red); }

.exh-title {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--ink-900);
  margin: var(--space-4) 0 var(--space-6);
}

.exh-title em {
  font-style: normal;
  color: var(--accent-red);
}

.exh-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-500);
  margin-bottom: var(--space-6);
}

.exh-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.exh-stat {
  padding: var(--space-4);
  background: white;
  border-radius: var(--r-lg);
  border: 1px solid rgba(10, 22, 40, 0.06);
}

.exh-stat-num {
  font-size: 32px;
  font-weight: 900;
  color: var(--ink-900);
  line-height: 1;
  letter-spacing: -0.03em;
}

.exh-stat-num em {
  font-style: normal;
  color: var(--accent-red);
}

.exh-stat-label {
  font-size: 12px;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
}

/* ============================================
   TESTIMONIALS - Social proof
   ============================================ */
.testimonials {
  padding: var(--space-24) 0;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.testimonial {
  padding: var(--space-8);
  background: var(--bg-secondary);
  border-radius: var(--r-2xl);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  border: 1px solid var(--ink-100);
  transition: all var(--d-base) var(--ease-out);
}

.testimonial:hover {
  background: white;
  border-color: var(--ink-900);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-quote {
  font-size: 80px;
  line-height: 1;
  color: var(--accent-red);
  font-family: Georgia, serif;
  height: 32px;
  font-weight: 700;
}

.testimonial-text {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-700);
  font-weight: 500;
  flex: 1;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  color: var(--accent-amber);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-top: var(--space-4);
  border-top: 1px solid var(--ink-100);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--grad-red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 18px;
  flex-shrink: 0;
}

.testimonial-avatar.b { background: var(--grad-blue); }
.testimonial-avatar.c { background: linear-gradient(135deg, #FF6B35, #F59E0B); }

.testimonial-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-900);
  line-height: 1.2;
}

.testimonial-role {
  font-size: 12px;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

/* Client logos */
.client-logos {
  padding: var(--space-12) 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--ink-100);
  border-bottom: 1px solid var(--ink-100);
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-8);
  align-items: center;
}

.client-logo {
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-400);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.02em;
  opacity: 0.7;
  transition: all var(--d-fast);
}

.client-logo:hover {
  color: var(--ink-900);
  opacity: 1;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  position: relative;
  padding: var(--space-32) 0;
  overflow: hidden;
  background: var(--ink-900);
  color: white;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(230, 57, 70, 0.20) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(29, 78, 216, 0.15) 0%, transparent 50%);
}

.cta-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 30 L30 0 L60 30 L30 60 Z' fill='none' stroke='%23ffffff' stroke-width='0.5' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 60px 60px;
}

.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}

.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(230, 57, 70, 0.15);
  border: 1px solid rgba(230, 57, 70, 0.3);
  border-radius: var(--r-pill);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-red-light);
  margin-bottom: var(--space-6);
}

.cta-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--accent-red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.cta-title {
  font-size: clamp(48px, 6.5vw, 96px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: var(--space-6);
}

.cta-title em {
  font-style: normal;
  color: var(--accent-red);
  position: relative;
}

.cta-title em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.04em;
  height: 0.08em;
  background: var(--accent-red);
}

.cta-desc {
  font-size: 19px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: var(--space-10);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.cta-actions .btn-primary { background: white; color: var(--ink-900); }
.cta-actions .btn-primary:hover { background: var(--accent-red); color: white; }

.cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  margin-top: var(--space-10);
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-trust-item svg { color: var(--accent-red-light); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--ink-900);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-20) 0 var(--space-8);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-red), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: var(--space-10);
  margin-bottom: var(--space-16);
}

.footer-brand { max-width: 320px; }

.footer-brand .brand { color: white; margin-bottom: var(--space-5); }
.footer-brand .brand-extra { color: white; }
.footer-brand .brand-cut { color: var(--accent-blue); }

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

.footer-social {
  display: flex;
  gap: var(--space-2);
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--d-fast);
}

.footer-social a:hover {
  background: var(--accent-red);
  color: white;
  border-color: var(--accent-red);
  transform: translateY(-2px);
}

.footer-col h4 {
  color: white;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-5);
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--accent-red);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  transition: all var(--d-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-col a:hover { color: var(--accent-red); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  margin-bottom: var(--space-3);
  line-height: 1.5;
}

.footer-contact-item svg {
  color: var(--accent-red);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  font-size: 13px;
  flex-wrap: wrap;
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-5);
}

.footer-bottom-links a:hover { color: var(--accent-red); }

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-stagger.in > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.3s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.4s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 0.5s; }

.reveal-stagger.in > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal-left.in { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal-right.in { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal-scale.in { opacity: 1; transform: scale(1); }

/* ============================================
   FLOATING CHAT BUTTONS
   ============================================ */
.floating-actions {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.float-btn {
  width: 52px;
  height: 52px;
  background: white;
  border: 1px solid var(--ink-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-700);
  box-shadow: var(--shadow-md);
  transition: all var(--d-fast);
  cursor: pointer;
  position: relative;
}

.float-btn:hover {
  background: var(--ink-900);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.float-btn.whatsapp { background: #25D366; color: white; border-color: #25D366; }
.float-btn.whatsapp:hover { background: #1FAD52; }

.float-btn .float-tip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--ink-900);
  color: white;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: var(--r-md);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all var(--d-fast);
}

.float-btn:hover .float-tip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.float-btn .float-tip::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 4px solid transparent;
  border-left-color: var(--ink-900);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  :root {
    --container-padding: 24px;
    --space-32: 96px;
  }

  .nav-menu { display: none; }
  .nav-actions .btn-primary { display: none; }

  .hero-grid { grid-template-columns: 1fr; gap: var(--space-12); }
  .hero-visual { max-width: 500px; margin: 0 auto; }

  .feature-grid { grid-template-columns: 1fr; gap: var(--space-10); }
  .exhibitions-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cap-grid { grid-template-columns: 1fr; }
  .cap-card { border-right: none; border-bottom: 1px solid var(--ink-100); }
  .cap-card:last-child { border-bottom: none; }
  .client-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .categories-grid { grid-template-columns: repeat(6, 1fr); }
  .cat-card.featured { grid-column: span 6; min-height: 600px; }
  .cat-card.medium, .cat-card.small { grid-column: span 3; min-height: 280px; }
  .products-header { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root {
    --container-padding: 20px;
    --space-24: 64px;
    --space-32: 64px;
  }

  .topbar { display: none; }

  .hero { padding: 40px 0 20px; }
  .hero-title { font-size: 48px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
  .hero-trust { flex-wrap: wrap; gap: var(--space-4); }
  .trust-stat { padding-right: var(--space-4); }
  .trust-stat:not(:last-child)::after { display: none; }
  .trust-stat-num { font-size: 22px; }

  .marquee-big-item { font-size: 36px; }

  .products-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .client-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-8); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-title { font-size: 40px; }

  .floating-actions { right: 12px; bottom: 12px; }
  .float-btn { width: 44px; height: 44px; }
}
