.hero {
  min-height: calc(100vh - var(--header-height));
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
}
.hero-home {
  background: url('../images/hero-factory.jpg') center/cover no-repeat;
  background-position: center center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.48);
}
.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 80px 0;
}
.hero h1 {
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.04;
  margin: 0 0 22px;
  letter-spacing: -0.03em;
}
.hero p:not(.eyebrow) {
  font-size: 20px;
  color: rgba(255,255,255,.88);
  max-width: 720px;
  margin: 0 auto 30px;
}

.page-hero {
  padding: 88px 0;
  background: linear-gradient(135deg, #111827 0%, #24327d 100%);
  color: #fff;
}
.page-hero h1 {
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.1;
  margin: 0 0 18px;
}
.page-hero p:not(.eyebrow) { max-width: 780px; color: rgba(255,255,255,.84); font-size: 20px; }
.export-hero { background: linear-gradient(135deg, #0b1828 0%, #14532d 100%); }

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .85fr);
  gap: 54px;
  align-items: center;
}
.split-grid-reverse { grid-template-columns: minmax(320px, .85fr) minmax(0, 1fr); }
.stat-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.stat-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-card);
}
.stat-card strong { display: block; font-size: 44px; line-height: 1; color: var(--color-navy); margin-bottom: 10px; }
.stat-card span { color: var(--color-muted); font-weight: 700; }

.category-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.category-preview-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}
.category-preview-card__image {
  height: 240px;
  background: #f4f6f8;
  display: grid;
  place-items: center;
  padding: 18px;
}
.category-preview-card__image img { max-height: 215px; object-fit: contain; }
.category-preview-card__body { padding: 22px; }
.category-preview-card h3 { margin: 0 0 10px; font-size: 20px; }
.category-preview-card p { color: var(--color-muted); margin: 0 0 16px; }
.category-preview-card ul { padding-inline-start: 20px; margin: 0; color: #344054; }

.certificate-strip {
  background: linear-gradient(135deg, #0d172a, #24327d);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: grid;
  gap: 16px;
  box-shadow: var(--shadow-soft);
}
.certificate-strip span {
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 16px;
  padding: 20px;
  font-size: 22px;
  font-weight: 900;
  background: rgba(255,255,255,.08);
}
.section-image-band {
  position: relative;
  background: url('../images/hero-factory.jpg') center/cover fixed no-repeat;
  color: #fff;
  overflow: hidden;
}
.section-image-band__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.58); }
.section-image-band__content { position: relative; z-index: 1; max-width: 850px; margin-inline-start: max(calc((100vw - var(--container))/2), 20px); }
.contact-preview-card {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #f7f9fb, #ffffff);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
  padding: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.product-category-list { display: grid; gap: 34px; }
.product-category {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-card);
}
.product-category__header {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  padding: 34px;
  background: #fbfbfc;
  border-bottom: 1px solid var(--color-border);
}
.product-category__header h2 { margin: 0 0 10px; font-size: 34px; line-height: 1.1; }
.product-category__header p { margin: 0; color: var(--color-muted); }
.spec-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.spec-list div { background: #fff; border-radius: 14px; padding: 14px; border: 1px solid var(--color-border); }
.spec-list strong { display: block; color: var(--color-navy); }
.brand-grid {
  padding: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.brand-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(16,24,40,.06);
}
.brand-card__img {
  height: 300px;
  background: #f5f6f8;
  display: grid;
  place-items: center;
  padding: 14px;
}
.brand-card__img img { max-height: 275px; object-fit: contain; }
.brand-card__body { padding: 16px; }
.brand-card h3 { font-size: 18px; margin: 0 0 4px; }
.brand-card span { color: var(--color-muted); font-size: 14px; }

.feature-list { display: grid; gap: 16px; }
.feature-list article {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-card);
  background: #fff;
}
.feature-list strong { display: block; color: var(--color-navy); font-size: 20px; margin-bottom: 6px; }
.feature-list span { color: var(--color-muted); }
.timeline-card {
  border-radius: var(--radius-lg);
  background: #111827;
  color: #fff;
  box-shadow: var(--shadow-soft);
  padding: 34px;
  display: grid;
  gap: 18px;
}
.timeline-card div { display: flex; align-items: center; justify-content: space-between; gap: 18px; border-bottom: 1px solid rgba(255,255,255,.14); padding-bottom: 16px; }
.timeline-card div:last-child { border-bottom: 0; padding-bottom: 0; }
.timeline-card span { color: rgba(255,255,255,.72); }
.timeline-card strong { font-size: 24px; }

.certificate-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.certificate-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: #fff;
}
.certificate-card__image {
  height: 300px;
  background: #f6f7f8;
  display: grid;
  place-items: center;
  padding: 12px;
}
.certificate-card__image img { max-height: 270px; object-fit: contain; }
.certificate-card__body { padding: 18px; }
.certificate-card h3 { margin: 0 0 8px; font-size: 18px; }
.certificate-card p { margin: 0 0 10px; color: var(--color-muted); font-size: 14px; }
.certificate-card button { border: 0; color: var(--color-red); background: transparent; font-weight: 800; padding: 0; }

.contact-page { padding-top: 70px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 72px;
  align-items: start;
}
.contact-form-panel h1, .contact-info-panel h2 { font-size: clamp(34px, 4vw, 54px); line-height: 1.1; margin: 0 0 28px; }
.contact-form-panel h2 { font-size: 24px; margin: 0 0 22px; }
.contact-form-panel p { color: #344054; font-size: 18px; margin-bottom: 32px; }
.contact-form { display: grid; gap: 10px; }
.contact-form label { font-weight: 800; color: #667085; }
.contact-form input, .contact-form textarea {
  width: 100%;
  border: 0;
  background: #f0f1f3;
  border-radius: 12px;
  padding: 14px;
  min-height: 54px;
  outline: 2px solid transparent;
  transition: outline-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.contact-form input:focus, .contact-form textarea:focus { outline-color: rgba(215, 25, 32, .22); background: #fff; box-shadow: 0 8px 22px rgba(16, 24, 40, .08); }
.contact-form textarea { resize: vertical; }
.char-counter { text-align: end; color: #667085; font-size: 14px; margin-top: -6px; }
.error-message { color: var(--color-red); min-height: 18px; }
.form-status { margin: 12px 0 0; color: var(--color-green-dark); font-weight: 700; }
.contact-info-panel h3 { margin: 0 0 8px; font-size: 22px; }
.contact-info-block { margin-bottom: 30px; }
.contact-info-block p { margin: 0; font-size: 18px; color: #344054; }
.contact-info-block a { color: var(--color-navy); font-weight: 700; }
.honeypot-field {
  display: none !important;
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.form-status.is-error { color: var(--color-red); }
.form-status.is-success { color: var(--color-green-dark); }


/* Updated product technical specification layout */
.product-info-stack {
  display: grid;
  gap: 16px;
}
.spec-table-card,
.blend-card,
.about-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  box-shadow: 0 8px 18px rgba(16, 24, 40, .06);
}
.spec-table-card { padding: 18px; }
.spec-table-card h3,
.blend-card h3 {
  margin: 0 0 14px;
  font-size: 18px;
  color: var(--color-navy);
}
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  overflow: hidden;
  border-radius: 12px;
}
.spec-table th,
.spec-table td {
  padding: 11px 12px;
  border-bottom: 1px solid var(--color-border);
  text-align: start;
  vertical-align: top;
}
.spec-table tr:last-child th,
.spec-table tr:last-child td { border-bottom: 0; }
.spec-table th {
  width: 48%;
  color: var(--color-muted);
  font-weight: 800;
  background: #f7f8fa;
}
.spec-table td {
  font-weight: 800;
  color: var(--color-text);
}
.blend-card { padding: 18px; }
.blend-card p { margin: 0; color: var(--color-muted); }
.about-section-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.about-card {
  padding: 30px;
}
.about-card h2 {
  margin: 0 0 16px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.15;
}
.about-card p:not(.section-kicker) {
  margin: 0 0 14px;
  color: var(--color-muted);
  font-size: 17px;
}
.about-card p:last-child { margin-bottom: 0; }
