/* ============================================================
   MEZUR TECHNOLOGIES — Main Stylesheet
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Roboto', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: #444;
  background: #fff;
  line-height: 1.6;
  font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- CSS Variables --- */
:root {
  /* ---- Brand palette: Green + Gray + White + Black only ---- */
  --primary:            #7cb342;   /* Brand green  (C56 M12 Y85 K01) */
  --primary-dark:       #689f38;   /* Darker green – hover/active   */
  --primary-light:      #9ccc65;   /* Lighter green – text on dark  */
  --primary-xlight:     #f1f8e9;   /* Faint green tint – soft fills */
  --dark:               #1f1f1f;   /* Near-black charcoal           */
  --gray-900:           #1a1a1a;   /* Headings / near-black text    */
  --gray-800:           #333333;
  --gray-700:           #4a4a4a;
  --gray-600:           #595959;   /* Brand gray  (C62 M54 Y53 K26) */
  --gray-500:           #6e6e6e;
  --gray-400:           #969696;
  --gray-200:           #e2e2e2;
  --gray-100:           #f4f4f4;
  --gray-50:            #fafafa;
  --white:              #fff;
  --shadow-sm:          0 2px 8px rgba(0,0,0,.06);
  --shadow:             0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:          0 8px 40px rgba(0,0,0,.15);
  --radius-sm:          4px;
  --radius:             8px;
  --radius-lg:          16px;
  --transition:         .3s ease;
  --container:          1200px;
  --header-h:           72px;
}

/* --- Container --- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* --- Typography --- */
h1,h2,h3,h4,h5 { line-height: 1.2; font-weight: 700; color: var(--gray-900); }
h1 { font-size: clamp(1.9rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2.1rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1.05rem; }
p  { color: var(--gray-700); line-height: 1.75; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--radius);
  font-weight: 600; font-size: .95rem; cursor: pointer;
  transition: var(--transition); border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary  { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(124,179,66,.35); }
.btn-outline  { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.btn-white    { background: #fff; color: var(--primary); border-color: #fff; }
.btn-white:hover { background: transparent; color: #fff; transform: translateY(-2px); }
.btn-sm       { padding: 8px 18px; font-size: .85rem; }

/* --- Section helpers --- */
.section-label {
  display: inline-block; font-size: .78rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--primary); margin-bottom: 10px;
}
.section-title   { margin-bottom: 14px; }
.section-subtitle { color: var(--gray-600); font-size: 1.05rem; max-width: 640px; }
.section-header  { margin-bottom: 48px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 0 auto; }
section { padding: 80px 0; }
.bg-light { background: var(--gray-100); }
.bg-dark  { background: #1f1f1f; }
.bg-dark h2, .bg-dark h3 { color: #fff; }
.text-center { text-align: center; }
.text-primary { color: var(--primary); }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  background: linear-gradient(135deg, #1f1f1f 0%, #262626 100%);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: box-shadow var(--transition), background var(--transition);
}
.header.scrolled {
  background: #181818;
  box-shadow: 0 4px 24px rgba(0,0,0,.45);
  border-bottom-color: rgba(124,179,66,.25);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); gap: 16px;
}
.logo { flex-shrink: 0; display: flex; align-items: center; }
.logo img { height: 44px; width: auto; }

/* Nav */
.nav-list { display: flex; align-items: center; gap: 2px; }
.nav-list > li { position: relative; }
.nav-list > li > a {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 14px; border-radius: var(--radius-sm);
  font-weight: 500; font-size: .93rem; color: rgba(255,255,255,.82);
  transition: var(--transition);
}
.nav-list > li > a:hover,
.nav-list > li > a.active {
  color: var(--primary-light);
  background: transparent;
}

.dropdown-arrow { font-size: .6rem; transition: transform var(--transition); }
.has-dropdown:hover .dropdown-arrow,
.has-mega:hover   .dropdown-arrow { transform: rotate(180deg); }

/* Dropdown (stays white — easy to read) */
.dropdown {
  position: absolute; top: calc(100% + 6px); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  min-width: 270px; padding: 8px 0;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: all .22s ease;
}
.has-dropdown:hover .dropdown {
  opacity: 1; visibility: visible; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown li a {
  display: block; padding: 8px 20px; font-size: .88rem;
  color: var(--gray-700); transition: var(--transition);
}
.dropdown li a:hover { background: var(--primary-xlight); color: var(--primary); padding-left: 26px; }
.dropdown-heading {
  padding: 10px 20px 3px; font-size: .72rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray-400);
}

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; background: none; border: none; cursor: pointer;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: rgba(255,255,255,.85); border-radius: 2px; transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  background: linear-gradient(135deg, #1c1c1c 0%, #262626 45%, #2e2e2e 70%, #1a1a1a 100%);
  overflow: hidden; padding-top: var(--header-h); padding-bottom: 60px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 40%, rgba(124,179,66,.15) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 80%, rgba(124,179,66,.08) 0%, transparent 45%);
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(124,179,66,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,179,66,.04) 1px, transparent 1px);
  background-size: 56px 56px;
}
.hero .container { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(124,179,66,.18); border: 1px solid rgba(124,179,66,.35);
  color: #9ccc65; padding: 6px 14px; border-radius: 20px;
  font-size: .78rem; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 22px;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px;
  background: var(--primary-light); border-radius: 50%;
}
.hero h1 { color: #fff; margin-bottom: 22px; }
.hero h1 span { color: var(--primary-light); }
.hero-subtitle {
  font-size: 1.08rem; color: rgba(255,255,255,.72);
  line-height: 1.75; margin-bottom: 38px; max-width: 560px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-top: 64px; padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat { text-align: center; }
.hero-stat .number { font-size: 1.9rem; font-weight: 800; color: var(--primary-light); line-height: 1; }
.hero-stat .label { font-size: .82rem; color: rgba(255,255,255,.55); margin-top: 5px; }

.scroll-cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center;
  gap: 6px; color: rgba(255,255,255,.35); font-size: .72rem;
  letter-spacing: 1.5px; text-transform: uppercase;
  animation: scrollbounce 2.2s infinite;
}
.scroll-cue::after {
  content: ''; width: 1px; height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,.35), transparent);
}
@keyframes scrollbounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  55% { transform: translateX(-50%) translateY(7px); }
}

/* ============================================================
   CARDS  (generic)
   ============================================================ */
.card {
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--transition); display: flex; flex-direction: column;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--primary); }
.card-body   { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.card-icon {
  width: 52px; height: 52px; background: var(--primary-xlight);
  border-radius: var(--radius); display: flex; align-items: center;
  justify-content: center; margin-bottom: 16px; font-size: 1.4rem;
}
.card-tag {
  display: inline-block; background: var(--primary-xlight); color: var(--primary-dark);
  padding: 3px 10px; border-radius: 20px; font-size: .74rem;
  font-weight: 700; letter-spacing: .8px; text-transform: uppercase; margin-bottom: 10px;
}
.card h3    { margin-bottom: 8px; }
.card p     { font-size: .9rem; color: var(--gray-600); flex: 1; margin-bottom: 20px; }
.card-footer { padding: 14px 28px; border-top: 1px solid var(--gray-200); background: var(--gray-100); }

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }

.product-card {
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--transition); display: flex; flex-direction: column;
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--primary); }

.product-card-header {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 22px 26px; color: #fff;
}
.product-code-large { font-size: 2rem; font-weight: 800; letter-spacing: -1px; }
.product-name-sub { font-size: .83rem; opacity: .82; margin-top: 3px; }

.product-card-body { padding: 22px 26px; flex: 1; }
.product-card-body p { font-size: .88rem; margin-bottom: 14px; line-height: 1.65; color: var(--gray-600); }

.spec-mini { margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--gray-200); }
.spec-row { display: flex; font-size: .82rem; padding: 4px 0; gap: 8px; }
.spec-key { color: var(--gray-500); min-width: 110px; flex-shrink: 0; }
.spec-val { color: var(--gray-800); font-weight: 500; }

.product-card-footer {
  padding: 14px 26px; border-top: 1px solid var(--gray-200);
  display: flex; gap: 10px; flex-wrap: wrap; background: var(--gray-100);
}

/* ============================================================
   FEATURE LIST  (why-choose-us)
   ============================================================ */
.features-grid  { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 24px; }
.feature-item   { display: flex; gap: 16px; }
.feature-icon {
  width: 46px; height: 46px; background: var(--primary-xlight);
  border-radius: var(--radius); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; color: var(--primary); font-size: 1.3rem;
}
.feature-content h4  { margin-bottom: 5px; font-size: .97rem; }
.feature-content p   { font-size: .86rem; color: var(--gray-600); line-height: 1.6; }

/* ============================================================
   INDUSTRY SECTION
   ============================================================ */
.industry-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; }
.industry-item {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius); padding: 22px 14px; text-align: center;
  transition: var(--transition);
}
.industry-item:hover {
  background: rgba(124,179,66,.14); border-color: rgba(124,179,66,.4);
  transform: translateY(-3px);
}
.industry-icon  { font-size: 1.8rem; margin-bottom: 10px; }
.industry-item h4 { color: #fff; font-size: .88rem; font-weight: 600; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); padding: 64px 0; text-align: center; }
.cta-banner h2 { color: #fff; margin-bottom: 14px; }
.cta-banner p  { color: rgba(255,255,255,.85); margin-bottom: 32px; font-size: 1.05rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-actions   { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   PAGE HERO  (inner pages)
   ============================================================ */
.page-hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #1c1c1c, #2b2b2b);
  padding: 100px 0 56px; color: #fff;
}
.page-hero-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .18; pointer-events: none; z-index: 0;
}
.page-hero .container { position: relative; z-index: 1; }
.fmdw-hero .page-hero-img { opacity: .82; }
.fmdw-hero::after {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: linear-gradient(90deg, rgba(8,10,9,.9) 0%, rgba(8,10,9,.68) 38%, rgba(8,10,9,.18) 72%, rgba(8,10,9,.08) 100%);
}
.weighing-visual-hero .page-hero-img { opacity: .86; }
.weighing-visual-hero::after {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: linear-gradient(90deg, rgba(8,10,9,.92) 0%, rgba(8,10,9,.7) 36%, rgba(8,10,9,.18) 68%, rgba(8,10,9,.05) 100%);
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: .82rem; color: rgba(255,255,255,.5); margin-bottom: 18px;
}
.breadcrumb a  { color: rgba(255,255,255,.5); transition: var(--transition); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb-sep { color: rgba(255,255,255,.25); }
.page-hero h1  { color: #fff; }
.product-code-badge {
  display: inline-block; background: var(--primary); color: #fff;
  padding: 5px 16px; border-radius: 20px; font-size: .95rem;
  font-weight: 700; letter-spacing: 2px; margin-bottom: 10px;
}
.page-hero-subtitle {
  color: rgba(255,255,255,.75); font-size: 1.05rem;
  margin-top: 12px; max-width: 600px; line-height: 1.7;
}

/* ============================================================
   PRODUCT DETAIL SECTIONS
   ============================================================ */
.detail-grid   { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.detail-grid-3 { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; }

/* Spec table */
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table tr { border-bottom: 1px solid var(--gray-200); }
.spec-table tr:last-child { border-bottom: none; }
.spec-table td { padding: 11px 16px; font-size: .9rem; vertical-align: top; }
.spec-table td:first-child { color: var(--gray-600); font-weight: 500; width: 42%; background: var(--gray-100); }
.spec-table td:last-child   { color: var(--gray-800); }

/* Application items */
.app-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 10px; }
.app-item {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px; background: var(--primary-xlight);
  border-radius: var(--radius); border-left: 3px solid var(--primary);
  font-size: .88rem; font-weight: 500; color: var(--gray-800);
}
.app-item::before { content: '✓'; color: var(--primary); font-weight: 700; flex-shrink: 0; }

/* Feature list */
.feature-list { display: flex; flex-direction: column; gap: 10px; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .92rem; color: var(--gray-700); padding: 13px 16px;
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: var(--radius); transition: var(--transition);
}
.feature-list li:hover { border-color: var(--primary); background: var(--primary-xlight); }
.feature-list li::before { content: '◆'; color: var(--primary); font-size: .6rem; margin-top: 5px; flex-shrink: 0; }

/* Download card */
.download-card {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff; padding: 28px; border-radius: var(--radius-lg); text-align: center;
}
.download-card h3 { color: #fff; margin-bottom: 8px; }
.download-card p  { color: rgba(255,255,255,.8); margin-bottom: 20px; font-size: .88rem; }

/* Highlight box */
.highlight-box {
  background: var(--primary-xlight); border: 1px solid rgba(124,179,66,.2);
  border-left: 4px solid var(--primary); border-radius: var(--radius);
  padding: 18px 22px; margin-bottom: 22px;
}
.highlight-box p { font-size: .92rem; }

/* Section card */
.section-card {
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 32px; margin-bottom: 24px;
}
.section-card h3 { margin-bottom: 20px; font-size: 1.1rem; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 48px; }
.contact-company-name {
  color: var(--gray-900); font-size: 1.05rem; font-weight: 700;
  line-height: 1.45; letter-spacing: .2px; margin-bottom: 20px;
}
.contact-detail  { display: flex; gap: 14px; margin-bottom: 22px; }
.contact-icon {
  width: 40px; height: 40px; background: var(--primary-xlight);
  border-radius: var(--radius); display: flex; align-items: center;
  justify-content: center; color: var(--primary); font-size: 1.1rem; flex-shrink: 0;
}
.contact-detail-body h4 { font-size: .82rem; color: var(--gray-600); font-weight: 600; margin-bottom: 3px; }
.contact-detail-body p, .contact-detail-body a { font-size: .93rem; color: var(--gray-800); }
.contact-detail-body a:hover { color: var(--primary); }

.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-group   { display: flex; flex-direction: column; gap: 5px; }
.form-row     { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-label   { font-size: .83rem; font-weight: 600; color: var(--gray-700); }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 11px 14px; border: 1px solid var(--gray-200);
  border-radius: var(--radius); font-size: .93rem; color: var(--gray-800);
  background: #fff; transition: var(--transition); font-family: inherit;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(124,179,66,.12);
}
.form-textarea { resize: vertical; min-height: 130px; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-visual {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: var(--radius-lg); padding: 40px; display: flex;
  flex-direction: column; gap: 20px; height: 100%; min-height: 360px;
  justify-content: center;
}
.about-stat { text-align: center; }
.about-stat .big { font-size: 2.4rem; font-weight: 800; color: #fff; line-height: 1; }
.about-stat .sm  { font-size: .82rem; color: rgba(255,255,255,.65); margin-top: 4px; }
.about-stat-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-divider   { width: 100%; height: 1px; background: rgba(255,255,255,.15); }

.offerings-grid  { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.offering-card {
  background: #fff; border: 1px solid var(--gray-200);
  border-left: 4px solid var(--primary); border-radius: var(--radius);
  padding: 22px; transition: var(--transition);
}
.offering-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.offering-card h4 { margin-bottom: 6px; }
.offering-card p  { font-size: .86rem; color: var(--gray-600); }

/* ============================================================
   CATEGORY SECTION  (products page)
   ============================================================ */
.category-section { margin-bottom: 64px; }
.category-section:last-child { margin-bottom: 0; }
.category-title {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 28px; padding-bottom: 14px; border-bottom: 2px solid var(--gray-200);
}
.category-badge {
  background: var(--primary-xlight); color: var(--primary-dark);
  padding: 4px 12px; border-radius: 20px; font-size: .78rem;
  font-weight: 600; white-space: nowrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #1f1f1f; color: rgba(255,255,255,.65); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 48px; }

.footer-brand .logo-white { height: 38px; margin-bottom: 14px; }
.footer-brand p { color: rgba(255,255,255,.55); font-size: .86rem; line-height: 1.75; margin-bottom: 18px; }
.footer-tagline {
  display: inline-block; background: rgba(124,179,66,.2); color: #9ccc65;
  padding: 4px 12px; border-radius: 20px; font-size: .78rem; font-weight: 600;
}
.footer-heading { color: #fff; font-size: .88rem; font-weight: 700; margin-bottom: 18px; letter-spacing: .3px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { color: rgba(255,255,255,.55); font-size: .86rem; transition: var(--transition); }
.footer-links a:hover { color: var(--primary-light); padding-left: 4px; }

.footer-contact-item { display: flex; gap: 12px; margin-bottom: 13px; font-size: .83rem; }
.footer-contact-company {
  color: #fff; font-size: .82rem; font-weight: 700; line-height: 1.5;
  letter-spacing: .25px; margin: -2px 0 15px;
}
.footer-contact-icon { color: var(--primary-light); margin-top: 1px; flex-shrink: 0; }
.footer-contact-label {
  color: var(--primary-light); font-weight: 600; font-size: .76rem;
  letter-spacing: .4px; text-transform: uppercase;
  min-width: 46px; flex-shrink: 0; margin-top: 1px;
}
.footer-contact-text { color: rgba(255,255,255,.55); line-height: 1.65; }
.footer-contact-text a { color: rgba(255,255,255,.55); }
.footer-contact-text a:hover { color: var(--primary-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07); padding: 18px 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: .8rem; color: rgba(255,255,255,.35); flex-wrap: wrap; gap: 8px;
}
.footer-bottom a { color: rgba(255,255,255,.35); }
.footer-bottom a:hover { color: var(--primary-light); }

/* Site-wide product directory footer */
.footer-redesign { padding-top:0; overflow:hidden; background:#141814; }
.footer-redesign .footer-lead { display:grid; grid-template-columns:1fr .8fr; gap:80px; align-items:end; padding:58px 0 42px; border-bottom:1px solid rgba(255,255,255,.12); }
.footer-redesign .footer-brand { max-width:520px; }
.footer-redesign .footer-brand .logo-white { height:44px; margin-bottom:18px; }
.footer-redesign .footer-brand p { max-width:500px; margin:0; color:rgba(255,255,255,.5); font-size:.78rem; line-height:1.75; }
.footer-invite { justify-self:end; text-align:right; }
.footer-invite > span { display:block; margin-bottom:8px; color:rgba(255,255,255,.42); font-size:.68rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; }
.footer-invite > a { color:#fff; font-size:clamp(1.3rem,2.4vw,2.25rem); font-weight:700; letter-spacing:-.035em; }
.footer-invite b { display:inline-block; margin-left:10px; color:var(--primary-light); transition:transform .25s ease; }
.footer-invite a:hover b { transform:translateX(5px); }
.footer-directory { display:grid; grid-template-columns:repeat(6,minmax(0,1fr)); gap:30px; padding:42px 0 48px; }
.footer-group-title { min-height:40px; display:flex; align-items:flex-start; justify-content:space-between; gap:8px; padding-bottom:12px; border-bottom:1px solid rgba(255,255,255,.13); color:#fff; font-size:.73rem; font-weight:800; line-height:1.35; letter-spacing:.045em; text-transform:uppercase; }
a.footer-group-title:hover { color:var(--primary-light); }
.footer-group-title span { color:var(--primary-light); }
.footer-redesign .footer-links { gap:7px; padding-top:14px; }
.footer-redesign .footer-links a { padding:0; color:rgba(255,255,255,.46); font-size:.69rem; line-height:1.45; }
.footer-redesign .footer-links a:hover { padding-left:0; color:#fff; transform:translateX(3px); }
.footer-company-group .footer-links { display:grid; grid-template-columns:1fr 1fr; column-gap:12px; }
.footer-direct-contact { margin-top:20px; padding-top:14px; border-top:1px solid rgba(255,255,255,.1); }
.footer-direct-contact a { display:block; margin-top:5px; color:var(--primary-light); font-size:.72rem; }
.footer-redesign .footer-bottom { padding:16px 0; background:#0d100d; border-top:1px solid rgba(255,255,255,.08); }
.footer-bottom-inner { width:100%; display:flex; justify-content:space-between; flex-wrap:wrap; gap:8px 30px; }

@media (max-width:1100px) {
  .footer-directory { grid-template-columns:repeat(3,minmax(0,1fr)); row-gap:38px; }
}
@media (max-width:700px) {
  .footer-redesign .footer-lead { grid-template-columns:1fr; gap:30px; padding:46px 0 34px; }
  .footer-invite { justify-self:start; text-align:left; }
  .footer-directory { grid-template-columns:repeat(2,minmax(0,1fr)); gap:34px 24px; }
}
@media (max-width:480px) {
  .footer-directory { grid-template-columns:1fr; }
  .footer-group-title { min-height:auto; }
  .footer-bottom-inner { flex-direction:column; }
}
.footer-directory.footer-directory-compact { grid-template-columns:.7fr .9fr 1.1fr 1.8fr; gap:42px; }
.footer-legal-contact strong { display:block; margin-top:15px; color:#fff; font-size:.72rem; line-height:1.45; letter-spacing:.025em; }
.footer-legal-contact address { margin-top:10px; color:rgba(255,255,255,.47); font-size:.69rem; line-height:1.65; font-style:normal; }
.footer-legal-contact .footer-direct-contact { display:grid; grid-template-columns:1fr 1fr; gap:5px 16px; margin-top:15px; }
.footer-legal-contact .footer-direct-contact a { margin:0; }
.footer-legal-contact .footer-contact-rows { display:flex; flex-direction:column; gap:9px; }
.footer-contact-rows > div { display:grid; grid-template-columns:58px 1fr; gap:10px; align-items:start; }
.footer-contact-rows span { color:rgba(255,255,255,.38); font-size:.62rem; font-weight:800; letter-spacing:.06em; text-transform:uppercase; }
.footer-contact-rows p { margin:0; display:flex; flex-wrap:wrap; gap:5px 16px; line-height:1.4; }
.footer-contact-rows p a { color:var(--primary-light); font-size:.72rem; }
@media (max-width:1100px) {
  .footer-directory.footer-directory-compact { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width:600px) {
  .footer-directory.footer-directory-compact { grid-template-columns:1fr; gap:32px; }
  .footer-legal-contact .footer-direct-contact { grid-template-columns:1fr; }
}
.footer-split { display:grid; grid-template-columns:minmax(300px,.78fr) minmax(0,1.55fr); min-height:470px; }
.footer-company-panel { padding:58px 54px 50px 0; }
.footer-company-panel .logo-white { height:48px; margin-bottom:32px; }
.footer-company-panel > strong { display:block; max-width:320px; color:#fff; font-size:.8rem; line-height:1.5; letter-spacing:.035em; }
.footer-company-panel address { max-width:390px; margin-top:16px; color:rgba(255,255,255,.48); font-size:.72rem; line-height:1.7; font-style:normal; }
.footer-company-panel .footer-contact-rows { margin-top:28px; padding-top:4px; }
.footer-link-panel { padding:58px 0 50px 58px; }
.footer-link-intro { display:flex; align-items:baseline; justify-content:space-between; gap:30px; padding-bottom:14px; }
.footer-link-intro span { color:var(--primary-light); font-size:.66rem; font-weight:800; letter-spacing:.1em; text-transform:uppercase; }
.footer-link-intro b { max-width:380px; color:#fff; font-size:clamp(1.2rem,2vw,1.8rem); line-height:1.2; letter-spacing:-.03em; }
.footer-link-panel .footer-directory.footer-directory-compact { grid-template-columns:.7fr .9fr 1.3fr; gap:36px; padding:28px 0 0; }
.footer-redesign .footer-group-title { border-bottom:0; min-height:auto; padding-bottom:8px; }
.footer-redesign .footer-bottom { border-top:0; }
.footer-redesign .footer-bottom-inner { justify-content:flex-start; }
@media (max-width:900px) {
  .footer-split { grid-template-columns:1fr; }
  .footer-company-panel { padding:50px 0 42px; }
  .footer-link-panel { padding:42px 0 46px; }
}
@media (max-width:600px) {
  .footer-link-intro { align-items:flex-start; flex-direction:column; gap:8px; }
  .footer-link-panel .footer-directory.footer-directory-compact { grid-template-columns:1fr; gap:30px; }
}

/* ============================================================
   FADE-IN  ANIMATION
   ============================================================ */
.fade-in { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid    { grid-template-columns: 1fr 1fr; }
  .contact-grid   { grid-template-columns: 1fr; }
  .detail-grid    { grid-template-columns: 1fr; }
  .detail-grid-3  { grid-template-columns: 1fr; }
  .about-intro    { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  section { padding: 52px 0; }

  /* mobile nav */
  .hamburger { display: flex; }
  .nav {
    position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0;
    background: #181818; padding: 16px 20px; overflow-y: auto;
    transform: translateX(100%); transition: transform var(--transition); z-index: 999;
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .nav.open { transform: translateX(0); }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-list > li > a {
    padding: 14px 6px; border-radius: 0; font-size: .97rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
    color: rgba(255,255,255,.82);
  }
  .nav-list > li > a:hover, .nav-list > li > a.active {
    color: var(--primary-light); background: transparent;
  }
  .dropdown {
    position: static; opacity: 1; visibility: visible; pointer-events: all;
    transform: none !important; box-shadow: none; border: none;
    border-left: 3px solid var(--primary); border-radius: 0;
    background: var(--gray-100); display: none; margin-left: 14px;
  }
  .has-dropdown.open > .dropdown { display: block; }
  .has-dropdown.open .dropdown-arrow { transform: rotate(180deg); }

  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .hero-stat .number { font-size: 1.6rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .form-row    { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .product-card-footer { flex-direction: column; }
  .category-title { flex-wrap: wrap; }
  .header-inner .btn { display: none !important; }
  .about-stat-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero-stats   { grid-template-columns: 1fr 1fr; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .app-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   MEGA DROPDOWN  (What We Do)
   ============================================================ */
.has-mega { position: relative; }

.mega-dropdown {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  min-width: 760px; padding: 22px; z-index: 100;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
  transition-delay: .3s;                 /* grace period before it closes */
}
/* Invisible bridge fills the gap between the nav item and the panel so the
   menu does NOT close while the cursor crosses it. */
.mega-dropdown::before {
  content: ''; position: absolute; left: 0; right: 0;
  top: -18px; height: 18px; background: transparent;
}
.has-mega:hover .mega-dropdown,
.has-mega:focus-within .mega-dropdown {
  opacity: 1; visibility: visible; pointer-events: all;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0s;                  /* open immediately */
}

.mega-inner {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 28px;
}

/* ---- Four equal category cards (What We Do) ---- */
.mega-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.mega-card {
  display: flex; flex-direction: column;
  border: 1px solid var(--gray-200); border-radius: var(--radius);
  padding: 16px 16px 14px; text-decoration: none;
  background: #fff; transition: var(--transition); min-height: 150px;
}
.mega-card:hover {
  border-color: var(--primary); background: var(--primary-xlight);
  transform: translateY(-3px); box-shadow: var(--shadow);
}
.mega-card h4 { font-size: 1rem; color: var(--gray-900); margin-bottom: 6px; }
.mega-card:hover h4 { color: var(--primary-dark); }
.mega-card p { font-size: .8rem; color: var(--gray-600); line-height: 1.5; flex: 1; margin: 0; }
.mega-card-cta { margin-top: 12px; font-size: .76rem; font-weight: 700; letter-spacing: .3px; color: var(--primary); }

/* Products card = heading + list of category links */
.mega-card h4 a { color: inherit; text-decoration: none; }
.mega-card h4 a:hover { color: var(--primary); }
.mega-card--list:hover { transform: none; box-shadow: none; background: #fff; border-color: var(--gray-200); }
.mega-links { display: flex; flex-direction: column; gap: 1px; margin-top: 2px; }
.mega-links a {
  font-size: .82rem; color: var(--gray-700); text-decoration: none;
  padding: 4px 6px 4px 0; border-radius: 4px; transition: var(--transition);
}
.mega-links a:hover { color: var(--primary); padding-left: 6px; }
.mega-card--calibration .mega-links { gap: 3px; }
.mega-card--calibration .mega-links a { line-height: 1.3; }
.mega-card--calibration .mega-links strong { color: var(--gray-900); }
.mega-card--calibration .mega-links a:hover strong { color: var(--primary-dark); }

.mega-col-head {
  display: flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: .92rem; color: var(--gray-900);
  margin-bottom: 14px; padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-xlight);
  text-decoration: none;
}
.mega-col-head:hover { color: var(--primary); }
.mega-col-head-icon { font-size: 1rem; }

.mega-section { margin-bottom: 14px; }

.mega-section-label {
  display: block; font-size: .68rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gray-400); margin-bottom: 5px; margin-top: 2px;
}

.mega-col a:not(.mega-col-head) {
  display: block; font-size: .84rem; color: var(--gray-700);
  padding: 3px 0 3px 2px; transition: var(--transition);
  text-decoration: none; white-space: nowrap;
}
.mega-col a:not(.mega-col-head):hover {
  color: var(--primary); padding-left: 8px;
}

.mega-coming {
  display: inline-block; background: var(--primary-xlight);
  color: var(--primary-dark); padding: 3px 8px; border-radius: 10px;
  font-size: .72rem; font-weight: 600; margin-top: 6px;
}

.mega-note {
  font-size: .78rem; color: var(--gray-400); line-height: 1.55;
  margin-top: 8px;
}

/* Mega dropdown mobile */
@media (max-width: 768px) {
  .mega-dropdown {
    position: static; min-width: 0; transform: none !important;
    box-shadow: none; border: none; border-radius: 0;
    background: rgba(124,179,66,.08); padding: 8px 0 8px 14px;
    margin-left: 14px; border-left: 3px solid var(--primary);
    display: none;
  }
  .mega-dropdown { transition-delay: 0s; }
  .mega-dropdown::before { display: none; }
  .has-mega.open .mega-dropdown { display: block; opacity: 1; visibility: visible; }
  .mega-inner { grid-template-columns: 1fr; gap: 4px; }
  .mega-cards { grid-template-columns: 1fr; gap: 4px; }
  .mega-card {
    min-height: 0; background: transparent; border: none;
    border-left: 3px solid var(--primary); border-radius: 0; padding: 8px 12px;
  }
  .mega-card:hover { transform: none; box-shadow: none; background: rgba(124,179,66,.08); }
  .mega-card h4 { color: rgba(255,255,255,.9); font-size: .95rem; }
  .mega-card:hover h4 { color: var(--primary-light); }
  .mega-card p { color: rgba(255,255,255,.6); }
  .mega-card-cta { display: none; }
  .mega-card--list:hover { background: transparent; }
  .mega-card h4 a { color: rgba(255,255,255,.9); }
  .mega-links a { color: rgba(255,255,255,.7); }
  .mega-links a:hover { color: var(--primary-light); }
  .mega-card--calibration .mega-links strong { color: rgba(255,255,255,.9); }
  .mega-card--calibration .mega-links a:hover strong { color: var(--primary-light); }
  .mega-col-head { padding-bottom: 4px; margin-bottom: 6px; font-size: .9rem; color: rgba(255,255,255,.9); border-bottom-color: rgba(124,179,66,.3); }
  .mega-col a:not(.mega-col-head) { color: rgba(255,255,255,.7); }
  .mega-col a:not(.mega-col-head):hover { color: var(--primary-light); }
  .mega-col { margin-bottom: 10px; }
  .mega-section-label { color: rgba(255,255,255,.35); }
}

/* ============================================================
   WHY MEZUR  &  WHAT WE DO  PAGE STYLES
   ============================================================ */
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.trust-card {
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 28px;
  transition: var(--transition);
}
.trust-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.trust-icon { font-size: 2rem; margin-bottom: 14px; }
.trust-card h3 { margin-bottom: 8px; }
.trust-card p  { font-size: .88rem; color: var(--gray-600); line-height: 1.65; }

/* Product list hierarchy */
.product-hierarchy { display: flex; flex-direction: column; gap: 8px; }
.product-family {
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: var(--radius); overflow: hidden; transition: var(--transition);
}
.product-family:hover { box-shadow: var(--shadow); border-color: var(--primary); }
.product-family-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; font-weight: 600; color: var(--gray-800);
  text-decoration: none; font-size: .95rem;
}
.product-family-head .pf-count {
  background: var(--primary-xlight); color: var(--primary-dark);
  padding: 2px 8px; border-radius: 10px; font-size: .75rem;
}
.product-family-head:hover { color: var(--primary); }

/* Coming soon badge */
.coming-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, #4a4a4a, #333333);
  color: rgba(255,255,255,.7); padding: 4px 12px; border-radius: 20px;
  font-size: .78rem; font-weight: 600; letter-spacing: .5px;
}

/* Overview cards for category pages */
.cat-overview-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin-bottom: 48px; }
.cat-card {
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 22px; text-align: center;
  transition: var(--transition); text-decoration: none; display: block;
}
.cat-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--primary); }
.cat-card-icon { font-size: 2.5rem; margin-bottom: 12px; }
.cat-card h3 { font-size: 1rem; margin-bottom: 6px; color: var(--gray-900); }
.cat-card p { font-size: .83rem; color: var(--gray-600); }
.cat-card-count {
  display: inline-block; background: var(--primary-xlight);
  color: var(--primary-dark); padding: 2px 8px; border-radius: 10px;
  font-size: .72rem; font-weight: 600; margin-top: 8px;
}

/* Image placeholder */
.img-placeholder {
  background: var(--gray-100); border: 2px dashed var(--gray-200);
  border-radius: var(--radius-lg); height: 240px;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; color: var(--gray-400);
  font-size: .88rem; gap: 8px; margin-bottom: 22px;
}
.img-placeholder span { font-size: 2.5rem; }

/* ============================================================
   PRODUCT IMAGE GALLERY  (reusable across product pages)
   ============================================================ */
.product-gallery { margin-bottom: 22px; }
.pg-main {
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 16px;
  display: flex; align-items: center; justify-content: center;
  min-height: 360px;
}
.pg-main img {
  max-width: 100%; max-height: 540px; width: auto;
  object-fit: contain; border-radius: var(--radius);
}
.pg-thumbs {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px; margin-top: 12px;
}
.pg-thumb {
  background: #fff; border: 2px solid var(--gray-200);
  border-radius: var(--radius); padding: 6px; cursor: pointer;
  aspect-ratio: 1 / 1; overflow: hidden; transition: var(--transition);
}
.pg-thumb img { width: 100%; height: 100%; object-fit: contain; display: block; }
.pg-thumb:hover { border-color: var(--primary); }
.pg-thumb.active { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(124,179,66,.18); }

/* ============================================================
   PRODUCT TILES  (category index pages: model code + name + desc)
   Scoped to .product-tiles so it can be rolled out page by page.
   ============================================================ */
.product-tiles { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.product-tiles .product-card {
  display: flex; flex-direction: column; padding: 0;
  background: #fff; border: 1px solid var(--gray-200);
  border-top: 4px solid var(--primary); border-radius: var(--radius-lg);
  overflow: hidden; text-decoration: none; transition: var(--transition);
}
.product-tiles .product-card:hover {
  box-shadow: var(--shadow-lg); transform: translateY(-4px);
  border-color: var(--primary); border-top-color: var(--primary-dark);
}
.product-tiles .product-card-img {
  height: 200px; background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  padding: 14px; border-bottom: 1px solid var(--gray-200);
}
.product-tiles .product-card-img img { max-width: 100%; max-height: 100%; width: auto; object-fit: contain; }
.product-tiles .product-card-code {
  font-size: 1.9rem; font-weight: 900; letter-spacing: 1px;
  color: var(--primary); padding: 22px 24px 0;
}
.product-tiles .product-card-title {
  font-size: 1.02rem; font-weight: 700; color: var(--gray-900);
  padding: 2px 24px 0; margin: 0;
}
.product-tiles .product-card-desc {
  font-size: .86rem; color: var(--gray-600); line-height: 1.6;
  padding: 10px 24px 0; margin: 0; flex: 1;
}
.product-tiles .product-card-models { display: flex; flex-wrap: wrap; gap: 6px; padding: 16px 24px 22px; }
.product-tiles .product-card-models span {
  font-size: .7rem; font-weight: 600; color: var(--primary-dark);
  background: var(--primary-xlight); border-radius: 20px; padding: 3px 10px;
}

/* Level gauge cards: square product image on the left, details on the right. */
.side-image-product-tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.product-tiles.side-image-product-tiles .product-card {
  display: grid; grid-template-columns: 260px minmax(0, 1fr);
  grid-template-rows: auto auto 1fr auto; height: 260px;
}
.product-tiles.side-image-product-tiles .product-card-img {
  grid-column: 1; grid-row: 1 / -1;
  width: 260px; height: 260px; min-height: 0; padding: 0;
  border-right: 1px solid var(--gray-200); border-bottom: 0;
  background: #fff;
}
.product-tiles.side-image-product-tiles .product-card-img img {
  width: 100%; height: 100%; max-width: none; max-height: none;
  object-fit: contain; aspect-ratio: 1 / 1;
}
.product-tiles.side-image-product-tiles .product-card-code,
.product-tiles.side-image-product-tiles .product-card-title,
.product-tiles.side-image-product-tiles .product-card-desc,
.product-tiles.side-image-product-tiles .product-card-models { grid-column: 2; min-width: 0; }
.product-tiles.side-image-product-tiles .product-card-code { padding-top: 20px; }

/* Content-heavy product cards expand so wrapped specifications never clip. */
.product-tiles.auto-height-product-tiles .product-card {
  grid-template-columns: 300px minmax(0, 1fr); height: auto; min-height: 300px;
}
.product-tiles.auto-height-product-tiles .product-card-img {
  width: 300px; height: 100%; min-height: 300px;
}

/* LTMR uses a wide transparent source canvas; enlarge it inside the clipped tile. */
.product-tiles .product-card--ltmr .product-card-img img { transform: scale(1.6); }

/* Preferred product sequence on category menu pages. */
.transmitter-menu-order .product-card[href$="/ltrx.html"] { order: 1; }
.transmitter-menu-order .product-card[href$="/ltr.html"]  { order: 2; }
.transmitter-menu-order .product-card[href$="/ltmr.html"] { order: 3; }
.transmitter-menu-order .product-card[href$="/lth.html"]  { order: 4; }
.transmitter-menu-order .product-card[href$="/ltc.html"]  { order: 5; }

.switch-menu-order .product-card[href$="/lsms.html"] { order: 1; }
.switch-menu-order .product-card[href$="/lsmt.html"] { order: 2; }
.switch-menu-order .product-card[href$="/lsdt.html"] { order: 3; }
.switch-menu-order .product-card[href$="/lsm.html"]  { order: 4; }
.switch-menu-order .product-card[href$="/lsc.html"]  { order: 5; }
.switch-menu-order .product-card[href$="/lsct.html"] { order: 6; }

.gauge-menu-order .product-card[href$="/lgt.html"] { order: 1; }
.gauge-menu-order .product-card[href$="/lgm.html"] { order: 2; }
.gauge-menu-order .product-card[href$="/lgb.html"] { order: 3; }
.gauge-menu-order .product-card[href$="/lgf.html"] { order: 4; }

/* Preferred sequence on the main Products page. */
.main-product-order .product-card[href$="/level-liv.html"] { order: 1; }
.main-product-order .product-card[href$="/level-transmitters/index.html"] { order: 2; }
.main-product-order .product-card[href$="/level-gauges/index.html"] { order: 3; }
.main-product-order .product-card[href$="/level-switches/index.html"] { order: 4; }
.main-product-order .product-card[href$="/level-controllers/lc.html"] { order: 5; }

/* Product overview: content-first category tiles without imagery. */
.category-showcase {
  display: grid; grid-template-columns: minmax(0, 1fr); gap: 22px;
}
.category-showcase .product-card {
  position: relative; min-height: 340px; padding: 38px 44% 34px 38px;
  overflow: hidden; display: flex; flex-direction: column; isolation: isolate;
  background: #101110 !important; border: 1px solid rgba(255,255,255,.1); border-radius: 20px;
  box-shadow: 0 14px 42px rgba(0,0,0,.13);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.category-showcase .product-card::before { content: none; }
.category-showcase .product-card::after {
  content: "Explore category  \2192"; display: block; margin-top: auto; padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.15); color: var(--primary-light);
  font-size: .72rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase;
}
.category-showcase .product-card:hover {
  transform: translateY(-4px); border-color: rgba(156,204,101,.48); box-shadow: 0 22px 58px rgba(0,0,0,.2);
}
.category-showcase .product-card-icon { display: none; }
.category-showcase .product-card-media {
  position: absolute; z-index: -2; inset: 0 0 0 60%;
  display: flex; align-items: center; justify-content: center; overflow: hidden; background: #fff;
}
.category-showcase .product-card-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg,#101110 0%,rgba(16,17,16,.92) 8%,rgba(16,17,16,.2) 34%,transparent 58%);
  pointer-events: none;
}
.category-showcase .product-card-media img {
  width: 100%; height: 100%; padding: 20px; object-fit: contain; object-position: center;
  transition: transform .65s ease;
}
.category-showcase .product-card:hover .product-card-media img { transform: scale(1.025); }
.category-showcase .product-card[href$="/level-liv.html"] .product-card-media img,
.weighing-showcase .product-card-media img,
.weighing-range-showcase .product-card-media img { padding: 0; object-fit: cover; }
.category-showcase .product-card-code {
  margin: 0 0 7px; color: var(--primary-light); font-size: .68rem; font-weight: 900;
  letter-spacing: .11em; text-transform: uppercase;
}
.category-showcase .product-card-title {
  margin: 0 0 11px; color: #fff;
  font-size: clamp(1.55rem,2.5vw,2.15rem); line-height: 1.12; letter-spacing: -.025em;
}
.category-showcase .product-card-desc {
  margin: 0 0 19px; color: rgba(255,255,255,.7); font-size: .86rem; line-height: 1.6;
}
.category-showcase .product-card-models {
  display: flex; flex-wrap: wrap; align-content: flex-start; gap: 6px; margin-bottom: 18px;
}
.category-showcase .product-card-models span {
  padding: 5px 9px; border: 1px solid rgba(255,255,255,.15); border-radius: 99px;
  background: rgba(255,255,255,.07); color: rgba(255,255,255,.78); font-size: .67rem; line-height: 1.3;
}
.category-showcase .product-card-models b { color: var(--primary-light); }
.weighing-overview { background: var(--gray-100); }
.weighing-showcase { max-width: none; margin: 0; }
.weighing-range-showcase .product-card {
  min-height: 290px; padding-top: 32px; padding-bottom: 28px;
  justify-content: center;
}
.weighing-range-showcase .product-card::after { margin-top: 6px; }

@media (max-width: 760px) {
  .category-showcase .product-card { min-height: 560px; padding: 28px 24px 250px; }
  .category-showcase .product-card-media { inset: auto 0 0; height: 230px; }
  .category-showcase .product-card-media::after {
    background: linear-gradient(180deg,#101110 0%,rgba(16,17,16,.3) 30%,transparent 62%);
  }
  .weighing-range-showcase .product-card { min-height: 510px; padding-bottom: 230px; }
}

/* ============================================================
   LIV VOLUMETRIC LEVEL INDICATOR
   ============================================================ */
.liv-hero { min-height: 560px; }
.liv-hero .page-hero-img {
  opacity: .82; background-color: #070707; background-position: right center;
  background-size: contain; background-repeat: no-repeat;
}
.liv-hero::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, #070707 0%, rgba(7,7,7,.96) 24%, rgba(7,7,7,.68) 52%, rgba(7,7,7,.12) 82%),
    linear-gradient(180deg, rgba(7,7,7,.36), transparent 30%, transparent 70%, rgba(7,7,7,.38));
}
.liv-hero .container { position: relative; z-index: 2; }
.liv-hero-points { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 24px; }
.liv-hero-points span {
  padding: 7px 13px; border: 1px solid rgba(156,204,101,.38); border-radius: 20px;
  color: var(--primary-light); background: rgba(124,179,66,.12); font-size: .78rem; font-weight: 600;
}
.liv-intro { background: #fff; }
.liv-signal-flow {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 14px; align-items: center;
}
.liv-flow-step {
  min-height: 168px; padding: 24px 20px; border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.liv-flow-step b { color: var(--primary); font-size: .75rem; letter-spacing: 1.5px; margin-bottom: 24px; }
.liv-flow-step strong { color: var(--gray-900); font-size: 1rem; margin-bottom: 7px; }
.liv-flow-step span { color: var(--gray-500); font-size: .8rem; line-height: 1.5; }
.liv-flow-result { background: var(--dark); border-color: var(--dark); }
.liv-flow-result strong { color: #fff; }
.liv-flow-result span { color: rgba(255,255,255,.58); }
.liv-flow-arrow { color: var(--primary); font-size: 1.6rem; font-weight: 700; }
.liv-variant-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.liv-variant-card {
  background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  overflow: hidden; transition: var(--transition);
}
.liv-variant-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.liv-variant-image { height: 310px; padding: 22px; background: linear-gradient(145deg,#fff,#ededed); }
.liv-variant-image img { width: 100%; height: 100%; object-fit: contain; }
.liv-variant-copy { padding: 24px; border-top: 1px solid var(--gray-200); }
.liv-variant-copy > span, .liv-tank-card div > span {
  display: block; color: var(--primary); font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.4px; margin-bottom: 7px;
}
.liv-variant-copy h3 { margin-bottom: 8px; }
.liv-variant-copy p { font-size: .86rem; color: var(--gray-600); margin: 0; }
.liv-tanks-section { background: #171717; }
.liv-tanks-section .section-title { color: #fff; }
.liv-tanks-section .section-subtitle { color: rgba(255,255,255,.58); }
.liv-tank-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.liv-tank-card {
  position: relative; min-height: 430px; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid rgba(255,255,255,.1); background: #0e0e0e;
}
.liv-tank-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain;
  background: #070707; transition: transform .5s ease;
}
.liv-tank-card:hover img { filter: brightness(1.06); }
.liv-tank-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg,rgba(7,7,7,.12) 0%,transparent 38%,rgba(7,7,7,.72) 70%,#070707 100%);
}
.liv-tank-card div { position: absolute; z-index: 2; left: 24px; right: 24px; bottom: 24px; }
.liv-tank-card h3 { color: #fff; margin-bottom: 7px; }
.liv-tank-card p { color: rgba(255,255,255,.62); font-size: .84rem; line-height: 1.6; margin: 0; }
.liv-quote-card {
  background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  padding: 24px; text-align: center;
}
.liv-quote-card h4 { margin-bottom: 8px; }
.liv-quote-card p { font-size: .88rem; color: var(--gray-600); margin-bottom: 16px; }
.liv-quote-card .btn { width: 100%; justify-content: center; }

@media (max-width: 1000px) {
  .liv-signal-flow { grid-template-columns: 1fr 1fr; }
  .liv-flow-arrow { display: none; }
  .liv-variant-grid, .liv-tank-grid { grid-template-columns: 1fr; }
  .liv-variant-card { display: grid; grid-template-columns: minmax(260px, 42%) 1fr; }
  .liv-variant-image { height: 280px; }
  .liv-variant-copy { border-top: 0; border-left: 1px solid var(--gray-200); display: flex; flex-direction: column; justify-content: center; }
  .liv-tank-card { min-height: 390px; }
}

@media (max-width: 600px) {
  .liv-hero { min-height: 520px; }
  .liv-hero .page-hero-img { background-position: center bottom; background-size: 100% auto; }
  .liv-hero::after {
    background: linear-gradient(180deg,#070707 0%,rgba(7,7,7,.9) 42%,rgba(7,7,7,.28) 72%,rgba(7,7,7,.65) 100%);
  }
  .liv-signal-flow { grid-template-columns: 1fr; }
  .liv-flow-step { min-height: 0; }
  .liv-variant-card { display: block; }
  .liv-variant-image { height: 270px; }
  .liv-variant-copy { border-left: 0; border-top: 1px solid var(--gray-200); }
  .liv-tank-card { min-height: 330px; }
}

@media (max-width: 1100px) {
  .side-image-product-tiles { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .product-tiles.side-image-product-tiles .product-card { display: flex; height: auto; min-height: 0; }
  .product-tiles.side-image-product-tiles .product-card-img {
    width: 100%; height: auto; min-height: 0; aspect-ratio: 1 / 1;
    border-right: 0; border-bottom: 1px solid var(--gray-200);
  }
}

/* ============================================================
   HOMEPAGE + WHY MEZUR — 2026 EDITORIAL REDESIGN
   ============================================================ */
.home-redesign, .why-redesign { font-family: 'Manrope', 'Segoe UI', sans-serif; color: #20231f; }
.home-redesign main, .why-redesign main { overflow: hidden; }
.home-redesign section, .why-redesign section { padding: 76px 0; }
.eyebrow { display:inline-flex; align-items:center; gap:10px; margin-bottom:22px; color:#62705d; font-size:.7rem; font-weight:800; letter-spacing:.15em; text-transform:uppercase; }
.eyebrow i { display:block; width:22px; height:2px; background:var(--primary); }
.eyebrow-light { color:rgba(255,255,255,.68); }
.text-link { display:inline-flex; align-items:center; gap:9px; padding:7px 0; color:#1b2018; border-bottom:1px solid rgba(27,32,24,.35); font-size:.88rem; font-weight:700; }
.text-link:hover { color:var(--primary-dark); border-color:var(--primary); }
.text-link-light { color:#fff; border-color:rgba(255,255,255,.38); }
.text-link-light:hover { color:var(--primary-light); }
.btn-ink { background:#1a1d19; color:#fff; border-color:#1a1d19; }
.btn-ink:hover { background:var(--primary); border-color:var(--primary); transform:translateY(-2px); }

.home-hero { position:relative; min-height:640px; height:min(720px,100vh); padding:var(--header-h) 0 0 !important; display:flex; align-items:stretch; background:#10140f; }
.home-hero-image { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center 34%; }
.home-hero-shade { position:absolute; inset:0; background:linear-gradient(90deg,rgba(10,14,9,.96) 0%,rgba(10,14,9,.83) 36%,rgba(10,14,9,.28) 66%,rgba(10,14,9,.08) 100%),linear-gradient(0deg,rgba(8,12,8,.45),transparent 45%); }
.home-hero-inner { position:relative; z-index:2; width:100%; display:flex; flex-direction:column; justify-content:center; padding-top:80px; padding-bottom:40px; }
.home-hero-copy { max-width:730px; }
.hero-capabilities { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:27px; }
.hero-capabilities span { padding:8px 13px; border:1px solid rgba(156,204,101,.52); border-radius:100px; background:rgba(124,179,66,.18); color:#c7e6a6; font-size:.75rem; font-weight:800; letter-spacing:.055em; }
.home-hero h1 { max-width:760px; color:#fff; font-size:clamp(2.8rem,5.4vw,5.35rem); line-height:1; letter-spacing:-.055em; font-weight:700; }
.home-hero h1 em, .why-hero h1 em { color:var(--primary-light); font-style:normal; }
.home-hero-copy > p { max-width:650px; margin:27px 0 32px; color:rgba(255,255,255,.72); font-size:1rem; line-height:1.7; }
.home-hero-copy > p strong { color:#fff; font-size:1.03rem; font-weight:700; }
.home-hero .hero-actions { align-items:center; gap:28px; }

.intro-statement { background:#f2f3ef; }
.intro-grid { display:grid; grid-template-columns:1.05fr .95fr; gap:100px; align-items:end; }
.intro-grid h2, .difference-intro h2, .made-india-grid h2 { font-size:clamp(2.3rem,4vw,4.4rem); line-height:1.06; letter-spacing:-.05em; }
.intro-copy { padding-left:40px; border-left:1px solid #cdd2c9; }
.intro-copy p { color:#4f574c; font-size:1rem; }
.intro-copy p + p { margin-top:16px; font-weight:700; color:#242923; }
.process-variables { display:grid; grid-template-columns:repeat(4,1fr); margin-top:48px; border-top:1px solid #cdd2c9; border-left:1px solid #cdd2c9; }
.process-variables > div { display:grid; grid-template-columns:42px 1fr; align-items:center; padding:20px; border-right:1px solid #cdd2c9; border-bottom:1px solid #cdd2c9; }
.process-variables span { grid-row:span 2; width:32px; height:32px; display:grid; place-items:center; border-radius:50%; background:#1b211a; color:var(--primary-light); font-size:.75rem; font-weight:800; }
.process-variables b { font-size:.86rem; }
.process-variables small { color:#747b71; font-size:.68rem; }

.solution-path { position:relative; min-height:720px; padding:0 !important; display:flex; align-items:stretch; overflow:hidden; background:#111711; color:#fff; }
.solution-path-bg { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center 48%; }
.solution-path-shade { position:absolute; z-index:1; inset:0; background:linear-gradient(90deg,rgba(8,13,8,.95) 0%,rgba(8,13,8,.83) 34%,rgba(8,13,8,.3) 67%,rgba(8,13,8,.14) 100%),linear-gradient(0deg,rgba(6,10,6,.9) 0%,rgba(6,10,6,.18) 58%,rgba(6,10,6,.18) 100%); }
.solution-path-inner { position:relative; z-index:2; width:100%; padding-top:84px; padding-bottom:72px; display:flex; flex-direction:column; justify-content:space-between; }
.solution-path-head { max-width:660px; margin-bottom:78px; }
.solution-path-head .eyebrow { color:var(--primary-light); }
.solution-path-head h2 { margin-top:14px; max-width:660px; color:#fff; font-size:clamp(2.35rem,4vw,4.35rem); line-height:1.03; letter-spacing:-.055em; }
.solution-path-head > p { max-width:540px; margin-top:22px; color:rgba(255,255,255,.66); font-size:.92rem; line-height:1.7; }
.solution-path-grid { display:grid; grid-template-columns:repeat(4,1fr); border-top:1px solid rgba(255,255,255,.22); border-left:1px solid rgba(255,255,255,.22); backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px); }
.solution-path-grid article { position:relative; min-height:190px; padding:25px 24px 23px; border-right:1px solid rgba(255,255,255,.22); border-bottom:1px solid rgba(255,255,255,.22); background:rgba(9,15,9,.55); transition:background .3s ease,transform .3s ease; }
.solution-path-grid article:hover { z-index:2; background:rgba(91,139,45,.82); transform:translateY(-5px); }
.solution-path-grid article > span { display:block; margin-bottom:30px; color:var(--primary-light); font-size:.68rem; font-weight:900; letter-spacing:.18em; }
.solution-path-grid article:hover > span { color:#fff; }
.solution-path-grid b { display:block; margin-bottom:9px; color:#fff; font-size:1.08rem; }
.solution-path-grid p { color:rgba(255,255,255,.62); font-size:.76rem; line-height:1.6; }
.solution-path-grid article:hover p { color:rgba(255,255,255,.86); }

.capability-section { background:#fff; }
.capability-heading { display:flex; justify-content:space-between; gap:30px; align-items:flex-end; margin-bottom:38px; padding-bottom:18px; border-bottom:1px solid #d9dcd6; }
.capability-heading span { font-size:1.05rem; font-weight:800; }
.capability-heading p { color:#6c7469; font-size:.87rem; }
.capability-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:14px; }
.capability-card { position:relative; min-height:390px; padding:30px; display:flex; overflow:hidden; background:#f1f3ef; border:1px solid #e0e3dd; transition:transform .35s ease,box-shadow .35s ease; }
.capability-card:hover { transform:translateY(-4px); box-shadow:0 22px 50px rgba(24,34,22,.11); }
.capability-number { position:absolute; top:25px; right:28px; color:#8b9388; font-size:.7rem; font-weight:800; letter-spacing:.12em; }
.capability-content { position:relative; z-index:2; max-width:440px; margin-top:auto; }
.capability-content > span { color:var(--primary-dark); font-size:.68rem; font-weight:800; letter-spacing:.12em; text-transform:uppercase; }
.capability-content h3 { margin:8px 0 13px; font-size:clamp(1.8rem,3vw,3rem); letter-spacing:-.04em; }
.capability-content p { max-width:430px; margin-bottom:22px; color:#5a6257; font-size:.88rem; line-height:1.65; }
.capability-content b { font-size:.78rem; }
.capability-card-featured { min-height:550px; grid-row:span 2; background:#e9eee5; }
.capability-card-featured .capability-content { width:55%; }
.capability-visual { position:absolute; inset:20px 0 0 42%; display:flex; align-items:center; justify-content:center; }
.capability-visual::after { content:''; position:absolute; inset:0; background:linear-gradient(90deg,#e9eee5 0%,rgba(233,238,229,.2) 35%,transparent 60%); }
.capability-visual img { width:100%; height:100%; object-fit:contain; object-position:right center; }
.capability-card-dark { background:#192019; border-color:#192019; }
.capability-card-dark .capability-number { color:rgba(255,255,255,.4); }
.capability-card-dark h3 { color:#fff; }
.capability-card-dark p { color:rgba(255,255,255,.62); }
.capability-card-dark .capability-content > span,.capability-card-dark b { color:var(--primary-light); }

.compact-offerings { background:#fff; }
.compact-offerings-head { display:grid; grid-template-columns:1.1fr .7fr; gap:80px; align-items:end; margin-bottom:40px; }
.compact-offerings-head h2 { font-size:clamp(2.2rem,3.8vw,4rem); line-height:1.06; letter-spacing:-.05em; }
.compact-offerings-head > p { padding-left:28px; border-left:1px solid #d7dbd4; color:#626a60; font-size:.9rem; }
.compact-offerings-grid { display:grid; grid-template-columns:repeat(4,1fr); border-top:1px solid #d6dad3; border-left:1px solid #d6dad3; }
.compact-offerings-grid a { min-height:340px; padding:0; display:flex; flex-direction:column; border-right:1px solid #d6dad3; border-bottom:1px solid #d6dad3; transition:background .3s ease,color .3s ease; overflow:hidden; }
.compact-offerings-grid a:hover { background:#1a2019; color:#fff; }
.compact-offerings-grid .offering-image { position:relative; display:block; height:155px; overflow:hidden; background:#e9ede7; }
.compact-offerings-grid .offering-image::after { content:''; position:absolute; inset:0; z-index:1; background:linear-gradient(180deg,rgba(6,9,6,.08),rgba(6,9,6,0) 38%,rgba(6,9,6,.4) 100%),radial-gradient(ellipse at center,transparent 42%,rgba(5,8,5,.24) 100%); pointer-events:none; transition:opacity .35s ease; }
.compact-offerings-grid a:hover .offering-image::after { opacity:.72; }
.compact-offerings-grid .offering-image img { width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.compact-offerings-grid a:hover .offering-image img { transform:scale(1.04); }
.compact-offerings-grid .offering-copy { flex:1; padding:22px; display:flex; flex-direction:column; }
.compact-offerings-grid h3 { margin:0 0 10px; font-size:1.45rem; letter-spacing:-.03em; }
.compact-offerings-grid a:hover h3 { color:#fff; }
.compact-offerings-grid p { color:#697166; font-size:.78rem; line-height:1.6; }
.compact-offerings-grid a:hover p { color:rgba(255,255,255,.55); }
.compact-offerings-grid b { margin-top:auto; padding-top:18px; font-size:.72rem; }
.compact-offerings-link { display:flex; justify-content:space-between; align-items:center; margin-top:20px; padding:13px 0; border-bottom:1px solid #d6dad3; font-size:.8rem; font-weight:700; }
.compact-offerings-link span { color:var(--primary-dark); }

.lifecycle-section { background:#171c16; color:#fff; }
.lifecycle-grid { display:grid; grid-template-columns:.9fr 1.1fr; gap:120px; align-items:center; }
.lifecycle-copy h2 { color:#fff; font-size:clamp(2.5rem,4.3vw,4.6rem); line-height:1.04; letter-spacing:-.05em; }
.lifecycle-copy > p { max-width:500px; margin:24px 0 32px; color:rgba(255,255,255,.58); }
.lifecycle-steps { display:grid; grid-template-columns:repeat(2,1fr); border-top:1px solid rgba(255,255,255,.14); border-left:1px solid rgba(255,255,255,.14); }
.lifecycle-steps > div { min-height:145px; padding:23px; border-right:1px solid rgba(255,255,255,.14); border-bottom:1px solid rgba(255,255,255,.14); }
.lifecycle-steps b { display:block; color:#fff; font-size:1.18rem; }
.lifecycle-steps p { margin-top:4px; color:rgba(255,255,255,.5); font-size:.82rem; }

.home-about { background:#f4f4f1; }
.home-about-grid { display:grid; grid-template-columns:1.08fr .92fr; gap:84px; align-items:center; }
.home-about-image { position:relative; height:510px; overflow:hidden; }
.home-about-image::after { content:''; position:absolute; inset:0; z-index:1; background:linear-gradient(180deg,rgba(5,8,5,.06),transparent 42%,rgba(5,8,5,.46) 100%),radial-gradient(ellipse at center,transparent 45%,rgba(5,8,5,.3) 100%); pointer-events:none; }
.home-about-image img { width:100%; height:100%; object-fit:cover; }
.image-note { position:absolute; z-index:2; right:-25px; bottom:30px; width:235px; padding:22px; background:var(--primary); color:#fff; }
.image-note span { display:block; font-size:.65rem; text-transform:uppercase; letter-spacing:.14em; opacity:.75; }
.image-note strong { display:block; margin-top:7px; line-height:1.35; }
.home-about-copy h2 { font-size:clamp(2.35rem,4vw,4.3rem); line-height:1.04; letter-spacing:-.05em; }
.home-about-copy > p { margin:25px 0 30px; color:#5d6459; }
.home-values { margin-bottom:32px; border-top:1px solid #d2d6ce; }
.home-values div { display:grid; grid-template-columns:150px 1fr; gap:20px; padding:17px 0; border-bottom:1px solid #d2d6ce; }
.home-values b { font-size:.82rem; }
.home-values span { color:#6b7368; font-size:.78rem; }

.industries-strip { padding:74px 0 !important; background:#fff; }
.industry-marquee { display:flex; flex-wrap:wrap; gap:10px; }
.industry-marquee span { padding:11px 18px; border:1px solid #d7dbd4; border-radius:100px; color:#4d554a; font-size:.8rem; font-weight:600; }
.industries-showcase { background:#171c16; color:#fff; }
.industries-head { display:grid; grid-template-columns:1.2fr .65fr; gap:80px; align-items:end; margin-bottom:42px; }
.industries-head h2 { color:#fff; font-size:clamp(2.2rem,4vw,4rem); line-height:1.06; letter-spacing:-.05em; }
.industries-head > p { color:rgba(255,255,255,.53); font-size:.86rem; }
.industry-logo-grid { display:grid; grid-template-columns:repeat(4,1fr); border-top:1px solid rgba(255,255,255,.15); border-left:1px solid rgba(255,255,255,.15); }
.industry-logo-grid > div { position:relative; min-height:235px; padding:0; overflow:hidden; border-right:1px solid rgba(255,255,255,.15); border-bottom:1px solid rgba(255,255,255,.15); background:#101510; }
.industry-logo-grid > div::after { content:''; position:absolute; z-index:1; inset:0; background:linear-gradient(180deg,rgba(7,10,7,.06) 22%,rgba(7,10,7,.34) 60%,rgba(7,10,7,.94) 100%),radial-gradient(ellipse at center,transparent 38%,rgba(5,8,5,.34) 100%); pointer-events:none; transition:background .3s ease; }
.industry-logo-grid > div:hover { background:rgba(124,179,66,.13); }
.industry-logo-grid > div:hover::after { background:linear-gradient(180deg,rgba(7,10,7,0) 25%,rgba(7,10,7,.2) 58%,rgba(7,10,7,.84) 100%); }
.industry-photo { position:absolute; inset:0; display:block; width:100%; height:100%; background-image:url('../images/mezur-industry-grid.png'); background-size:400% auto; background-repeat:no-repeat; filter:saturate(.88); transition:transform .45s ease,filter .45s ease; }
.industry-logo-grid > div:hover .industry-photo { transform:scale(1.025); filter:saturate(1); }
.industry-photo-1 { background-position:0% 0%; }
.industry-photo-2 { background-position:33.333% 0%; }
.industry-photo-3 { background-position:66.666% 0%; }
.industry-photo-4 { background-position:100% 0%; }
.industry-photo-5 { background-position:0% 100%; }
.industry-photo-6 { background-position:33.333% 100%; }
.industry-photo-7 { background-position:66.666% 100%; }
.industry-photo-8 { background-position:100% 100%; }
.industry-logo-grid b { position:absolute; z-index:2; left:0; right:0; bottom:0; padding:22px; color:#fff; font-size:1.08rem; line-height:1.28; text-shadow:0 2px 16px rgba(0,0,0,.45); }
.conversation-cta { padding:80px 0 !important; background:var(--primary); }
.conversation-inner { display:flex; align-items:flex-end; justify-content:space-between; gap:50px; }
.conversation-inner > div > span { color:rgba(255,255,255,.68); font-size:.75rem; font-weight:800; letter-spacing:.08em; text-transform:uppercase; }
.conversation-inner h2 { max-width:720px; margin-top:8px; color:#fff; font-size:clamp(2rem,4vw,4rem); line-height:1.08; letter-spacing:-.045em; }
.conversation-actions { display:flex; flex-direction:column; align-items:flex-start; gap:10px; }

/* Why Mezur */
.why-hero { position:relative; min-height:590px; padding:var(--header-h) 0 0 !important; display:flex; align-items:stretch; background:#171c16; color:#fff; }
.why-hero-bg { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center 17%; }
.why-hero-shade { position:absolute; inset:0; background:linear-gradient(90deg,rgba(10,14,9,.94) 0%,rgba(10,14,9,.76) 39%,rgba(10,14,9,.26) 69%,rgba(10,14,9,.08) 100%),linear-gradient(0deg,rgba(7,10,7,.42),transparent 55%); }
.why-hero-inner { position:relative; z-index:2; width:100%; padding-top:40px; padding-bottom:54px; display:flex; flex-direction:column; justify-content:center; }
.why-hero .breadcrumb { margin-bottom:44px; }
.why-hero-copy-full { max-width:680px; }
.why-hero-copy-full > p { max-width:550px; margin:22px 0 26px; color:rgba(255,255,255,.67); font-size:.86rem; line-height:1.7; }
.why-hero-grid { display:grid; grid-template-columns:1.25fr .75fr; gap:100px; align-items:end; margin-bottom:72px; }
.why-hero h1 { color:#fff; font-size:clamp(2.5rem,4.5vw,4.45rem); line-height:1; letter-spacing:-.055em; }
.why-hero-side { padding-bottom:10px; }
.why-hero-side p { margin-bottom:28px; color:rgba(255,255,255,.64); font-size:1rem; }
.why-hero-photo { position:relative; height:470px; margin-bottom:-1px; }
.why-hero-photo img { width:100%; height:100%; object-fit:cover; }
.why-photo-caption { position:absolute; left:0; bottom:0; max-width:330px; padding:22px 26px; background:#fff; }
.why-photo-caption span { display:block; color:var(--primary-dark); font-size:.65rem; font-weight:800; letter-spacing:.13em; text-transform:uppercase; }
.why-photo-caption b { display:block; margin-top:6px; color:#1e241d; }
.why-hero-feature { position:relative; min-height:470px; overflow:hidden; }
.why-hero-feature > img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center; }
.why-hero-feature-shade { position:absolute; inset:0; background:linear-gradient(90deg,rgba(10,14,9,.9) 0%,rgba(10,14,9,.7) 40%,rgba(10,14,9,.18) 72%,rgba(10,14,9,.05) 100%),linear-gradient(0deg,rgba(8,12,8,.38),transparent 55%); }
.why-hero-feature-copy { position:relative; z-index:2; max-width:720px; min-height:470px; padding:50px 54px; display:flex; flex-direction:column; justify-content:center; align-items:flex-start; }
.why-hero-feature-copy h1 { max-width:700px; }
.why-hero-feature-copy > p { max-width:560px; margin:24px 0 28px; color:rgba(255,255,255,.68); font-size:.92rem; }

.why-manifesto { background:#f4f5f2; }
.manifesto-grid { display:grid; grid-template-columns:.28fr .72fr; gap:60px; align-items:start; }
.manifesto-grid blockquote { max-width:900px; color:#20251e; font-size:clamp(2rem,4vw,4rem); line-height:1.2; letter-spacing:-.045em; font-weight:600; }
.why-quote { max-width:820px; text-align:center; }
.why-quote .eyebrow { justify-content:center; margin-bottom:25px; }
.why-quote blockquote { position:relative; margin:0 auto; max-width:720px; color:#2b3128; font-size:clamp(1.15rem,2vw,1.7rem); line-height:1.55; letter-spacing:-.022em; font-weight:600; }
.why-quote blockquote::before { content:'\201C'; display:block; height:34px; margin-bottom:8px; color:var(--primary); font-family:Georgia,serif; font-size:3.3rem; line-height:1; }

.why-redesign section:not(.why-hero) { padding-top:64px; padding-bottom:64px; }
.why-redesign .difference-intro h2,.why-redesign .made-india-grid h2 { font-size:clamp(1.9rem,3.2vw,3.25rem); }
.why-redesign .proof-copy h2 { font-size:clamp(2rem,3.2vw,3.25rem); }
.why-redesign .paths-heading h2 { font-size:clamp(1.8rem,3vw,3rem); }
.why-redesign p { font-size:.86rem; }
.why-redesign .difference-row h3 { font-size:1.12rem; }
.difference-section { background:#fff; }
.difference-intro { display:grid; grid-template-columns:1.05fr .65fr; gap:120px; align-items:end; margin-bottom:78px; }
.difference-intro > p { padding-left:30px; border-left:1px solid #d8dbd5; color:#60685e; }
.difference-list { border-top:1px solid #ced3ca; }
.difference-row { display:grid; grid-template-columns:.8fr 1.1fr; gap:70px; align-items:start; padding:34px 0; border-bottom:1px solid #ced3ca; }
.difference-row h3 { font-size:1.35rem; letter-spacing:-.025em; }
.difference-row p { color:#626a60; font-size:.86rem; }

.proof-section { position:relative; min-height:650px; padding:0 !important; display:flex; align-items:stretch; overflow:hidden; background:#171c16; }
.proof-bg { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center; }
.proof-shade { position:absolute; z-index:1; inset:0; background:linear-gradient(90deg,rgba(8,12,8,.96) 0%,rgba(8,12,8,.85) 32%,rgba(8,12,8,.38) 57%,rgba(8,12,8,.05) 78%),linear-gradient(0deg,rgba(7,10,7,.34),transparent 55%); }
.proof-overlay { position:relative; z-index:2; width:100%; display:flex; align-items:center; padding-top:64px; padding-bottom:64px; }
.proof-grid { display:grid; grid-template-columns:1fr 1fr; min-height:560px; }
.proof-image { margin:-104px 0; }
.proof-image img { width:100%; height:100%; object-fit:cover; object-position:58% center; }
.proof-copy { width:min(510px,48%); padding:0; align-self:center; }
.proof-copy h2 { color:#fff; font-size:clamp(2.4rem,4vw,4.2rem); letter-spacing:-.05em; }
.proof-copy > p { margin:22px 0 30px; color:rgba(255,255,255,.57); }
.proof-points { border-top:1px solid rgba(255,255,255,.14); }
.proof-points li { padding:18px 0; border-bottom:1px solid rgba(255,255,255,.14); }
.proof-points b { display:block; color:#fff; font-size:.83rem; }
.proof-points span { display:block; margin-top:3px; color:rgba(255,255,255,.45); font-size:.75rem; }

.made-india-section { background:#f1f2ee; }
.made-india-grid { display:grid; grid-template-columns:1fr .8fr; gap:110px; align-items:start; }
.made-india-grid > div:last-child { padding-top:40px; }
.made-india-grid p + p { margin-top:18px; }
.values-ribbon { display:grid; grid-template-columns:repeat(4,1fr); margin-top:55px; border-top:1px solid #cbd0c7; border-bottom:1px solid #cbd0c7; }
.values-ribbon div { padding:27px 22px; border-right:1px solid #cbd0c7; }
.values-ribbon div:last-child { border-right:0; }
.values-ribbon b { display:block; font-size:1rem; }
.values-ribbon p { margin-top:4px; color:#747b71; font-size:.75rem; }

.why-paths { background:#fff; }
.paths-heading { display:flex; justify-content:space-between; align-items:end; gap:40px; margin-bottom:50px; }
.paths-heading h2 { font-size:clamp(2rem,3.5vw,3.7rem); letter-spacing:-.045em; }
.paths-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:1px; background:#d1d5ce; border:1px solid #d1d5ce; }
.paths-grid .why-path-card { position:relative; min-height:255px; padding:0; display:block; overflow:hidden; background:#172016; color:#fff; }
.why-path-card > img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition:transform .55s ease,filter .55s ease; }
.why-path-card:nth-child(1) > img { object-position:center 46%; }
.why-path-card:nth-child(3) > img { object-position:center 34%; }
.why-path-card:nth-child(4) { background:#030504; }
.why-path-card:nth-child(4) > img { top:7%; right:4%; bottom:auto; left:auto; width:62%; height:86%; object-fit:contain; object-position:right center; opacity:.88; }
.why-path-shade { position:absolute; z-index:1; inset:0; background:linear-gradient(180deg,rgba(7,11,7,.05) 20%,rgba(7,11,7,.35) 58%,rgba(7,11,7,.92) 100%),radial-gradient(ellipse at center,transparent 35%,rgba(5,8,5,.32) 100%); }
.why-path-card:nth-child(4) .why-path-shade { background:linear-gradient(90deg,#030504 0%,rgba(3,5,4,.96) 27%,rgba(3,5,4,.63) 52%,rgba(3,5,4,.12) 78%),linear-gradient(0deg,rgba(3,5,4,.88) 0%,rgba(3,5,4,.18) 68%); }
.why-path-copy { position:absolute; z-index:2; left:0; right:0; bottom:0; padding:27px; display:flex; align-items:flex-start; flex-direction:column; gap:13px; }
.why-path-copy strong { max-width:390px; color:#fff; font-size:clamp(1.35rem,2vw,2rem); line-height:1.15; letter-spacing:-.035em; text-shadow:0 2px 18px rgba(0,0,0,.5); }
.why-path-copy b { color:rgba(255,255,255,.72); font-size:.72rem; letter-spacing:.045em; text-transform:uppercase; white-space:nowrap; }
.why-path-copy i { margin-left:8px; color:var(--primary-light); font-style:normal; transition:transform .3s ease; }
.why-path-card:hover > img { transform:scale(1.035); filter:saturate(1.08); }
.why-path-card:hover .why-path-copy i { display:inline-block; transform:translateX(4px); }

@media (max-width: 900px) {
  .home-redesign section,.why-redesign section { padding:78px 0; }
  .home-hero { min-height:720px; height:auto; }
  .home-hero-image { object-position:62% 30%; }
  .home-hero-shade { background:linear-gradient(90deg,rgba(10,14,9,.94),rgba(10,14,9,.65)),linear-gradient(0deg,rgba(8,12,8,.6),transparent); }
  .intro-grid,.lifecycle-grid,.home-about-grid,.why-hero-grid,.made-india-grid { grid-template-columns:1fr; gap:50px; }
  .capability-grid { grid-template-columns:1fr; }
  .process-variables,.solution-path-grid,.industry-logo-grid { grid-template-columns:repeat(2,1fr); }
  .solution-path { min-height:760px; }
  .solution-path-head { margin-bottom:52px; }
  .solution-path-bg { object-position:58% center; }
  .industries-head { grid-template-columns:1fr; gap:25px; }
  .compact-offerings-head { grid-template-columns:1fr; gap:28px; }
  .compact-offerings-head > p { padding-left:0; border-left:0; max-width:630px; }
  .compact-offerings-grid { grid-template-columns:repeat(2,1fr); }
  .capability-card-featured { grid-row:auto; }
  .home-about-image { height:520px; }
  .why-hero-grid { margin-bottom:55px; }
  .why-hero-side { max-width:600px; }
  .why-hero-photo { height:480px; }
  .why-hero-feature,.why-hero-feature-copy { min-height:480px; }
  .why-hero { min-height:560px; }
  .manifesto-grid { grid-template-columns:1fr; gap:25px; }
  .difference-intro { grid-template-columns:1fr; gap:35px; }
  .difference-intro > p { padding-left:0; border-left:0; max-width:670px; }
  .proof-grid { grid-template-columns:1fr; }
  .proof-image { height:540px; margin:-78px 0 0; }
  .proof-section { min-height:650px; }
  .proof-bg { object-position:58% center; }
  .proof-shade { background:linear-gradient(90deg,rgba(8,12,8,.95) 0%,rgba(8,12,8,.82) 48%,rgba(8,12,8,.28) 78%),linear-gradient(0deg,rgba(7,10,7,.4),transparent 55%); }
  .proof-copy { width:min(500px,60%); padding:0; }
  .values-ribbon { grid-template-columns:repeat(2,1fr); }
  .values-ribbon div:nth-child(2) { border-right:0; }
  .values-ribbon div:nth-child(-n+2) { border-bottom:1px solid #cbd0c7; }
}

@media (max-width: 640px) {
  .home-redesign section,.why-redesign section { padding:65px 0; }
  .home-hero { min-height:650px; }
  .home-hero-inner { padding-top:100px; }
  .home-hero h1 { font-size:3.35rem; }
  .home-hero-copy > p { font-size:.94rem; }
  .home-proof { grid-template-columns:repeat(3,1fr); gap:10px; }
  .home-proof strong { font-size:1.1rem; }
  .home-proof span { font-size:.62rem; }
  .intro-copy { padding-left:0; border-left:0; }
  .process-variables,.solution-path-grid,.industry-logo-grid { grid-template-columns:1fr; }
  .process-variables { margin-top:35px; }
  .solution-path-head { align-items:flex-start; flex-direction:column; gap:5px; }
  .solution-path { min-height:auto; }
  .solution-path-inner { padding-top:68px; padding-bottom:58px; }
  .solution-path-head { margin-bottom:38px; }
  .solution-path-head > p { font-size:.84rem; }
  .solution-path-bg { object-position:64% center; }
  .solution-path-shade { background:linear-gradient(180deg,rgba(7,11,7,.9) 0%,rgba(7,11,7,.7) 34%,rgba(7,11,7,.88) 70%,rgba(7,11,7,.96) 100%); }
  .solution-path-grid article { min-height:150px; }
  .industry-logo-grid > div { min-height:235px; }
  .capability-heading { align-items:flex-start; flex-direction:column; }
  .capability-card,.capability-card-featured { min-height:410px; padding:24px; }
  .capability-card-featured .capability-content { width:100%; }
  .capability-visual { inset:0 0 45% 30%; opacity:.6; }
  .capability-visual::after { background:linear-gradient(0deg,#e9eee5,transparent 70%); }
  .lifecycle-grid { gap:35px; }
  .home-about-image { height:420px; }
  .image-note { right:0; width:200px; }
  .home-values div { grid-template-columns:1fr; gap:4px; }
  .conversation-inner { align-items:flex-start; flex-direction:column; }
  .why-hero { min-height:560px; padding-top:var(--header-h) !important; }
  .why-hero-bg { object-position:64% 16%; }
  .why-hero-inner { padding-top:28px; padding-bottom:40px; }
  .why-hero .breadcrumb { margin-bottom:38px; }
  .why-hero h1 { font-size:2.65rem; }
  .why-hero-photo { height:390px; margin-left:-24px; margin-right:-24px; }
  .why-hero-feature { min-height:500px; margin-left:-24px; margin-right:-24px; }
  .why-hero-feature > img { object-position:64% center; }
  .why-hero-feature-shade { background:linear-gradient(90deg,rgba(10,14,9,.88),rgba(10,14,9,.48)),linear-gradient(0deg,rgba(8,12,8,.55),transparent); }
  .why-hero-feature-copy { min-height:500px; padding:42px 24px; }
  .why-photo-caption { left:24px; max-width:270px; }
  .difference-row { grid-template-columns:1fr; gap:10px; }
  .proof-image { height:400px; margin:-65px -24px 0; }
  .proof-section { min-height:690px; }
  .proof-bg { object-position:63% center; }
  .proof-shade { background:linear-gradient(90deg,rgba(8,12,8,.94),rgba(8,12,8,.7)),linear-gradient(0deg,rgba(7,10,7,.62),transparent 62%); }
  .proof-overlay { align-items:flex-end; padding-top:55px; padding-bottom:55px; }
  .proof-copy { width:100%; max-width:440px; }
  .values-ribbon,.paths-grid { grid-template-columns:1fr; }
  .paths-grid .why-path-card { min-height:230px; }
  .why-path-copy { align-items:flex-start; flex-direction:column; gap:8px; }
  .compact-offerings-grid { grid-template-columns:1fr; }
  .compact-offerings-grid a { min-height:210px; }
  .values-ribbon div { border-right:0; border-bottom:1px solid #cbd0c7; }
  .values-ribbon div:last-child { border-bottom:0; }
  .values-ribbon span { margin-bottom:18px; }
  .paths-heading { align-items:flex-start; flex-direction:column; }
}
