﻿/* ============================================================
   DESIGN TOKENS
============================================================ */
:root {
  --primary:        #0D9488;
  --primary-hover:  #14B8A6;
  --primary-light:  #2DD4BF;
  --primary-xlight: #F0FDFA;
  --primary-dark:   #065F46;
  --accent:         #F59E0B;
  --accent-hover:   #FBBF24;
  --accent-dark:    #D97706;
  --accent-light:   #FFF7ED;
  --dark:           #0F172A;
  --dark-2:         #1E293B;
  --text:           #334155;
  --text-muted:     #64748B;
  --text-light:     #94A3B8;
  --bg:             #FFFFFF;
  --bg-alt:         #F8FAFC;
  --bg-teal:        #F0FDFA;
  --border:         #E2E8F0;
  --border-dark:    #CBD5E1;
  --radius-sm:      8px;
  --radius-md:      12px;
  --radius-lg:      16px;
  --radius-xl:      24px;
  --radius-full:    9999px;
  --shadow-sm:      0 1px 3px rgba(0,0,0,0.06);
  --shadow-md:      0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg:      0 8px 40px rgba(0,0,0,0.12);
  --font-display:   'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:      'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ============================================================
   RESET + BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); font-size: 16px; color: var(--text); background: var(--bg); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; color: var(--dark); line-height: 1.2; }
h1 { font-size: 56px; font-weight: 800; }
h2 { font-size: 40px; }
h3 { font-size: 24px; }
h4 { font-size: 18px; }
p  { line-height: 1.65; }
@media (max-width: 767px) {
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
}

/* ============================================================
   LAYOUT
============================================================ */
.mfg-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px; width: 100%;
}
@media (min-width: 768px)  { .mfg-container { padding: 0 40px; } }
@media (min-width: 1280px) { .mfg-container { padding: 0 48px; } }

/* ============================================================
   BUTTONS
============================================================ */
.mfg-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 52px; padding: 0 28px; border-radius: var(--radius-md);
  font-family: var(--font-display); font-size: 15px; font-weight: 700;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  text-decoration: none; white-space: nowrap; cursor: pointer; border: none;
}
.mfg-btn--accent {
  background: var(--accent); color: var(--dark);
  box-shadow: 0 4px 16px rgba(245,158,11,0.35);
}
.mfg-btn--accent:hover {
  background: var(--accent-hover); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,158,11,0.45); color: var(--dark);
}
.mfg-btn--outline-white {
  background: transparent; color: white;
  border: 2px solid rgba(255,255,255,0.45);
}
.mfg-btn--outline-white:hover {
  background: rgba(255,255,255,0.10); border-color: white; color: white;
}

/* ============================================================
   SCROLL REVEAL + ANIMATION UTILITIES
============================================================ */

/* Base reveal — fade + slide up */
.mfg-reveal,
.slide-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.mfg-reveal.mfg-visible,
.slide-up.mfg-visible { opacity: 1; transform: none; }

/* Fade only (no translate) */
.fade-in {
  opacity: 0;
  transition: opacity 0.55s ease;
}
.fade-in.mfg-visible { opacity: 1; }

/* Stagger delays */
.mfg-reveal-delay-1,
.slide-up.delay-1,
.fade-in.delay-1 { transition-delay: 0.1s; }

.mfg-reveal-delay-2,
.slide-up.delay-2,
.fade-in.delay-2 { transition-delay: 0.2s; }

.mfg-reveal-delay-3,
.slide-up.delay-3,
.fade-in.delay-3 { transition-delay: 0.3s; }

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .mfg-reveal, .slide-up, .fade-in {
    opacity: 1; transform: none;
    transition: none;
  }
}

/* Print: show everything, no animations */
@media print {
  .mfg-reveal, .slide-up, .fade-in {
    opacity: 1 !important; transform: none !important;
  }
  .mfg-cta-banner, .mfg-final-cta { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
}

/* ============================================================
   HEADER + NAV (re-declare scrolled state overrides)
============================================================ */
.hrb-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(13,148,136,0.09);
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid var(--border);
}
.hrb-header--scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(13,148,136,0.09);
  border-bottom-color: var(--border);
}

/* ============================================================
   HERO — MANUFACTURING
============================================================ */
.mfg-hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0D3B36 100%);
  padding: 140px 0 100px;
  min-height: 100vh; display: flex; align-items: center;
}

/* Grid texture overlay */
.mfg-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Radial teal glow */
.mfg-hero::after {
  content: '';
  position: absolute; bottom: -15%; right: -8%;
  width: 55vw; height: 55vw; max-width: 640px; max-height: 640px;
  background: radial-gradient(circle, rgba(13,148,136,0.11) 0%, transparent 68%);
  pointer-events: none;
}

/* Second glow — top left */
.mfg-hero__inner::before {
  content: '';
  position: absolute; top: -10%; left: -5%;
  width: 40vw; height: 40vw; max-width: 480px; max-height: 480px;
  background: radial-gradient(circle, rgba(245,158,11,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.mfg-hero__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 1024px) {
  .mfg-hero__inner {
    grid-template-columns: 55fr 45fr;
    gap: 72px;
  }
}

/* ── Breadcrumb ── */
.mfg-breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: rgba(255,255,255,0.45);
  margin-bottom: 24px; flex-wrap: wrap;
}
.mfg-breadcrumb a {
  color: rgba(255,255,255,0.55); text-decoration: none;
  transition: color 0.15s;
}
.mfg-breadcrumb a:hover { color: white; }
.mfg-breadcrumb svg { opacity: 0.35; flex-shrink: 0; }

/* ── Section label pill ── */
.mfg-hero__label {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(13,148,136,0.18); border: 1px solid rgba(13,148,136,0.38);
  color: var(--primary-light); border-radius: var(--radius-full);
  padding: 6px 16px; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 24px;
}
.mfg-hero__label-dot {
  width: 7px; height: 7px;
  background: var(--primary-light); border-radius: 50%;
  flex-shrink: 0;
  animation: mfg-pulse 2s ease-in-out infinite;
}
@keyframes mfg-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.85); }
}

/* ── H1 ── */
.mfg-hero__h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.1; color: white; margin-bottom: 20px;
}

/* ── Sub ── */
.mfg-hero__sub {
  font-size: 17px; color: rgba(255,255,255,0.70);
  line-height: 1.68; margin-bottom: 32px;
  max-width: 520px;
}

/* ── Trust signals ── */
.mfg-hero__trust {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 36px;
}
.mfg-hero__trust-item {
  display: flex; align-items: center; gap: 9px;
  font-size: 14px; color: rgba(255,255,255,0.68);
}
.mfg-hero__trust-item svg { color: #4ADE80; flex-shrink: 0; }

/* ── Button group ── */
.mfg-hero__btns {
  display: flex; flex-wrap: wrap; gap: 14px;
}

/* ============================================================
   RIGHT VISUAL — SHIFT ROSTER CARD
============================================================ */
.mfg-hero__visual {
  display: flex; justify-content: center; align-items: center;
}

.mfg-shift-card {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(13,148,136,0.12);
  border-top: 3px solid var(--primary);
  padding: 24px;
  width: 100%;
  max-width: 480px;
  position: relative;
  overflow: hidden;
}

/* Subtle teal corner accent */
.mfg-shift-card::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 120px; height: 120px;
  background: radial-gradient(circle at top right, rgba(13,148,136,0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Card header ── */
.mfg-shift-card__header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.mfg-shift-card__header-left {
  display: flex; align-items: center; gap: 10px;
}
.mfg-shift-card__icon {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: var(--primary-xlight);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); flex-shrink: 0;
}
.mfg-shift-card__title {
  font-family: var(--font-display); font-size: 14px; font-weight: 700;
  color: var(--dark); line-height: 1.2;
}
.mfg-shift-card__sub {
  font-size: 12px; color: var(--text-muted); margin-top: 2px;
}
.mfg-shift-card__badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: #DCFCE7; color: #15803D;
  border-radius: var(--radius-full);
  font-size: 11px; font-weight: 700;
  padding: 4px 10px; text-transform: uppercase; letter-spacing: 0.5px;
}
.mfg-shift-card__badge::before {
  content: '';
  width: 6px; height: 6px; background: #15803D;
  border-radius: 50%;
  animation: mfg-pulse 2s ease-in-out infinite;
}

/* ── Legend ── */
.mfg-shift-legend {
  display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap;
}
.mfg-shift-legend__item {
  font-size: 11px; font-weight: 600;
  padding: 3px 10px; border-radius: var(--radius-full);
}
.mfg-shift-legend__item--morning   { background: #FEF9C3; color: #854D0E; }
.mfg-shift-legend__item--afternoon { background: #DBEAFE; color: #1E40AF; }
.mfg-shift-legend__item--night     { background: #EDE9FE; color: #5B21B6; }
.mfg-shift-legend__item--off       { background: var(--bg-alt); color: var(--text-muted); }

/* ── Calendar grid ── */
.mfg-shift-grid {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 16px;
  font-size: 12px;
}

/* Header row */
.mfg-shift-grid__head {
  display: grid;
  grid-template-columns: 100px repeat(7, 1fr);
  background: var(--dark);
}
.mfg-shift-grid__col-label {
  padding: 8px 10px;
  font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.05em;
}
.mfg-shift-grid__day {
  padding: 8px 4px; text-align: center;
  font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.05em;
}

/* Employee row */
.mfg-shift-grid__row {
  display: grid;
  grid-template-columns: 100px repeat(7, 1fr);
  border-top: 1px solid var(--border);
  transition: background 0.15s;
}
.mfg-shift-grid__row:hover { background: var(--bg-alt); }

.mfg-shift-grid__emp {
  display: flex; align-items: center; gap: 6px;
  padding: 9px 10px; font-size: 12px; font-weight: 600;
  color: var(--dark); white-space: nowrap; overflow: hidden;
}
.mfg-shift-grid__emp span {
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

/* Avatars */
.mfg-shift-grid__avatar {
  width: 24px; height: 24px; border-radius: 50%;
  font-size: 9px; font-weight: 700; color: white;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mfg-shift-grid__avatar--1 { background: #0D9488; }
.mfg-shift-grid__avatar--2 { background: #7C3AED; }
.mfg-shift-grid__avatar--3 { background: #EA580C; }
.mfg-shift-grid__avatar--4 { background: #0284C7; }

/* Shift cells */
.mfg-shift-cell {
  display: flex; align-items: center; justify-content: center;
  padding: 9px 2px;
  font-size: 10px; font-weight: 700;
  border-left: 1px solid var(--border);
  text-transform: uppercase; letter-spacing: 0.03em;
}
.mfg-shift-cell--morning   { background: #FEFCE8; color: #A16207; }
.mfg-shift-cell--afternoon { background: #EFF6FF; color: #1D4ED8; }
.mfg-shift-cell--night     { background: #F5F3FF; color: #6D28D9; }
.mfg-shift-cell--off       { background: white;   color: var(--text-light); font-weight: 400; }

/* ── Card footer stats ── */
.mfg-shift-card__stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.mfg-shift-card__stat {
  display: flex; flex-direction: column; align-items: center;
  padding: 12px 8px; background: white; text-align: center;
}
.mfg-shift-card__stat-value {
  font-family: var(--font-display); font-size: 20px; font-weight: 800;
  color: var(--dark); line-height: 1;
}
.mfg-shift-card__stat-value--green { color: #059669; }
.mfg-shift-card__stat-label {
  font-size: 10px; color: var(--text-muted); margin-top: 4px;
  font-weight: 500; text-align: center;
}

/* ============================================================
   RESPONSIVE — MOBILE
============================================================ */
@media (max-width: 767px) {
  .mfg-hero {
    padding: 110px 0 72px;
    min-height: auto;
  }
  .mfg-hero__inner { gap: 40px; }
  .mfg-hero__sub { font-size: 15px; }
  .mfg-hero__btns { flex-direction: column; }
  .mfg-btn { width: 100%; justify-content: center; }

  .mfg-shift-card { padding: 18px 16px; }

  /* Collapse grid to employee + 5 days on mobile */
  .mfg-shift-grid__head,
  .mfg-shift-grid__row {
    grid-template-columns: 86px repeat(5, 1fr);
  }
  /* Hide Sat & Sun columns on mobile */
  .mfg-shift-grid__head .mfg-shift-grid__day:nth-child(7),
  .mfg-shift-grid__head .mfg-shift-grid__day:nth-child(8),
  .mfg-shift-grid__row .mfg-shift-cell:nth-child(7),
  .mfg-shift-grid__row .mfg-shift-cell:nth-child(8) {
    display: none;
  }

  .mfg-shift-card__stat-value { font-size: 17px; }
  .mfg-shift-card__stat-label { font-size: 9px; }
}

@media (max-width: 380px) {
  .mfg-shift-legend { gap: 5px; }
  .mfg-shift-legend__item { font-size: 10px; padding: 2px 8px; }
}

/* ============================================================
   SECTION HEADER (shared component)
============================================================ */
.mfg-section-header {
  text-align: center;
  margin-bottom: 48px;
}
.mfg-section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--primary); background: var(--primary-xlight);
  border-radius: var(--radius-full); padding: 6px 14px;
  margin-bottom: 16px;
}
/* Dot rendered by the explicit <span> in PHP — no ::before needed */
.mfg-section-label__dot {
  width: 8px; height: 8px;
  background: var(--primary); border-radius: 50%;
  flex-shrink: 0; display: inline-block;
}
.mfg-section-header h2 {
  max-width: 680px; margin: 0 auto;
}

/* ============================================================
   PAIN POINTS SECTION
============================================================ */
.mfg-pain {
  background: var(--bg);
  padding: 80px 0;
}

/* 2×2 grid */
.mfg-pain__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* Pain card */
.mfg-pain-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.mfg-pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

/* Icon container */
.mfg-pain-card__icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--primary-xlight);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); flex-shrink: 0;
}

/* Title */
.mfg-pain-card__title {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700;
  color: var(--dark);
  margin-top: 20px; margin-bottom: 12px;
  line-height: 1.25;
}

/* Description */
.mfg-pain-card__desc {
  font-size: 15px; color: var(--text-muted);
  line-height: 1.7; flex: 1;
  margin-bottom: 24px;
}

/* Result — positive teal highlight box */
.mfg-pain-card__result {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-dark);
  line-height: 1.5;
  padding: 14px 18px;
  background: var(--bg-teal);
  border: 1px solid #99F6E4;
  border-radius: var(--radius-md);
  margin-top: auto;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.mfg-pain-card__result::before {
  content: '';
  width: 18px; height: 18px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-color: var(--primary);
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center;
}
.mfg-pain-card__result-label {
  font-weight: 800;
  color: var(--primary);
}

/* Mobile: stack to 1 column */
@media (max-width: 767px) {
  .mfg-pain { padding: 60px 0; }
  .mfg-pain__grid { grid-template-columns: 1fr; gap: 20px; }
  .mfg-pain-card { padding: 28px 24px; }
  .mfg-section-header { margin-bottom: 36px; }
}

/* ============================================================
   FEATURES SECTION
============================================================ */
.mfg-features__header {
  padding: 80px 0 0;
  background: var(--bg);
}
.mfg-features__header .mfg-section-header { margin-bottom: 0; }
.mfg-features__header .mfg-section-header h2 { max-width: 640px; }

/* Individual feature block */
.mfg-feat {
  padding: 80px 0;
}
.mfg-feat--bg-white { background: var(--bg); }
.mfg-feat--bg-alt   { background: var(--bg-alt); }

/* Two-column grid */
.mfg-feat__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
/* Normal: visual left, content right — visual is first child */
.mfg-feat__inner--normal {}
/* Reverse: content left, visual right — content is first child */
.mfg-feat__inner--reverse {}

/* Mobile: always stack, content on top */
@media (max-width: 1023px) {
  .mfg-feat__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  /* On reverse blocks, content (first child) naturally comes first on mobile — correct */
  /* On normal blocks, visual is first child — push content above it on mobile */
  .mfg-feat__inner--normal .mfg-feat__visual { order: 2; }
  .mfg-feat__inner--normal .mfg-feat__content { order: 1; }
}

/* ── Content side ── */
.mfg-feat__label {
  display: inline-block;
  font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.mfg-feat__h3 {
  font-size: 28px; font-weight: 700;
  color: var(--dark); line-height: 1.2;
  margin-bottom: 16px;
}
@media (max-width: 767px) { .mfg-feat__h3 { font-size: 22px; } }

.mfg-feat__desc {
  font-size: 16px; color: var(--text-muted);
  line-height: 1.7; margin-bottom: 20px;
}

/* Example box */
.mfg-feat__example {
  background: var(--primary-xlight);
  border: 1px solid #99F6E4;
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 24px;
}
.mfg-feat__example p {
  font-size: 14px; color: var(--text); line-height: 1.65; margin: 0;
}
.mfg-feat__example strong { color: var(--primary-dark); }

/* Checklist */
.mfg-feat__checklist {
  display: flex; flex-direction: column; gap: 10px;
  list-style: none; padding: 0; margin: 0;
}
.mfg-feat__checklist li {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 600; color: var(--dark);
}
.mfg-feat__checklist li svg { color: var(--primary); flex-shrink: 0; }

/* ── Visual side — base mock card ── */
.mfg-feat__visual {}

.mfg-feat-mock {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  overflow: hidden;
}

/* Mock title bar */
.mfg-feat-mock__bar {
  background: var(--dark);
  padding: 10px 16px;
  display: flex; align-items: center; gap: 10px;
}
.mfg-feat-mock__dots {
  display: flex; gap: 5px; flex-shrink: 0;
}
.mfg-feat-mock__dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
}
.mfg-feat-mock__title {
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.7);
}
.mfg-feat-mock__body { padding: 16px; }

/* Mock footer bar */
.mfg-feat-mock__footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 16px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  font-size: 12px;
}
.mfg-feat-mock__badge {
  font-weight: 700; font-size: 11px;
  padding: 3px 10px; border-radius: var(--radius-full);
}
.mfg-feat-mock__badge--green { background: #DCFCE7; color: #15803D; }
.mfg-feat-mock__stat { color: var(--text-muted); font-size: 11px; }

/* ── Feature 1 mock: mini roster grid ── */
.mfg-feat-roster {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 12px;
  font-size: 11px;
}
.mfg-feat-roster__head {
  display: grid; grid-template-columns: 90px repeat(5, 1fr);
  background: var(--dark);
}
.mfg-feat-roster__head div {
  padding: 7px 4px; text-align: center;
  font-size: 10px; font-weight: 700;
  color: rgba(255,255,255,0.55); text-transform: uppercase;
}
.mfg-feat-roster__head div:first-child { text-align: left; padding-left: 10px; }
.mfg-feat-roster__row {
  display: grid; grid-template-columns: 90px repeat(5, 1fr);
  border-top: 1px solid var(--border);
}
.mfg-feat-roster__emp {
  display: flex; align-items: center; gap: 5px;
  padding: 7px 10px; font-size: 11px; font-weight: 600; color: var(--dark);
  overflow: hidden;
}
.mfg-feat-roster__emp span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mfg-feat-roster__av {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--primary); color: white;
  font-size: 8px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.mfg-feat-roster__cell {
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700;
  border-left: 1px solid var(--border);
  padding: 7px 2px;
}
.mfg-feat-roster__cell--morning   { background: #FEFCE8; color: #A16207; }
.mfg-feat-roster__cell--afternoon { background: #EFF6FF; color: #1D4ED8; }
.mfg-feat-roster__cell--night     { background: #F5F3FF; color: #6D28D9; }

/* ── Feature 2 mock: biometric feed ── */
.mfg-feat-bio__device {
  background: var(--dark);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.mfg-feat-bio__screen {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: var(--primary-light);
}
.mfg-feat-bio__screen span { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.6); }

.mfg-feat-bio__feed { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.mfg-feat-bio__entry {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 10px;
  background: var(--bg-alt); border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.mfg-feat-bio__entry div:last-child { display: flex; flex-direction: column; gap: 2px; }
.mfg-feat-bio__entry strong { font-size: 12px; font-weight: 700; color: var(--dark); }
.mfg-feat-bio__entry span  { font-size: 11px; color: var(--text-muted); }
.mfg-feat-bio__dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; margin-top: 4px;
}
.mfg-feat-bio__dot--green { background: #22C55E; }
.mfg-feat-bio__dot--amber { background: #F59E0B; }

/* ── Feature 3 mock: contract table ── */
.mfg-feat-contract__table {
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  overflow: hidden; margin-bottom: 12px; font-size: 12px;
}
.mfg-feat-contract__head {
  display: grid; grid-template-columns: 1fr 60px 60px 70px;
  background: var(--dark); padding: 8px 12px; gap: 4px;
}
.mfg-feat-contract__head span {
  font-size: 10px; font-weight: 700;
  color: rgba(255,255,255,0.55); text-transform: uppercase;
}
.mfg-feat-contract__row {
  display: grid; grid-template-columns: 1fr 60px 60px 70px;
  padding: 9px 12px; gap: 4px;
  border-top: 1px solid var(--border);
  align-items: center;
  transition: background 0.15s;
}
.mfg-feat-contract__row:hover { background: var(--bg-alt); }
.mfg-feat-contract__row span { font-size: 12px; color: var(--text); }
.mfg-feat-contract__row span:first-child { font-weight: 600; color: var(--dark); }
.mfg-feat-contract__status {
  font-size: 10px; font-weight: 700;
  padding: 3px 8px; border-radius: var(--radius-full);
  text-align: center;
}
.mfg-feat-contract__status--ok   { background: #DCFCE7; color: #15803D; }
.mfg-feat-contract__status--warn { background: #FEF9C3; color: #92400E; }

/* ── Feature 4 mock: incentive calculator ── */
.mfg-feat-incentive { margin-bottom: 12px; }
.mfg-feat-incentive__worker {
  display: flex; align-items: center; gap: 10px;
  padding: 10px; background: var(--bg-alt);
  border-radius: var(--radius-sm); border: 1px solid var(--border);
  margin-bottom: 10px;
}
.mfg-feat-incentive__av {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--primary); color: white;
  font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.mfg-feat-incentive__worker strong { font-size: 13px; color: var(--dark); display: block; }
.mfg-feat-incentive__worker span  { font-size: 11px; color: var(--text-muted); }
.mfg-feat-incentive__rows { display: flex; flex-direction: column; }
.mfg-feat-incentive__row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 12px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.mfg-feat-incentive__row span   { color: var(--text-muted); }
.mfg-feat-incentive__row strong { color: var(--dark); }
.mfg-feat-incentive__row--total {
  background: var(--primary-xlight);
  border-bottom-color: #99F6E4;
}
.mfg-feat-incentive__row--total span   { color: var(--text); font-weight: 600; }
.mfg-text-green   { color: #059669; }
.mfg-text-primary { color: var(--primary-dark); }

/* ── Feature 5 mock: compliance list ── */
.mfg-feat-compliance { display: flex; flex-direction: column; gap: 4px; margin-bottom: 12px; }
.mfg-feat-compliance__row {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  background: var(--bg-alt); border: 1px solid var(--border);
}
.mfg-feat-compliance__row div:last-child { display: flex; flex-direction: column; gap: 2px; }
.mfg-feat-compliance__row strong { font-size: 12px; color: var(--dark); font-weight: 600; }
.mfg-feat-compliance__row span  { font-size: 11px; color: var(--text-muted); }
.mfg-feat-compliance__icon {
  width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.mfg-feat-compliance__icon--done    { background: #DCFCE7; color: #15803D; }
.mfg-feat-compliance__icon--pending { background: #FEF9C3; color: #92400E; }

/* ── Mobile feature adjustments ── */
@media (max-width: 767px) {
  .mfg-features__header { padding: 60px 0 0; }
  .mfg-feat { padding: 60px 0; }
  .mfg-feat__inner { gap: 32px; }
  .mfg-feat__h3 { font-size: 20px; }
  .mfg-feat__desc { font-size: 15px; }
}

/* ============================================================
   CTA BANNER
============================================================ */
.mfg-cta-banner {
  background: linear-gradient(135deg, #0D9488 0%, #06B6D4 100%);
  padding: 80px 24px;
  text-align: center;
  color: #FFFFFF;
}

.mfg-cta-banner__inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mfg-cta-banner__h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  line-height: 1.25;
  color: #FFFFFF;
  margin: 0 0 24px;
}

.mfg-cta-banner__sub {
  font-size: 18px;
  line-height: 1.65;
  opacity: 0.95;
  color: #FFFFFF;
  margin: 0 0 32px;
  max-width: 640px;
}

.mfg-cta-banner__btn {
  display: inline-block;
  padding: 16px 32px;
  background: #F59E0B;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  margin-bottom: 16px;
}
.mfg-cta-banner__btn:hover {
  background: #FBBF24;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.20);
}

.mfg-cta-banner__trust {
  font-size: 14px;
  opacity: 0.9;
  color: #FFFFFF;
  margin: 0;
}

/* CTA banner scroll reveal (scale + fade) */
.mfg-cta-banner .mfg-reveal {
  opacity: 0;
  transform: scale(0.96) translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.mfg-cta-banner .mfg-reveal.mfg-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

@media (max-width: 767px) {
  .mfg-cta-banner { padding: 60px 20px; }
  .mfg-cta-banner__sub { font-size: 16px; }
  .mfg-cta-banner__btn { padding: 14px 28px; font-size: 15px; }
}

/* ============================================================
   KARNATAKA COMPLIANCE
============================================================ */
.mfg-compliance {
  background: var(--bg-teal);
  padding: 80px 0;
}

.mfg-compliance__h2 {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  margin: 16px 0 20px;
  line-height: 1.3;
}

.mfg-compliance__intro {
  font-size: 17px;
  color: var(--text-muted);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* 2×2 grid */
.mfg-compliance__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 32px;
}

/* Card — white with shadow so it pops off the mint section bg */
.mfg-compliance__card {
  background: #FFFFFF;
  border: none;
  border-top: 4px solid var(--primary);
  border-radius: 16px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 24px rgba(13,148,136,0.10);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.mfg-compliance__card:hover {
  box-shadow: 0 12px 40px rgba(13,148,136,0.18);
  transform: translateY(-4px);
}

/* Icon circle */
.mfg-compliance__card-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.mfg-compliance__card-h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 16px;
  line-height: 1.35;
}

/* Bullet list */
.mfg-compliance__list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mfg-compliance__list li {
  font-size: 14px;
  color: var(--text);
  line-height: 1.55;
  padding-left: 18px;
  position: relative;
}
.mfg-compliance__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

/* Key takeaway box */
.mfg-compliance__key {
  background: var(--primary);
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  padding: 14px 16px;
  border-radius: 10px;
  margin-top: auto;
}

/* Bottom notice bar */
.mfg-compliance__notice {
  background: #FFFFFF;
  border: 1px solid var(--primary);
  border-radius: 12px;
  padding: 20px 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 32px;
}
.mfg-compliance__notice span {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-dark);
}

/* Mobile: 1 column */
@media (max-width: 767px) {
  .mfg-compliance { padding: 60px 0; }
  .mfg-compliance__grid { grid-template-columns: 1fr; gap: 20px; }
  .mfg-compliance__card { padding: 28px 24px; }
  .mfg-compliance__notice { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ============================================================
   HOW IT WORKS
============================================================ */
.mfg-hiw {
  background: var(--bg);
  padding: 80px 0;
}

.mfg-hiw__h2 {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  margin: 16px 0 64px;
  line-height: 1.3;
}

/* 3-column grid */
.mfg-hiw__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  margin-bottom: 48px;
}

/* Connecting arrow between cards (pseudo-element on card) */
.mfg-hiw__connector {
  display: none; /* shown via desktop override below */
}

/* Card */
.mfg-hiw__card {
  background: var(--bg-alt);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.mfg-hiw__card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

/* Connector arrow — shown on the first two cards, pointing right */
@media (min-width: 768px) {
  .mfg-hiw__connector {
    display: block;
    position: absolute;
    top: 56px; /* vertically aligned with badge center */
    right: -28px;
    width: 24px;
    height: 24px;
    z-index: 2;
  }
  .mfg-hiw__connector::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 16px;
    height: 2px;
    background: var(--primary);
    transform: translateY(-50%);
  }
  .mfg-hiw__connector::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid var(--primary);
    transform: translateY(-50%);
  }
}

/* Step number badge */
.mfg-hiw__badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary);
  color: #FFFFFF;
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(13,148,136,0.30);
}

.mfg-hiw__h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin: 24px 0 12px;
}

.mfg-hiw__desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0 0 24px;
  flex: 1;
}

/* Icon area */
.mfg-hiw__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-teal);
  border: 2px solid var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-top: auto;
}

/* Footnote */
.mfg-hiw__footnote {
  text-align: center;
  font-size: 15px;
  color: var(--text-muted);
  margin: 0 auto;
  max-width: 560px;
}

/* Tablet: 3-col too tight — go 2-col then stack on mobile */
@media (max-width: 1023px) {
  .mfg-hiw__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .mfg-hiw__card { padding: 32px 24px; }
  /* Hide connector on tablet (3rd card never shows it anyway) */
  .mfg-hiw__connector { display: none !important; }
}

@media (max-width: 767px) {
  .mfg-hiw { padding: 60px 0; }
  .mfg-hiw__h2 { margin-bottom: 40px; }
}

/* ============================================================
   SOCIAL PROOF / CASE STUDY
============================================================ */
.mfg-case {
  position: relative;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0D3B36 100%);
  padding: 80px 0;
  overflow: hidden;
  color: #FFFFFF;
}

/* Grid texture overlay */
.mfg-case__grid-texture {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.mfg-case__inner { position: relative; z-index: 1; }

/* Section label — light variant for dark bg */
.mfg-section-label--light {
  background: rgba(255,255,255,0.12);
  color: #FFFFFF;
  border: 1px solid rgba(255,255,255,0.2);
}
.mfg-section-label--light .mfg-section-label__dot {
  background: var(--primary-light);
}

.mfg-case__h2 {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  color: #FFFFFF;
  text-align: center;
  margin: 16px 0 48px;
  line-height: 1.3;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

/* Two-column layout: 60/40 */
.mfg-case__cols {
  display: grid;
  grid-template-columns: 60fr 40fr;
  gap: 48px;
  align-items: start;
}

/* ── Left column ── */
.mfg-case__company-tag {
  display: inline-block;
  background: rgba(13,148,136,0.25);
  border: 1px solid rgba(13,148,136,0.5);
  color: var(--primary-light);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 28px;
}

.mfg-case__block {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}
.mfg-case__block:last-child { margin-bottom: 0; }

.mfg-case__block-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.mfg-case__block-icon--red   { background: rgba(220,38,38,0.2);  color: #FCA5A5; }
.mfg-case__block-icon--teal  { background: rgba(13,148,136,0.2); color: var(--primary-light); }
.mfg-case__block-icon--green { background: rgba(22,163,74,0.2);  color: #86EFAC; }

.mfg-case__block-h4 {
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 8px;
}

.mfg-case__block-text {
  font-size: 15px;
  color: rgba(255,255,255,0.80);
  line-height: 1.65;
  margin: 0;
}

/* Results — full-width standalone block */
.mfg-case__results-wrap {
  margin-top: 8px;
  background: rgba(13,148,136,0.12);
  border: 1px solid rgba(13,148,136,0.25);
  border-radius: 16px;
  padding: 24px;
}

.mfg-case__results-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px !important;
}

.mfg-case__results-icon {
  width: 28px; height: 28px;
  background: rgba(34,197,94,0.2);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #86EFAC;
  flex-shrink: 0;
}

/* 2×2 grid — full width of the wrap container */
.mfg-case__results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mfg-case__result-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mfg-case__result-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary-light);
  line-height: 1.1;
}

.mfg-case__result-from {
  font-size: 12px;
  color: rgba(255,255,255,0.50);
  font-weight: 400;
  min-height: 16px;
}

.mfg-case__result-label {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
  margin-top: 2px;
}

/* ── Right column: Glassmorphism card ── */
.mfg-case__testimonial {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 16px;
  padding: 36px 32px;
  position: sticky;
  top: 100px;
}

.mfg-case__quote-icon {
  color: var(--primary-light);
  margin-bottom: 20px;
  opacity: 0.85;
}

.mfg-case__quote {
  font-size: 18px;
  line-height: 1.65;
  color: #FFFFFF;
  margin: 0 0 28px;
  font-style: italic;
}

.mfg-case__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.mfg-case__author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mfg-case__author-name    { font-size: 15px; font-weight: 700; color: #FFFFFF; margin: 0 0 3px; }
.mfg-case__author-title   { font-size: 13px; color: rgba(255,255,255,0.80); margin: 0 0 3px; }
.mfg-case__author-company { font-size: 12px; color: rgba(255,255,255,0.65); margin: 0; }

/* Tablet / mobile */
@media (max-width: 1023px) {
  .mfg-case__cols { grid-template-columns: 1fr; gap: 40px; }
  .mfg-case__testimonial { position: static; }
}

@media (max-width: 767px) {
  .mfg-case { padding: 60px 0; }
  .mfg-case__results { grid-template-columns: 1fr 1fr; }
  .mfg-case__testimonial { padding: 28px 24px; }
  .mfg-case__quote { font-size: 16px; }
}

/* ============================================================
   MANUFACTURING LOCATIONS
============================================================ */
.mfg-locations {
  background: var(--bg);
  padding: 80px 0;
}

.mfg-locations__h2 {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  margin: 16px 0 48px;
  line-height: 1.3;
}

/* 4-column grid */
.mfg-locations__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

/* Card */
.mfg-locations__card {
  background: var(--bg-alt);
  border-left: 4px solid var(--primary);
  border-radius: 8px;
  padding: 24px;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.mfg-locations__card:hover {
  box-shadow: 0 4px 20px rgba(13,148,136,0.14);
  border-left-color: var(--primary-light);
}

.mfg-locations__card-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 10px;
  line-height: 1.3;
}

.mfg-locations__card-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Footnote */
.mfg-locations__footnote {
  text-align: center;
  font-size: 15px;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.65;
}

/* Tablet: 2 columns */
@media (max-width: 1023px) {
  .mfg-locations__grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile: 1 column */
@media (max-width: 767px) {
  .mfg-locations { padding: 60px 0; }
  .mfg-locations__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FAQ
============================================================ */
.mfg-faq {
  background: var(--bg-alt);
  padding: 80px 0;
}

.mfg-faq__h2 {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  margin: 16px 0 48px;
  line-height: 1.3;
}

.mfg-faq__wrap {
  max-width: 900px;
  margin: 0 auto;
}

/* Override / set accordion styles scoped to mfg page */
.mfg-faq__wrap .hrb-faq__item {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
}

.mfg-faq__wrap .hrb-faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.4;
  transition: color 0.2s ease;
}
.mfg-faq__wrap .hrb-faq__q:hover { color: var(--primary); }
.mfg-faq__wrap .hrb-faq__item--open .hrb-faq__q { color: var(--primary); }

/* Icon: vertical line rotates away when open (leaving only horizontal = minus) */
.mfg-faq__wrap .hrb-faq__icon {
  flex-shrink: 0;
  color: var(--primary);
  transition: transform 0.25s ease;
}
.mfg-faq__wrap .hrb-faq__icon .hrb-faq__icon-v {
  transition: opacity 0.25s ease, transform 0.25s ease;
  transform-origin: center;
}
.mfg-faq__wrap .hrb-faq__item--open .hrb-faq__icon .hrb-faq__icon-v {
  opacity: 0;
  transform: rotate(90deg);
}

/* Answer: collapsed by default, expands via JS maxHeight */
.mfg-faq__wrap .hrb-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.mfg-faq__wrap .hrb-faq__a p {
  padding: 0 24px 24px;
  font-size: 16px;
  color: var(--text);
  line-height: 1.7;
  margin: 0;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

@media (max-width: 767px) {
  .mfg-faq { padding: 60px 0; }
  .mfg-faq__wrap .hrb-faq__q { font-size: 15px; padding: 20px; }
  .mfg-faq__wrap .hrb-faq__a p { padding: 0 20px 20px; font-size: 15px; padding-top: 14px; }
}

/* ============================================================
   FINAL CTA BANNER
============================================================ */
.mfg-final-cta {
  background: linear-gradient(135deg, #0D9488 0%, #06B6D4 100%);
  padding: 80px 24px;
  text-align: center;
  color: #FFFFFF;
}

.mfg-final-cta__inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Reuse the scale reveal from mid-page CTA */
.mfg-final-cta .mfg-reveal {
  opacity: 0;
  transform: scale(0.96) translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.mfg-final-cta .mfg-reveal.mfg-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.mfg-final-cta__h2 {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.25;
  margin: 0 0 24px;
}

.mfg-final-cta__sub {
  font-size: 18px;
  line-height: 1.65;
  opacity: 0.95;
  color: #FFFFFF;
  margin: 0 0 32px;
  max-width: 620px;
}

/* Button group */
.mfg-final-cta__btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
}

.mfg-final-cta__btn-primary {
  display: inline-block;
  padding: 16px 32px;
  background: #F59E0B;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 12px;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.mfg-final-cta__btn-primary:hover {
  background: #FBBF24;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.20);
}

.mfg-final-cta__btn-secondary {
  display: inline-block;
  padding: 15px 32px;
  background: transparent;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  border: 2px solid rgba(255,255,255,0.70);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.mfg-final-cta__btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

.mfg-final-cta__trust {
  font-size: 14px;
  opacity: 0.88;
  color: #FFFFFF;
  margin: 0;
}

@media (max-width: 767px) {
  .mfg-final-cta { padding: 60px 20px; }
  .mfg-final-cta__sub { font-size: 16px; }
  .mfg-final-cta__btns { flex-direction: column; gap: 12px; }
  .mfg-final-cta__btn-primary,
  .mfg-final-cta__btn-secondary { width: 100%; text-align: center; }
}
