/* Packmold public site CSS — full port of Next.js globals.css */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:wght@300;400;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');


/* ── Design Tokens ───────────────────────────────────── */
:root {
  --navy: #0a1f44;
  --navy-light: #314158;
  --slate: #424243;
  --green: #5dbb3a;
  --green-dark: #4ea82e;
  --dark-green: #0e2b22;
  --text-muted: #90a1b9;
  --text-light: #99a1af;
  --text-info: #98a5b7;
  --border-color: #e3e3e0;
  --border-input: #45556c;
  --footer-bg-start: #304158;
  --social-bg: #2d4986;
  --white: #ffffff;
  --radius-pill: 9999px;
  --radius-card: 24px;
  --radius-md: 16px;
  --max-w: 1440px;
  --px: 80px;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --font-ui: 'Plus Jakarta Sans', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

/* Mobile: reduce all font sizes by 40% (rem-based typography scales with root) */
@media (max-width: 767px) {
  html {
    font-size: 60%;
  }
}

body {
  font-family: var(--font-body);
  color: var(--white);
  background: var(--navy);
  -webkit-font-smoothing: antialiased;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
}

/* ── Legal & policy pages (center-aligned) ─────────────── */
.page-legal {
  min-height: 60vh;
  padding: 60px var(--px) 80px;
  background: var(--navy);
}

.page-legal__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.page-legal__inner h1 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.page-legal__content {
  text-align: center;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
}

.page-legal__content section {
  margin-bottom: 2rem;
}

.page-legal__content h2 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.page-legal__content p,
.page-legal__content ul,
.page-legal__content ol {
  margin-bottom: 1rem;
}

.page-legal__content ul,
.page-legal__content ol {
  list-style-position: inside;
}

.page-legal__muted {
  font-size: 0.875rem;
  color: var(--text-muted);
  opacity: 0.9;
}

/* ── CSR page (initiatives from API + intro from Legal Page) ─ */
.page-csr {
  min-height: 60vh;
  background: var(--navy);
  color: var(--white);
}

.page-csr__hero {
  padding: 48px var(--px) 32px;
  background: linear-gradient(165deg, rgba(15, 35, 70, 0.95) 0%, var(--navy) 55%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-csr__hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.page-csr__eyebrow {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.75rem;
}

.page-csr__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.page-csr__lead {
  max-width: 42rem;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.page-csr__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px var(--px) 80px;
}

.page-csr__intro {
  margin-bottom: 3rem;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.page-csr__intro-content {
  text-align: left;
}

.page-csr__intro-content h2 {
  margin-top: 0;
}

.page-csr__section-head {
  margin-bottom: 2rem;
}

.page-csr__h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.page-csr__section-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 40rem;
}

.page-csr__section-desc code {
  font-size: 0.85em;
  padding: 0.1em 0.35em;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
}

.page-csr__empty {
  color: var(--text-muted);
  padding: 2rem 0;
  font-size: 1rem;
}

.page-csr__timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.page-csr__card {
  list-style: none;
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
}

.page-csr__card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-info);
}

.page-csr__card-meta time {
  font-weight: 600;
  color: var(--text-muted);
}

.page-csr__pill {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: rgba(93, 187, 58, 0.2);
  color: var(--green);
}

.page-csr__card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--white);
}

.page-csr__location {
  font-size: 0.9rem;
  color: var(--text-info);
  margin-bottom: 0.75rem;
}

.page-csr__card-image-wrap {
  margin: 1rem 0;
  border-radius: 12px;
  overflow: hidden;
  max-width: 520px;
}

.page-csr__card-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-csr__summary {
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}

.page-csr__body {
  text-align: left;
  margin-top: 0.5rem;
}

.page-csr__body p:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .page-csr__hero {
    padding-left: 24px;
    padding-right: 24px;
  }
  .page-csr__inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}

/* ── Careers page: breathable job cards and CTA ──────── */
.careers-page .page-legal__inner {
  padding-top: 0.5rem;
}
.careers-page__block {
  padding: 2.5rem 1.5rem;
  margin-top: 0.5rem;
}
.careers-page__empty-icon {
  margin-bottom: 2rem;
}
.careers-page__cta-btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  transition: opacity 0.2s;
  background: var(--green);
  color: var(--white);
  border: none;
  cursor: pointer;
  text-decoration: none;
  margin-top: 0.5rem;
}
.careers-page__cta-btn:hover {
  opacity: 0.9;
}
.careers-page__jobs-wrap {
  padding-top: 1.5rem;
  padding-bottom: 2rem;
}
.careers-page__job-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.careers-page__job-card {
  display: block;
  padding: 1.75rem 2rem;
  border-radius: 1rem;
  transition: opacity 0.2s;
}
.careers-page__job-card:hover {
  opacity: 0.95;
}
@media (min-width: 768px) {
  .careers-page__job-list {
    gap: 2rem;
  }
  .careers-page__job-card {
    padding: 2rem 2.5rem;
  }
  .careers-page__cta-btn {
    padding: 1.125rem 2.25rem;
  }
}

/* ── Utility ─────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--px);
  padding-right: var(--px);
}

@media (max-width: 768px) {
  :root {
    --px: 20px;
  }
}

/* ── HEADER (navbar-design + ARUP slanted logo container) ─── */
.site-header {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: transparent;
  z-index: 100;
}

/* Top row: logo + nav strip (search bar opens below this) */
.site-header__top {
  display: flex;
  align-items: stretch;
  position: relative;
}

/* Slanted logo container: bleeds above AND below white navbar, diagonal cut, matching background (ARUP) */
.site-header__logo-wrapper {
  position: absolute;
  top: -15px;
  left: 0;
  bottom: -30px;
  width: calc(max(0px, 50vw - 720px) + var(--px) + 380px);
  background: #01183a;
  clip-path: polygon(0 0, 100% 0, calc(100% - 130px) 100%, 0 100%);
  z-index: 101;
  display: flex;
  align-items: center;
  padding-left: calc(max(0px, 50vw - 720px) + var(--px));
}

.site-header__logo-wrapper .packmold-logo {
  height: 128px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Nav + actions: white strip full width so no gap on right */
.site-header__inner {
  flex: 1;
  min-width: 0;
  width: 100%;
  max-width: none;
  padding: 0 var(--px);
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

/* Packmold logo: use everywhere; subtle black shadow for transparent PNG */
.packmold-logo {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4)) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
  display: block;
}

/* Nav + actions area: stays on white; nav gets remaining space, actions never shrink */
.site-header__nav-wrap {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
  justify-content: space-between;
  padding-left: 24px;
  padding-right: 16px;
  gap: 16px;
}

.logo-pill {
  width: 132px;
  height: 48px;
  border-radius: 27px;
  overflow: hidden;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  color: var(--white);
  letter-spacing: -0.5px;
}

.logo-accent {
  color: var(--green);
}

/* Clear logo overlap: nav links start after the logo (logo width - inner padding) */
.site-header__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  flex: 1;
  min-width: 0;
  width: 100%;
  padding-left: calc(max(0px, 50vw - 720px) + 380px);
  padding-right: 0;
  overflow-x: visible;
  overflow-y: visible;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
}
.site-header__nav::-webkit-scrollbar {
  display: none;
}

.site-header__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  color: #111;
  line-height: 24px;
  white-space: normal;
  word-break: break-word;
  flex-shrink: 0;
  transition: color 0.18s;
}

.site-header__link:hover {
  color: var(--green);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 14.8px;
  flex-shrink: 0;
}

.site-header__actions-desktop {
  display: flex;
  align-items: center;
  gap: 14.8px;
  flex-shrink: 0;
}

.site-header__icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #111;
  display: flex;
  padding: 4px;
  transition: color 0.18s;
}

.site-header__icon-btn:hover {
  color: var(--green);
}

.site-header__icon-btn--active {
  color: var(--green);
}

.site-header__cart {
  position: relative;
}

.site-header__cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--green);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius-pill);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  transition: background 0.2s;
  letter-spacing: -0.35px;
}

.site-header__cta:hover {
  background: var(--green-dark);
}

.site-header__cta-label--short {
  display: none;
}

.site-header__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #111;
  flex-shrink: 0;
}

.site-header__hamburger-box {
  position: relative;
  display: block;
  width: 26px;
  height: 20px;
}

.site-header__hamburger-bar {
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 2px;
  background: #111;
  transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}

.site-header__hamburger-bar:nth-child(1) { top: 0; }
.site-header__hamburger-bar:nth-child(2) { top: 8.5px; }
.site-header__hamburger-bar:nth-child(3) { top: 17px; }

.site-header__hamburger.is-open .site-header__hamburger-bar:nth-child(1) {
  top: 8.5px;
  transform: rotate(45deg);
}
.site-header__hamburger.is-open .site-header__hamburger-bar:nth-child(2) {
  opacity: 0;
}
.site-header__hamburger.is-open .site-header__hamburger-bar:nth-child(3) {
  top: 8.5px;
  transform: rotate(-45deg);
}

.site-header__search-bar {
  display: flex;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  background: #f7f7f7;
  border-top: 1px solid var(--border-color);
  padding: 12px var(--px);
}

.site-header__search-bar input {
  width: 100%;
  max-width: 600px;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 15px;
  outline: none;
  font-family: var(--font-body);
  color: #333;
}

.site-header__mobile-menu {
  display: none; /* Shown as block only in @media (max-width: 1024px) when open */
}

.site-header__mobile-link {
  display: block;
  padding: 12px 0;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--slate);
  border-bottom: 1px solid #f0f0f0;
}

.site-header__mobile-cta {
  display: inline-block;
  margin-top: 16px;
  background: var(--green);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-weight: 600;
}

/* Tablet / desktop: nav strip 100% width; nav items can wrap to multiple rows when no space */
@media (min-width: 769px) {
  .site-header__nav-wrap {
    padding-left: 0;
    padding-right: 0;
    gap: 0;
    width: 100%;
    max-width: 100%;
  }
  .site-header__nav {
    padding-right: 0;
    margin: 0;
  }
  .site-header__link {
    flex: 0 1 auto;
    min-width: 0;
    margin: 0;
    padding: 0;
  }
}

/* Tablet: narrower logo so nav + actions fit in one row without overlap */
@media (min-width: 769px) and (max-width: 1024px) {
  .site-header__logo-wrapper {
    width: min(300px, 36vw);
    clip-path: polygon(0 0, 100% 0, calc(100% - 50px) 100%, 0 100%);
  }
  .site-header__logo-wrapper .packmold-logo {
    height: 64px;
  }
  /* Nav links start after logo; inner has padding-left var(--px) so offset = logo width - that + gap */
  .site-header__nav {
    padding-left: calc(max(0px, min(300px, 36vw) - var(--px)) + 16px);
  }
}

/* Tablet / desktop: single row, dynamic font size */
@media (min-width: 769px) and (max-width: 900px) {
  .site-header__link {
    padding: 0 6px;
    font-size: 12px;
  }
  .site-header__cta {
    padding: 8px 12px;
    font-size: 11px;
  }
}
@media (min-width: 901px) and (max-width: 1024px) {
  .site-header__link {
    padding: 0 8px;
    font-size: 13px;
  }
  .site-header__cta {
    padding: 10px 14px;
    font-size: 12px;
  }
}
@media (min-width: 1025px) and (max-width: 1280px) {
  .site-header__link {
    padding: 0 10px;
    font-size: 14px;
  }
}

/* Mobile only: hide nav links, show hamburger + mobile menu (desktop/tablet keep nav) */
@media (max-width: 768px) {
  .site-header__logo-wrapper {
    top: 0;
    bottom: 0;
    width: min(280px, 42vw);
    min-width: 160px;
    padding-left: var(--px);
    clip-path: polygon(0 0, 100% 0, calc(100% - 60px) 100%, 0 100%);
  }

  .site-header__logo-wrapper .packmold-logo {
    height: 72px;
  }

  .site-header__inner {
    height: 80px;
    min-width: 0;
    justify-content: flex-end;
  }

  .site-header__nav-wrap {
    padding-left: 12px;
    padding-right: 12px;
    gap: 8px;
    justify-content: flex-end;
  }

  .site-header__nav {
    padding-left: 0;
    display: none;
  }

  .site-header__actions-desktop {
    display: none;
  }

  .site-header__actions {
    gap: 8px;
  }

  /* Keep Download catalog CTA visible in the mobile navbar */
  .site-header__cta--catalog {
    display: inline-flex;
    align-items: center;
    padding: 11px 14px;
    font-size: 13px;
    line-height: 1.2;
    min-height: 44px;
  }

  .site-header__cta-label--full {
    display: none;
  }

  .site-header__cta-label--short {
    display: inline;
  }

  .site-header__hamburger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    padding: 0;
    border-radius: 10px;
    background: rgba(10, 31, 68, 0.06);
  }

  .site-header__hamburger:hover,
  .site-header__hamburger:focus-visible {
    background: rgba(10, 31, 68, 0.12);
  }

  .site-header__hamburger-box {
    width: 28px;
    height: 22px;
  }

  .site-header__hamburger-bar {
    height: 3.5px;
  }

  .site-header__hamburger-bar:nth-child(1) { top: 0; }
  .site-header__hamburger-bar:nth-child(2) { top: 9.25px; }
  .site-header__hamburger-bar:nth-child(3) { top: 18.5px; }

  .site-header__hamburger.is-open .site-header__hamburger-bar:nth-child(1),
  .site-header__hamburger.is-open .site-header__hamburger-bar:nth-child(3) {
    top: 9.25px;
  }

  .site-header__mobile-menu.is-open {
    display: block !important;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--white);
    border-top: 1px solid var(--border-color);
    padding: 16px var(--px);
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  }

  .site-header__mobile-link {
    padding: 14px 0;
    font-size: 17px;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .site-header__icon-btn {
    min-width: 44px;
    min-height: 44px;
    padding: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* Small phones: smaller logo so bar doesn’t overflow */
@media (max-width: 480px) {
  .site-header__logo-wrapper {
    top: 0;
    bottom: 0;
    width: min(200px, 50vw);
    min-width: 140px;
    padding-left: 16px;
    clip-path: polygon(0 0, 100% 0, calc(100% - 40px) 100%, 0 100%);
  }

  .site-header__logo-wrapper .packmold-logo {
    height: 56px;
  }

  .site-header__inner {
    height: 72px;
  }

  .site-header__nav-wrap {
    padding-left: 8px;
    padding-right: 8px;
    gap: 4px;
  }

  .site-header__cta--catalog {
    padding: 10px 12px;
    font-size: 12px;
    min-height: 42px;
  }

  .site-header__hamburger {
    width: 46px;
    height: 46px;
    min-width: 46px;
    min-height: 46px;
  }

  .site-header__mobile-menu {
    padding: 12px var(--px);
    max-height: calc(100vh - 72px);
  }
}

/* ── FOOTER ──────────────────────────────────────────── */
.site-footer {
  background: linear-gradient(180deg, var(--footer-bg-start) 0%, rgba(48, 65, 88, 0.18) 100%);
  padding: 60px var(--px);
}

.site-footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.site-footer__logo-row {
  margin-bottom: 64px;
}

.site-footer__logo {
  display: inline-flex;
}

.site-footer__logo .packmold-logo {
  height: 144px;
  width: auto;
}

.site-footer__links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 45px;
  margin-bottom: 24px;
}

.site-footer__main-link {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 22px;
  color: var(--white);
  line-height: 30px;
  transition: color 0.18s;
}

.site-footer__main-link:hover {
  color: var(--green);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 80px;
  padding-top: 24px;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.site-footer__legal-link {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  color: var(--white);
  line-height: 28px;
  transition: opacity 0.18s;
}

.site-footer__legal-link:hover {
  opacity: 0.7;
}

.site-footer__social {
  display: flex;
  gap: 35px;
}

.site-footer__social-icon {
  width: 66px;
  height: 66px;
  border-radius: 33px;
  background: var(--social-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background 0.2s;
}

.site-footer__social-icon:hover {
  background: #3d5aa0;
}

.site-footer__social-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

.site-footer__interest {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  padding-top: 5px;
}

.site-footer__interest-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  margin-right: 10px;
}

.site-footer__interest-link {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  color: var(--white);
  line-height: 28px;
  transition: opacity 0.18s;
}

.site-footer__interest-link:hover {
  opacity: 0.7;
}

/* Footer credit: Octavertex Media */
.site-footer__credit {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__credit-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}

.site-footer__credit-link {
  display: inline-flex;
  align-items: center;
  transition: opacity 0.18s;
}

.site-footer__credit-link:hover {
  opacity: 0.85;
}

.site-footer__credit-logo {
  height: 28px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5)) drop-shadow(0 1px 2px rgba(0, 0, 0, 0.4));
  object-fit: contain;
}

@media (max-width: 768px) {
  .site-footer__links-row {
    gap: 20px;
  }

  .site-footer__main-link {
    font-size: 16px;
  }

  .site-footer__bottom {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }

  .site-footer__interest {
    flex-wrap: wrap;
    gap: 10px;
  }
}

/* ── CTA BANNER (reusable) ───────────────────────────── */
.cta-banner {
  background: var(--dark-green);
  padding: 120px var(--px);
  text-align: center;
}

.cta-banner__tag {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.cta-banner__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 24px;
}

.cta-banner__desc {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--text-muted);
  line-height: 24px;
  max-width: 676px;
  margin: 0 auto 32px;
}

.cta-banner__actions {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--radius-pill);
  padding: 14px 20px;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  white-space: nowrap;
  letter-spacing: -0.35px;
}

.btn--primary {
  background: var(--green);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--green-dark);
}

.btn--outline-green {
  background: transparent;
  color: var(--green);
  border: 1px solid var(--green);
}

.btn--outline-green:hover {
  background: var(--green);
  color: var(--white);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn--lg {
  padding: 10px 40px;
  font-size: 18px;
  line-height: 28px;
}

/* ── Cart & Checkout (design system) ─────────────────── */
.cart-page,
.checkout-page {
  min-height: 100vh;
  background: var(--navy);
  color: var(--white);
  padding-top: 2rem;
}
@media (min-width: 768px) {
  .cart-page,
  .checkout-page {
    padding-top: 3rem;
  }
}
@media (min-width: 1024px) {
  .cart-page,
  .checkout-page {
    padding-top: 4rem;
  }
}
.cart-page__inner,
.checkout-page__inner {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem 3rem;
}
@media (min-width: 640px) {
  .cart-page__inner,
  .checkout-page__inner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .cart-page__inner,
  .checkout-page__inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.checkout-page__inner {
  max-width: 560px;
}
.cart-page__back,
.checkout-page__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  transition: color 0.2s;
}
.cart-page__back:hover,
.checkout-page__back:hover {
  color: var(--green);
}
.cart-page__title,
.checkout-page__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .cart-page__title,
  .checkout-page__title {
    font-size: 2rem;
  }
}
.cart-page__subtitle,
.checkout-page__subtitle {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.cart-card,
.checkout-card {
  background: var(--navy-light);
  border-radius: var(--radius-card);
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
@media (min-width: 640px) {
  .cart-card,
  .checkout-card {
    padding: 1.5rem;
  }
}
@media (min-width: 768px) {
  .cart-card,
  .checkout-card {
    padding: 1.5rem 2rem;
  }
}
.cart-item-card {
  background: var(--navy-light);
  border-radius: var(--radius-md);
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) {
  .cart-item-card {
    flex-direction: row;
    padding: 1.5rem;
    align-items: center;
  }
}
.cart-item-card__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
}
@media (min-width: 768px) {
  .cart-item-card__title {
    font-size: 1.125rem;
  }
}
.cart-item-card__title:hover {
  color: var(--green);
}
.cart-item-card__price {
  font-family: var(--font-ui);
  font-weight: 700;
  color: var(--green);
  font-size: 0.9375rem;
}
.cart-summary-card {
  background: var(--navy-light);
  border-radius: var(--radius-card);
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-body);
}
.cart-summary-card__title,
.checkout-card__section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: var(--white);
}
.cart-page__btn-primary,
.checkout-page__btn-primary {
  width: 100%;
  min-height: 52px;
  padding: 14px 24px;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background 0.2s;
}
.cart-page__btn-primary:hover,
.checkout-page__btn-primary:hover {
  background: var(--green-dark);
}
@media (min-width: 768px) {
  .cart-page__btn-primary,
  .checkout-page__btn-primary {
    font-size: 1.0625rem;
    min-height: 56px;
    padding: 16px 28px;
  }
}
.cart-page__empty-icon {
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.cart-page__empty-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}
.cart-page__empty-text {
  font-family: var(--font-body);
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
}
.cart-page__empty-btn {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s;
}
.cart-page__empty-btn:hover {
  background: var(--green-dark);
  color: var(--white);
}
.cart-page__qty-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cart-page__qty-btn {
  width: 2rem;
  height: 2rem;
  min-width: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.cart-page__qty-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}
.cart-page__remove {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: #f87171;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.cart-page__remove:hover {
  color: #fca5a5;
}
.cart-page__success-banner {
  background: rgba(93, 187, 58, 0.15);
  border: 1px solid rgba(93, 187, 58, 0.4);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: #86efac;
}
.checkout-form__label {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--white);
  display: block;
  margin-bottom: 0.5rem;
}
.checkout-form__input,
.checkout-form__textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--white);
  transition: border-color 0.2s;
}
.checkout-form__input::placeholder,
.checkout-form__textarea::placeholder {
  color: var(--text-muted);
}
.checkout-form__input:focus,
.checkout-form__textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 2px rgba(93, 187, 58, 0.25);
}
.checkout-form__textarea {
  min-height: 100px;
  resize: vertical;
}
.checkout-form__divider {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
}
.checkout-form__submit {
  width: 100%;
  min-height: 52px;
  padding: 14px 24px;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background 0.2s;
}
.checkout-form__submit:hover:not(:disabled) {
  background: var(--green-dark);
}
.checkout-form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ── SECTION ─────────────────────────────────────────── */
.section {
  padding: 80px 0;
}

.section--dark {
  background: var(--navy);
}

.section--darker {
  background: var(--dark-green);
}

.section__header {
  text-align: center;
  margin-bottom: 60px;
}

.section__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 24px;
}

.section__subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-muted);
  line-height: 24px;
  max-width: 688px;
  margin: 0 auto;
}

.section__divider {
  width: 228px;
  height: 2px;
  background: var(--green);
  margin: 16px auto 24px;
}

/* ── HOME: Hero anchor targets (scroll-margin for sticky header) ─── */
#solutions,
#categories,
#processes,
#highlights {
  scroll-margin-top: 100px;
}

/* ── HOME: Hero ──────────────────────────────────────── */
.hero {
  background: var(--navy);
  min-height: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px var(--px) 60px;
  position: relative;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  pointer-events: none; /* allow clicks to pass through to content and nav pills */
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 72px;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}

.hero__desc {
  font-family: var(--font-body);
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Landing hero: compact, no dead vertical space on mobile */
@media (max-width: 767px) {
  .landing-hero,
  .home-page .hero.landing-hero {
    min-height: 0 !important;
    height: auto !important;
    justify-content: flex-start !important;
    align-items: stretch !important;
    padding: 88px 16px 16px !important;
  }
  .landing-hero .hero__title,
  .home-hero__title {
    font-size: 28px !important;
    margin-bottom: 8px !important;
    line-height: 1.15 !important;
  }
  .landing-hero .hero__desc,
  .home-hero__desc {
    font-size: 12px;
    margin-bottom: 10px;
    line-height: 1.45;
  }
  .landing-hero .hero__content,
  .home-hero__content {
    max-width: 100%;
  }
  .landing-hero .hero__nav-pills,
  .home-hero__nav-pills {
    margin-top: 12px !important;
    max-width: 100%;
    width: 100%;
  }
  .landing-hero .hero__nav-pills a,
  .home-hero__nav-pill {
    padding: 6px 10px !important;
    font-size: 10px !important;
    white-space: normal;
    text-align: center;
    line-height: 1.25;
  }
}

/* ── HOME PAGE layout & typography ───────────────────── */
.home-section {
  padding: 80px var(--px);
  max-width: var(--max-w);
  margin: 0 auto;
}

.home-eyebrow {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 13px;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.home-eyebrow--center {
  text-align: center;
}

/* First viewport: hero + trusted brands */
.home-above-fold {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.home-above-fold .landing-hero {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Hero */
.landing-hero {
  min-height: 0;
  padding: 96px var(--px) 24px;
}

.home-hero__content {
  max-width: 800px;
}

.home-hero__title {
  font-size: 56px;
}

.home-hero__desc {
  max-width: 600px;
  margin: 0 auto 24px;
}

.home-hero__summary {
  display: none !important;
}

.home-hero__summary-text {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
  text-align: center;
}

.home-hero__quick-links {
  text-align: center;
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--text-info);
  margin-bottom: 8px;
}

.home-hero__nav-pills {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 0;
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-pill);
  padding: 4px;
  margin-top: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.home-hero__nav-pill {
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 13px;
  color: var(--white);
  background: transparent;
  transition: all 0.2s;
  white-space: nowrap;
}

.home-hero__nav-pill--active {
  background: var(--green);
}

/* Stats */
.home-stats.container {
  padding-top: 80px;
  padding-bottom: 80px;
}

.home-stats__inner {
  padding: 0;
}

.home-stats__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 36px;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.home-stats__desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 500px;
}

.home-stats__grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.home-stats__cta {
  margin-top: 32px;
}

/* Solutions */
.home-solutions {
  background: var(--white);
}

.home-solutions__title {
  color: var(--navy);
  font-style: italic;
  font-size: 42px;
  margin-bottom: 16px;
}

.home-solutions__desc {
  color: var(--slate);
}

.home-solutions .feature-card {
  background: #f5f7fa;
  border: 1px solid #e5e7eb;
}

.home-solutions .feature-card__title {
  color: var(--navy);
}

.home-solutions .feature-card__desc {
  color: var(--slate);
}

/* Processes */
.processes-section {
  display: flex;
  gap: 60px;
  align-items: center;
}

.home-processes__image {
  flex: 1;
  border-radius: var(--radius-card);
  overflow: hidden;
}

.home-processes__content {
  flex: 1;
  min-width: 0;
}

.home-processes__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 36px;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 24px;
  font-style: italic;
}

.home-processes__p {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.home-processes__p:last-of-type {
  margin-bottom: 32px;
}

/* Categories */
.home-categories__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 42px;
  color: var(--white);
  text-align: center;
  margin-bottom: 60px;
  font-style: italic;
}

.home-categories__grid {
  display: grid;
  gap: 16px;
}

.home-categories__grid--primary {
  grid-template-columns: repeat(3, 1fr);
}

.home-categories__grid--secondary {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 16px;
}

.home-categories__card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
}

.home-categories__card--wide {
  aspect-ratio: 16 / 9;
}

.home-categories__label-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}

.home-categories__label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  color: var(--white);
}

/* Showcase */
.home-showcase {
  padding: 40px var(--px);
}

.home-showcase__frame {
  border-radius: var(--radius-card);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 7;
}

.home-showcase__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-showcase__play {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 2px solid white;
}

.home-showcase__play-icon {
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 22px solid white;
  margin-left: 4px;
}

/* Highlights */
.home-highlights {
  padding: 60px var(--px);
}

.home-highlights__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
}

.home-highlights__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 28px;
  color: var(--white);
  margin-bottom: 8px;
}

.home-highlights__desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted);
  max-width: 400px;
}

.home-highlights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.home-highlights__card {
  border-radius: 14px;
  overflow: hidden;
  background: rgba(49, 65, 88, 0.4);
  display: block;
}

.home-highlights__card-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.home-highlights__card-body {
  padding: 16px;
}

.home-highlights__card-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
  margin-bottom: 4px;
}

.home-highlights__card-desc {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-muted);
}

/* Brands */
.home-brands {
  padding: 60px var(--px);
  text-align: center;
}

.home-brands--above-fold {
  flex: 0 0 auto;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 20px var(--px) 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.28) 100%);
}

.home-brands--above-fold .home-brands__title {
  font-size: 22px;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.home-brands--above-fold .home-brands__logos {
  gap: 28px 36px;
}

.home-brands--above-fold .home-brands__logo {
  max-height: 48px;
  max-width: 140px;
}

.home-brands--above-fold .home-brands__name {
  font-size: 12px;
}

.home-brands__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 32px;
  color: var(--white);
  margin-bottom: 40px;
}

.home-brands__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.home-brands__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.home-brands__logo {
  max-height: 64px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.home-brands__name {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted);
}

/* CTA */
.home-cta {
  margin: 0 var(--px) 60px;
  border-radius: var(--radius-card);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.home-cta__title {
  font-size: 40px;
}

/* Home page: mobile layout — tight spacing, no empty gaps */
@media (max-width: 767px) {
  .home-page .home-section {
    padding: 20px 16px;
  }

  .home-eyebrow {
    font-size: 10px;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
  }

  .home-hero__summary {
    display: none !important;
  }

  .home-hero__quick-links {
    font-size: 11px;
    margin-bottom: 0;
  }

  .home-brands--above-fold {
    padding: 14px 16px 18px;
  }

  .home-brands--above-fold .home-brands__title {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .home-brands--above-fold .home-brands__logos {
    gap: 14px 18px;
  }

  .home-brands--above-fold .home-brands__logo {
    max-height: 36px;
    max-width: 100px;
  }

  .home-brands--above-fold .home-brands__name {
    font-size: 10px;
  }

  .home-stats.container {
    padding: 20px 16px;
  }

  .home-stats .stats-section,
  .stats-section.home-stats__inner {
    flex-direction: column;
    gap: 16px;
  }

  .home-stats__title {
    font-size: 22px;
    margin-bottom: 8px;
  }

  .home-stats__desc {
    font-size: 12px;
    margin-bottom: 14px;
  }

  .home-stats__grid {
    gap: 12px !important;
  }

  .home-stats .stat-item {
    padding-top: 12px;
  }

  .home-stats .stat-item__number {
    font-size: 32px;
  }

  .home-stats .stat-item__label {
    font-size: 11px;
  }

  .home-stats .stat-item__desc {
    font-size: 11px;
    margin-top: 4px;
  }

  .home-stats .stats-section__image {
    min-height: 0;
    aspect-ratio: 4 / 3;
    height: auto;
  }

  .home-stats__cta {
    margin-top: 16px;
  }

  .features-section.home-solutions {
    padding: 20px 16px;
  }

  .home-solutions .features-section__title {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .home-solutions .features-section__desc {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .home-solutions .features-grid {
    gap: 12px;
  }

  .home-solutions .feature-card {
    padding: 18px 14px;
  }

  .home-solutions .feature-card__icon {
    font-size: 28px;
    margin-bottom: 8px;
  }

  .home-solutions .feature-card__title {
    font-size: 15px;
    margin-bottom: 6px;
  }

  .home-solutions .feature-card__desc {
    font-size: 12px;
  }

  .processes-section {
    flex-direction: column !important;
    gap: 16px !important;
    padding: 20px 16px !important;
  }

  .home-processes__title {
    font-size: 22px !important;
    margin-bottom: 8px !important;
  }

  .home-processes__p,
  .processes-section__p {
    font-size: 12px !important;
    line-height: 1.45 !important;
    margin-bottom: 10px !important;
  }

  .home-processes__p:last-of-type,
  .processes-section__p:last-of-type {
    margin-bottom: 14px !important;
  }

  .home-categories__title {
    font-size: 24px;
    margin-bottom: 14px;
  }

  .home-categories__grid {
    gap: 12px;
  }

  .home-categories__grid--primary,
  .home-categories__grid--secondary {
    grid-template-columns: 1fr;
  }

  .home-categories__grid--secondary {
    margin-top: 12px;
  }

  .home-categories__label-wrap {
    padding: 12px;
  }

  .home-categories__label {
    font-size: 14px;
  }

  .home-showcase.home-section,
  .home-showcase {
    padding: 16px;
  }

  .home-showcase__frame {
    aspect-ratio: 16 / 9;
  }

  .home-showcase__play {
    width: 48px;
    height: 48px;
  }

  .home-showcase__play-icon {
    border-top-width: 8px;
    border-bottom-width: 8px;
    border-left-width: 14px;
  }

  .home-highlights.home-section,
  .home-highlights {
    padding: 20px 16px;
  }

  .home-highlights__header {
    margin-bottom: 12px;
  }

  .home-highlights__title {
    font-size: 20px;
    margin-bottom: 4px;
  }

  .home-highlights__desc {
    font-size: 12px;
  }

  .home-highlights__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .home-highlights__card-body {
    padding: 12px;
  }

  .home-highlights__card-title {
    font-size: 13px;
  }

  .home-highlights__card-desc {
    font-size: 11px;
  }

  .home-brands.home-section,
  .home-brands {
    padding: 20px 16px;
  }

  .home-brands__title {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .home-brands__logos {
    gap: 16px;
  }

  .home-brands__logo {
    max-height: 44px;
    max-width: 120px;
  }

  .home-brands__name {
    font-size: 11px;
  }

  .home-cta {
    margin: 0 16px 20px;
    padding: 28px 16px !important;
  }

  .home-cta__title,
  .home-cta .cta-banner__title {
    font-size: 22px !important;
    margin-bottom: 12px;
  }

  .home-cta .cta-banner__actions {
    gap: 10px;
  }

  .home-cta .btn--lg {
    padding: 10px 20px;
    font-size: 12px;
  }

  #solutions,
  #categories,
  #processes,
  #highlights {
    scroll-margin-top: 84px;
  }
}

/* ── HOME: Stats ─────────────────────────────────────── */
.stats-section {
  padding: 80px var(--px);
  display: flex;
  gap: 60px;
  align-items: center;
}

.stats-section.home-stats__inner {
  padding: 0;
}

.stats-section__content {
  flex: 1;
}

.stats-section__image {
  flex: 1;
  border-radius: var(--radius-card);
  overflow: hidden;
  position: relative;
  min-height: 400px;
}

.stats-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.stats-section__overtitle {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 14px;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.stats-section__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 16px;
}

.stats-section__desc {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 40px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.stat-item {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 20px;
}

.stat-item__number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 48px;
  color: var(--white);
}

.stat-item__label {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 14px;
  color: var(--text-muted);
  margin-left: 4px;
}

.stat-item__desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
  margin-top: 6px;
}

/* ── HOME: Features ──────────────────────────────────── */
.features-section {
  padding: 100px var(--px);
  text-align: center;
}

.features-section__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 16px;
}

.features-section__desc {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-muted);
  line-height: 24px;
  max-width: 800px;
  margin: 0 auto 60px;
}

/* Homepage desktop: preserve original inline layout (≥768px unchanged) */
@media (min-width: 768px) {
  .features-section.home-solutions {
    padding: 80px var(--px);
    background: var(--white);
  }

  .home-solutions .features-section__title {
    font-size: 42px;
    color: var(--navy);
    font-style: italic;
  }

  .home-solutions .features-section__desc {
    color: var(--slate);
  }

  .home-highlights.home-section {
    padding: 60px var(--px);
  }

  .home-brands.home-section {
    padding: 60px var(--px);
  }

  .home-showcase.home-section {
    padding: 40px var(--px);
  }
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  background: rgba(49, 65, 88, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-card);
  padding: 40px 28px;
  text-align: left;
  transition: transform 0.3s, border-color 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--green);
}

.feature-card__icon {
  font-size: 36px;
  margin-bottom: 20px;
}

.feature-card__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.feature-card__desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
}

/* ── PROMO BLOCK (used on Sustainability, Markets) ──── */
.promo-block {
  display: flex;
  gap: 60px;
  align-items: center;
  padding: 90px var(--px);
}

.promo-block--dark {
  background: var(--dark-green);
}

.promo-block--reverse {
  flex-direction: row-reverse;
}

.promo-block__image {
  flex: 1;
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 568 / 379;
  position: relative;
}

.promo-block__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-block__content {
  flex: 1;
}

.promo-block__tag {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 8px;
}

.promo-block__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 40px;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 24px;
}

.promo-block__desc {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--text-light);
  line-height: 27px;
  margin-bottom: 24px;
}

.promo-block__list {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-light);
  line-height: 27px;
  list-style: disc;
  padding-left: 24px;
}

.promo-block__list li {
  margin-bottom: 4px;
}

/* ── CONTACT ─────────────────────────────────────────── */
.contact-form-section {
  display: flex;
  border-radius: 34px;
  overflow: hidden;
  background: var(--navy-light);
}

.contact-form-section__image {
  flex: 1;
  position: relative;
  min-height: 500px;
}

.contact-form-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.contact-form-section__form {
  flex: 1;
  padding: 76px 56px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form-section__form h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 48px;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.form-input {
  width: 100%;
  height: 51px;
  background: var(--navy);
  border: 1px solid var(--border-input);
  border-radius: var(--radius-pill);
  padding: 14px 20px;
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-input:focus {
  border-color: var(--green);
}

.form-textarea {
  height: 170px;
  border-radius: var(--radius-md);
  resize: none;
}

.contact-info {
  display: flex;
  gap: 108px;
  align-items: flex-start;
  margin-top: 72px;
}

.contact-info__details h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 48px;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
}

.contact-info__details p {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 46px;
}

.contact-info__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 16px;
  color: var(--text-info);
  line-height: 1.5;
  margin-bottom: 16px;
}

.contact-info__item svg {
  flex-shrink: 0;
  color: var(--green);
}

.contact-info__map {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  min-height: 200px;
  position: relative;
}

.contact-info__map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.contact-address-card {
  background: var(--navy-light);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-card);
  padding: 20px 24px;
}

/* ── BLOG ────────────────────────────────────────────── */
.blog-breadcrumb {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
  text-align: center;
}

.blog-breadcrumb a {
  color: var(--text-info);
  text-decoration: underline;
}

.blog-breadcrumb a:hover {
  color: var(--green);
}

.blog-index__hub-links {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 12px;
  line-height: 1.6;
}

.blog-index__hub-links a {
  color: var(--text-info);
  text-decoration: underline;
}

.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.blog-pagination__status {
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--text-muted);
}

.blog-author-bio {
  padding: 20px 24px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-author-bio__label {
  font-family: var(--font-ui);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--green);
  margin-bottom: 8px;
}

.blog-author-bio__name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.blog-author-bio__text {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

.blog-speakable {
  margin-bottom: 24px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  background: rgba(93, 187, 58, 0.08);
  border: 1px solid rgba(93, 187, 58, 0.25);
}

.blog-speakable__label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--green);
  margin-bottom: 8px;
}

.blog-speakable__text {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--white);
  margin: 0;
}

.blog-faq__title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.blog-faq__list {
  margin: 0;
}

.blog-faq__item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-faq__item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.blog-faq__question {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 8px;
}

.blog-faq__answer {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

.blog-related__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  color: var(--white);
  margin-bottom: 24px;
}

.blog-featured {
  border-radius: var(--radius-card);
  overflow: hidden;
  margin-bottom: 60px;
  position: relative;
}

.blog-featured img {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
}

.blog-featured__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.blog-featured__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 28px;
  color: var(--white);
  margin-bottom: 8px;
}

.blog-featured__meta {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted);
}

.blog-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.blog-list-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 32px;
}

.blog-list-item__image {
  width: 200px;
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.blog-list-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-list-item__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.blog-list-item__desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 8px;
}

.blog-list-item__meta {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
}

/* ── BLOG DETAIL ─────────────────────────────────────── */
.blog-detail-hero {
  padding: 60px var(--px) 40px;
}

.blog-detail-hero__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 42px;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 12px;
}

.blog-detail-hero__meta {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.blog-detail__image {
  width: 100%;
  border-radius: var(--radius-card);
  overflow: hidden;
  max-height: 420px;
  margin-bottom: 40px;
}

.blog-detail__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-detail__body {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--text-light);
  line-height: 27px;
  max-width: 900px;
  margin: 0 auto;
}

.blog-detail__body p {
  margin-bottom: 20px;
}

.blog-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-related-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(49, 65, 88, 0.4);
  transition: transform 0.3s;
}

.blog-related-card:hover {
  transform: translateY(-4px);
}

.blog-related-card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.blog-related-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-related-card__body {
  padding: 20px;
}

.blog-related-card__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.blog-related-card__meta {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.blog-related-card__desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 12px;
}

.blog-related-card__link {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 14px;
  color: var(--green);
}

/* ── MARKETS INDUSTRY CARD ───────────────────────────── */
.industry-card {
  display: flex;
  gap: 60px;
  align-items: center;
  padding: 60px var(--px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.industry-card--reverse {
  flex-direction: row-reverse;
}

.industry-card__image {
  flex: 1;
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 16/10;
  position: relative;
}

.industry-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.industry-card__content {
  flex: 1;
}

.industry-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 32px;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.industry-card__desc {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-light);
  line-height: 24px;
  margin-bottom: 24px;
}

/* ── ABOUT ───────────────────────────────────────────── */
.about-hero-image {
  width: 100%;
  border-radius: var(--radius-card);
  overflow: hidden;
  margin-bottom: 40px;
}

.about-hero-image img {
  width: 100%;
  aspect-ratio: 16/6;
  object-fit: cover;
}

.about-precision {
  display: flex;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
}

.about-precision__content {
  flex: 1;
}

.about-precision__image {
  flex: 1;
  border-radius: var(--radius-card);
  overflow: hidden;
}

.about-precision__image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about-precision__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 36px;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-precision__subtitle {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 8px;
}

.about-precision__desc {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
}

/* ── ABOUT: Investment cards ─────────────────────────── */
.invest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.invest-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-align: center;
}

.invest-card__image {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #1a2a40;
}

.invest-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.invest-card__body {
  padding: 24px;
}

.invest-card__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 8px;
}

.invest-card__desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
}

/* ── ABOUT: Team ─────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.team-card {
  text-align: center;
}

.team-card__photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 16px;
  background: #1a2a40;
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 4px;
}

.team-card__role {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ── SHOP / CATALOGUE ────────────────────────────────── */
.enquiry-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 60px;
}

.enquiry-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px;
  color: var(--navy);
}

.enquiry-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 12px;
}

.enquiry-card__desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--slate);
  line-height: 1.5;
  margin-bottom: 20px;
}

/* ── PRODUCTS LISTING PAGE (/products) – responsive & mobile ─── */
.products-page {
  background: var(--navy);
  min-height: 100vh;
}

.products-page__hero {
  text-align: center;
  padding: 40px 20px 24px;
}
@media (min-width: 768px) {
  .products-page__hero {
    padding: 60px 24px 32px;
  }
}
@media (min-width: 1024px) {
  .products-page__hero {
    padding: 80px var(--px) 40px;
  }
}

.products-page__hero-title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
  font-size: 28px;
}
@media (min-width: 768px) {
  .products-page__hero-title {
    font-size: 38px;
  }
}
@media (min-width: 1024px) {
  .products-page__hero-title {
    font-size: 48px;
  }
}

.products-page__hero-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
  line-height: 24px;
  max-width: 688px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .products-page__hero-desc {
    font-size: 16px;
  }
}

.products-page__layout {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0 20px 40px;
  gap: 24px;
}
@media (min-width: 768px) {
  .products-page__layout {
    padding: 0 24px 60px;
  }
}
@media (min-width: 1024px) {
  .products-page__layout {
    flex-direction: row;
    align-items: flex-start;
    padding: 0 var(--px) 110px;
    gap: 0;
  }
}

.products-page__sidebar {
  width: 100%;
  flex-shrink: 0;
  background: var(--navy-light);
  border-radius: 12px;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .products-page__sidebar {
    display: none;
    margin-bottom: 0;
  }
  .products-page__sidebar.products-page__sidebar--open {
    display: block;
    margin-bottom: 16px;
  }
}
@media (min-width: 1024px) {
  .products-page__sidebar {
    width: 338px;
    max-width: 338px;
    border-radius: 0;
    background: transparent;
    padding-right: 20px;
  }
}

.products-page__sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 12px 12px 16px;
}
@media (min-width: 1024px) {
  .products-page__sidebar-header {
    padding: 15px 10px;
  }
}

.products-page__sidebar-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.products-page__sidebar-close {
  display: none;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 8px;
  color: var(--white);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
@media (max-width: 1023px) {
  .products-page__sidebar-close {
    display: flex;
  }
}
@media (min-width: 1024px) {
  .products-page__sidebar-close {
    display: none;
  }
}

.products-page__sidebar-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading), Helvetica, sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
}
@media (min-width: 1024px) {
  .products-page__sidebar-title {
    font-size: 20px;
  }
}

.products-page__reset-btn {
  font-family: var(--font-body), Helvetica, sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: var(--green);
  text-transform: uppercase;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
}

.products-page__want-to {
  background: var(--navy-light);
  border-top: 2px solid rgba(246, 246, 245, 0.3);
  padding: 16px 12px;
}
@media (min-width: 1024px) {
  .products-page__want-to {
    padding: 20px 16px;
  }
}

.products-page__want-to h4 {
  font-family: var(--font-heading), Helvetica, sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
  margin-bottom: 10px;
  padding-left: 0;
}
@media (min-width: 1024px) {
  .products-page__want-to h4 {
    font-size: 16px;
    padding-left: 29px;
  }
}

.products-page__want-to p {
  font-family: var(--font-body), Helvetica, sans-serif;
  font-size: 12px;
  color: var(--white);
  line-height: 15px;
  margin-bottom: 14px;
}

.products-page__want-to-btns {
  display: flex;
  gap: 0;
}

.products-page__mode-btn {
  flex: 1;
  padding: 12px 8px;
  font-family: var(--font-body), Helvetica, sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(201, 201, 201, 0.6);
  cursor: pointer;
  text-align: center;
}
@media (min-width: 1024px) {
  .products-page__mode-btn {
    padding: 14px 0;
    font-size: 12px;
  }
}

.products-page__mode-btn.active {
  background: var(--green);
  border-color: transparent;
}

.products-page__filter-item {
  border-top: 2px solid rgba(246, 246, 245, 0.3);
  padding: 16px 12px 16px 36px;
  position: relative;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .products-page__filter-item {
    padding: 20px 15px 20px 45px;
  }
}

.products-page__filter-item::before,
.products-page__filter-item::after {
  content: "";
  position: absolute;
  background: var(--white);
  width: 12px;
  height: 2px;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
}
.products-page__filter-item::after {
  width: 2px;
  height: 12px;
  left: 19px;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 1024px) {
  .products-page__filter-item::before {
    left: 17px;
    top: 27px;
    transform: none;
  }
  .products-page__filter-item::after {
    left: 22px;
    top: 22px;
    transform: none;
  }
}

.products-page__filter-label {
  font-family: var(--font-heading), Helvetica, sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
  line-height: 24px;
  display: block;
  margin-bottom: 12px;
}
@media (min-width: 1024px) {
  .products-page__filter-label {
    font-size: 16px;
  }
}

.products-page__filter-item--open {
  cursor: default;
}
.products-page__filter-item--open::before {
  top: 28px;
  transform: none;
}
.products-page__filter-item--open::after {
  display: none;
}
@media (min-width: 1024px) {
  .products-page__filter-item--open::before {
    top: 27px;
  }
}

.products-page__filter-list,
.products-page__filter-sublist {
  list-style: none;
  margin: 0;
  padding: 0;
}
.products-page__filter-list > li + li {
  margin-top: 10px;
}
.products-page__filter-group {
  margin-top: 4px;
}
.products-page__filter-sublist {
  margin: 6px 0 0 12px;
  padding-left: 10px;
  border-left: 1px solid rgba(246, 246, 245, 0.25);
}
.products-page__filter-sublist > li + li {
  margin-top: 4px;
}

.products-page__filter-link {
  display: block;
  font-family: var(--font-body), Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.15s ease;
}
.products-page__filter-link:hover {
  color: var(--green);
}
.products-page__filter-link--parent {
  font-weight: 700;
  color: var(--white);
}
.products-page__filter-link--child {
  font-size: 13px;
}
.products-page__filter-link.is-active {
  color: var(--green);
  font-weight: 700;
}

.products-page__color-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.products-page__color-swatch {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--swatch, #888);
  border: 2px solid rgba(255, 255, 255, 0.35);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  display: inline-flex;
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}
.products-page__color-swatch:hover {
  transform: scale(1.08);
  border-color: var(--green);
}
.products-page__color-swatch.is-active {
  border-color: var(--green);
  box-shadow: 0 0 0 2px rgba(93, 187, 58, 0.45), inset 0 0 0 1px rgba(0, 0, 0, 0.15);
}
.products-page__color-swatch--light {
  border-color: rgba(255, 255, 255, 0.65);
}
.products-page__color-clear {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
  color: var(--green);
  text-decoration: none;
}
.products-page__color-clear:hover {
  text-decoration: underline;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.products-page__sidebar-footer {
  border-top: 2px solid rgba(246, 246, 245, 0.3);
  padding: 12px 15px;
  text-align: right;
}

.products-page__content {
  flex: 1;
  min-width: 0;
}

/* Toolbar: Filters toggle (mobile) + Sort + View switcher (mobile) */
.products-page__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  margin-bottom: 8px;
}
@media (min-width: 1024px) {
  .products-page__toolbar {
    flex-wrap: nowrap;
    justify-content: flex-end;
  }
}

.products-page__filters-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--navy-light);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font-body), Helvetica, sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  min-height: 44px;
}
.products-page__filters-toggle .products-page__filters-chevron {
  transition: transform 0.2s ease;
}
.products-page__filters-toggle--open .products-page__filters-chevron {
  transform: rotate(180deg);
}
@media (min-width: 1024px) {
  .products-page__filters-toggle {
    display: none;
  }
}

.products-page__view-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1px solid #c9c9c6;
  border-radius: 8px;
  overflow: hidden;
}

.products-page__view-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: transparent;
  border: none;
  color: var(--white);
  font-family: var(--font-body), Helvetica, sans-serif;
  font-size: 13px;
  cursor: pointer;
  min-height: 44px;
}
.products-page__view-btn + .products-page__view-btn {
  border-left: 1px solid #c9c9c6;
}
.products-page__view-btn--active {
  background: var(--navy-light);
  color: var(--green);
}

.products-page__sort-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .products-page__sort-bar {
    justify-content: space-between;
  }
}
@media (min-width: 1024px) {
  .products-page__sort-bar {
    margin-left: auto;
  }
}

.products-page__sort-label {
  font-family: var(--font-heading), Helvetica, sans-serif;
  font-weight: 700;
  font-size: 11px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
@media (min-width: 768px) {
  .products-page__sort-label {
    font-size: 12px;
    margin-right: 10px;
  }
}

.products-page__sort-select {
  border: 1px solid #c9c9c6;
  padding: 10px 12px 10px 14px;
  min-width: 140px;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body), Helvetica, sans-serif;
  font-size: 13px;
}
@media (min-width: 768px) {
  .products-page__sort-select {
    min-width: 180px;
    padding: 11px 13px 11px 16px;
    font-size: 14px;
  }
}

.products-page__pagination-info {
  border-top: 2px solid #f6f6f5;
  padding-top: 12px;
  margin-bottom: 16px;
}

.products-page__pagination-info span {
  font-family: var(--font-body), Helvetica, sans-serif;
  font-size: 11px;
  color: #94948b;
}
@media (min-width: 768px) {
  .products-page__pagination-info span {
    font-size: 11.8px;
  }
}

.products-page__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
@media (min-width: 1024px) {
  .products-page__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* List view (columns): single column, card = row (image left, content right) */
.products-page__grid--list {
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .products-page__grid--list {
    grid-template-columns: 1fr;
  }
}
.products-page__grid--list .products-page__card {
  padding: 12px 8px;
}
@media (min-width: 768px) {
  .products-page__grid--list .products-page__card {
    padding: 16px;
  }
}
.products-page__card-body {
  min-width: 0;
}
.products-page__card--list .products-page__card-inner {
  display: flex;
  flex-direction: row;
  gap: 16px;
  padding: 0;
  align-items: flex-start;
}
.products-page__card--list .products-page__card-body {
  flex: 1;
  min-width: 0;
}
@media (min-width: 768px) {
  .products-page__card--list .products-page__card-inner {
    gap: 20px;
    padding: 0 20px;
  }
}
.products-page__card--list .products-page__card-image-wrap {
  flex-shrink: 0;
  width: 100px;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .products-page__card--list .products-page__card-image-wrap {
    width: 140px;
  }
}
.products-page__card--list .products-page__card-image {
  aspect-ratio: 1 / 1;
  width: 100%;
}
.products-page__card--list .products-page__card-name {
  margin-bottom: 6px;
}
.products-page__card--list .products-page__card-meta,
.products-page__card--list .products-page__card-location {
  margin-top: 4px;
}
.products-page__card--list .products-page__card-location {
  padding-bottom: 0;
}

.products-page__card {
  padding: 12px 8px;
  display: block;
  text-decoration: none;
  color: inherit;
}
@media (min-width: 768px) {
  .products-page__card {
    padding: 16px;
  }
}

.products-page__card-inner {
  padding: 0 12px;
}
@media (min-width: 768px) {
  .products-page__card-inner {
    padding: 0 20px;
  }
}

.products-page__card-image-wrap {
  position: relative;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .products-page__card-image-wrap {
    margin-bottom: 12px;
  }
}

.products-page__card-image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  width: 100%;
}

.products-page__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.products-page__card-badges {
  position: absolute;
  bottom: 8px;
  left: 0;
  display: flex;
  gap: 6px;
}

.products-page__card-badge {
  font-family: var(--font-body), Helvetica, sans-serif;
  font-weight: 700;
  font-size: 10px;
  color: var(--white);
  text-transform: uppercase;
  padding: 4px 5px;
  line-height: 10px;
}

.products-page__card-badge.sale {
  background: #ed1c2e;
}

.products-page__card-badge.new {
  background: var(--green);
}

.products-page__card-name {
  font-family: var(--font-heading), Helvetica, sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--white);
  line-height: 15px;
  white-space: pre-line;
  margin-bottom: 6px;
}
@media (min-width: 768px) {
  .products-page__card-name {
    font-size: 14px;
    margin-bottom: 8px;
  }
}

.products-page__card-meta {
  margin-top: 6px;
}
@media (min-width: 768px) {
  .products-page__card-meta {
    margin-top: 8px;
  }
}

.products-page__card-meta p,
.products-page__card-meta span {
  font-family: var(--font-body), Helvetica, sans-serif;
  font-size: 11px;
  color: var(--white);
  line-height: 14px;
}
.products-page__card-meta .muted {
  color: #94948b;
}
.products-page__card-meta .sale-price {
  color: #ed1c2e;
}
.products-page__card-meta .orig-price {
  text-decoration: line-through;
  color: #94948b;
}
@media (min-width: 768px) {
  .products-page__card-meta p,
  .products-page__card-meta span {
    font-size: 12px;
    line-height: 14.4px;
  }
}

.products-page__card-location {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding-bottom: 12px;
}
@media (min-width: 768px) {
  .products-page__card-location {
    padding-bottom: 16px;
  }
}

.products-page__card-location span {
  font-family: var(--font-body), Helvetica, sans-serif;
  font-weight: 700;
  font-size: 10px;
  color: var(--green);
  text-transform: uppercase;
  line-height: 10px;
}

.products-page__load-more {
  text-align: center;
  padding: 20px 0;
}
@media (min-width: 768px) {
  .products-page__load-more {
    padding: 24px 0;
  }
}

.products-page__load-more span {
  font-family: var(--font-body), Helvetica, sans-serif;
  font-size: 12px;
  color: #94948b;
  margin-bottom: 12px;
  display: block;
}

.products-page__disclaimer {
  font-family: var(--font-body), Helvetica, sans-serif;
  font-size: 11px;
  color: #94948b;
  text-align: center;
  line-height: 16px;
  margin-top: 12px;
  padding: 0 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .products-page__disclaimer {
    margin-top: 16px;
  }
}

.products-page__cta {
  padding: 0 20px 40px;
}
@media (min-width: 768px) {
  .products-page__cta {
    padding: 0 24px 50px;
  }
}
@media (min-width: 1024px) {
  .products-page__cta {
    padding: 0 var(--px) 60px;
  }
}

.products-page__cta-inner {
  background: var(--navy-light);
  border-radius: 24px;
  padding: 40px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .products-page__cta-inner {
    border-radius: 50px;
    padding: 56px 40px;
  }
}
@media (min-width: 1024px) {
  .products-page__cta-inner {
    padding: 76px 64px;
  }
}

.products-page__cta-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/images/cta-bg.png") center/cover;
  opacity: 0.2;
}

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

.products-page__cta-eyebrow {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 3.2px;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .products-page__cta-eyebrow {
    font-size: 16px;
    margin-bottom: 16px;
  }
}

.products-page__cta-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 28px;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .products-page__cta-title {
    font-size: 38px;
    line-height: 62.4px;
    margin-bottom: 24px;
  }
}
@media (min-width: 1024px) {
  .products-page__cta-title {
    font-size: 47px;
  }
}

.products-page__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  font-size: 16px;
}
@media (min-width: 768px) {
  .products-page__cta-btn {
    padding: 17px 23px;
    font-size: 18px;
  }
}

.product-grid-catalogue {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-catalogue-card {
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.3s;
  cursor: pointer;
  position: relative;
}

.product-catalogue-card:hover {
  transform: translateY(-4px);
}

.product-catalogue-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.product-catalogue-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.product-catalogue-card__name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
  margin-bottom: 4px;
}

.product-catalogue-card__info {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-muted);
}

/* ── PRODUCT DETAIL ──────────────────────────────────── */
.product-detail {
  display: flex;
  gap: 60px;
  padding: 60px var(--px);
}

.product-detail__gallery {
  flex: 1;
  background: var(--navy-light);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.product-detail__gallery img {
  max-height: 400px;
  object-fit: contain;
}

.product-detail__info {
  flex: 1;
}

.product-detail__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 32px;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.product-detail__desc {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 24px;
}

.product-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.product-select {
  width: 100%;
  padding: 12px 16px;
  background: var(--navy);
  border: 1px solid var(--border-input);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 14px;
  appearance: none;
  cursor: pointer;
}

.product-select option {
  background: var(--navy);
}

.key-highlights {
  margin-bottom: 24px;
}

.key-highlights__title {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 12px;
}

.key-highlights__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.key-highlights__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted);
}

.key-highlights__item::before {
  content: "✓";
  color: var(--green);
  font-weight: 700;
}

.product-tabs {
  margin-top: 40px;
}

.product-tabs__bar {
  display: flex;
  gap: 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 24px;
}

.product-tabs__tab {
  padding: 12px 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s;
}

.product-tabs__tab--active {
  color: var(--white);
  border-bottom-color: var(--green);
}

/* ── ANIMATION ───────────────────────────────────────── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.6s ease-out both;
}

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__title {
    font-size: 48px;
  }

  .stats-section {
    flex-direction: column;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .promo-block {
    flex-direction: column !important;
  }

  .industry-card {
    flex-direction: column !important;
  }

  .contact-form-section {
    flex-direction: column;
  }

  .contact-info {
    flex-direction: column;
    gap: 40px;
  }

  .product-detail {
    flex-direction: column;
  }

  .about-precision {
    flex-direction: column;
  }

  .blog-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .enquiry-cards {
    grid-template-columns: 1fr;
  }

  .product-grid-catalogue {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .cta-banner {
    padding: 60px var(--px);
  }

  .hero__title {
    font-size: 36px;
  }

  .section__title,
  .stats-section__title,
  .cta-banner__title,
  .about-precision__title,
  .contact-form-section__form h2 {
    font-size: 32px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .blog-list-item {
    flex-direction: column;
  }

  .blog-list-item__image {
    width: 100%;
  }

  .blog-related-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .invest-grid {
    grid-template-columns: 1fr;
  }

  .product-grid-catalogue {
    grid-template-columns: 1fr;
  }

  .product-options {
    grid-template-columns: 1fr;
  }
}

/* ── Product Detail Page (Myntra-style desktop layout) ─── */
.product-detail {
  display: inherit;
  background: var(--navy);
}

/* Two-column grid on desktop: image left, details right (Myntra-style) */
.product-detail__upper {
  padding: 24px 16px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: stretch;
  width: 100%;
}
@media (min-width: 768px) {
  .product-detail__upper {
    padding: 40px 24px 48px;
    gap: 32px;
  }
}
@media (min-width: 1024px) {
  .product-detail__upper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    max-width: 1280px;
    margin: 0 auto;
    padding: 48px 32px 64px;
    min-height: 0;
  }
}
@media (min-width: 1280px) {
  .product-detail__upper {
    padding: 56px 48px 72px;
    gap: 56px;
  }
}

/* Left column: product image (clean block, Myntra-style) */
.product-detail__image-wrap {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .product-detail__image-wrap {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1024px) {
  .product-detail__image-wrap {
    max-width: 100%;
    margin: 0;
    background: #f5f6f8;
    border-radius: var(--radius-card);
    aspect-ratio: 1;
  }
}
.product-detail__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
}
@media (min-width: 1024px) {
  .product-detail__image-wrap img {
    padding: 32px;
  }
}

/* Right column: sticky product info (title, desc, quantity, CTA, highlights) */
.product-detail__content {
  flex: 1;
  min-width: 0;
  width: 100%;
}
@media (min-width: 1024px) {
  .product-detail__content {
    position: sticky;
    top: 24px;
    max-width: 100%;
    margin: 0;
  }
}
.product-detail__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.25;
  color: var(--white);
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .product-detail__title {
    font-size: 32px;
    margin-bottom: 20px;
  }
}
@media (min-width: 1024px) {
  .product-detail__title {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 24px;
  }
}
.product-detail__divider {
  width: 100%;
  max-width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin-bottom: 20px;
}
.product-detail__desc {
  font-family: var(--font-body), "Roboto", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--white);
  margin-bottom: 24px;
  max-width: 100%;
}
@media (min-width: 768px) {
  .product-detail__desc {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 32px;
  }
}
@media (min-width: 1024px) {
  .product-detail__desc {
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 520px;
  }
}
.product-detail__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
  width: 100%;
  max-width: 100%;
}
.product-detail__actions .product-detail__add-btn {
  width: 100%;
}
@media (min-width: 768px) {
  .product-detail__actions {
    flex-direction: row;
    align-items: flex-end;
    margin-bottom: 40px;
    width: auto;
  }
  .product-detail__actions .product-detail__add-btn {
    width: auto;
  }
}
.product-detail__qty-wrap {
  flex: 1;
  min-width: 0;
}
.product-detail__qty-label {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 14px;
  color: var(--white);
  display: block;
  margin-bottom: 8px;
}
.product-detail__qty-input {
  background: var(--navy-light);
  border-radius: 60px;
  padding: 10px 16px;
  width: 100%;
  max-width: 200px;
  border: none;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 14px;
  color: var(--white);
  line-height: 28px;
}
.product-detail__add-btn {
  flex: 1;
  min-width: 120px;
  min-height: 52px;
  height: 52px;
  padding: 14px 24px;
  background: var(--green);
  border: none;
  border-radius: 60px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 17px;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.product-detail__add-btn:hover {
  opacity: 0.9;
}
@media (min-width: 768px) {
  .product-detail__add-btn {
    height: 56px;
    min-height: 56px;
    font-size: 18px;
    padding: 16px 28px;
  }
}
.product-detail__highlights h3 {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  line-height: 28px;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .product-detail__highlights h3 {
    font-size: 20px;
  }
}
@media (min-width: 1024px) {
  .product-detail__highlights {
    max-width: 520px;
  }
}
.product-detail__panel {
  padding: 0 16px 40px;
}
@media (min-width: 768px) {
  .product-detail__panel {
    padding: 0 24px 48px;
  }
}
@media (min-width: 1024px) {
  .product-detail__panel {
    padding: 0 32px 60px;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1280px) {
  .product-detail__panel {
    padding: 0 48px 64px;
  }
}
.product-detail__panel-inner {
  border: 1px solid var(--navy-light);
  border-radius: 24px;
  padding: 20px;
}
@media (min-width: 768px) {
  .product-detail__panel-inner {
    padding: 28px;
  }
}
@media (min-width: 1024px) {
  .product-detail__panel-inner {
    padding: 34px 40px;
    max-width: 100%;
  }
}
.product-detail__panel-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.3;
  color: var(--white);
  margin: 0 0 16px 0;
}
@media (min-width: 768px) {
  .product-detail__panel-title {
    font-size: 26px;
    margin-bottom: 20px;
  }
}
.product-detail__panel-desc {
  font-family: var(--font-body), "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #cad5e2;
  margin: 0;
}
.product-detail__related {
  background: var(--navy-light);
  padding: 40px 16px;
}
@media (min-width: 768px) {
  .product-detail__related {
    padding: 48px 24px;
  }
}
@media (min-width: 1024px) {
  .product-detail__related {
    padding: 64px 32px;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1280px) {
  .product-detail__related {
    padding: 72px 48px;
  }
}
.product-detail__related h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.18;
  color: var(--white);
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .product-detail__related h2 {
    font-size: 28px;
    margin-bottom: 28px;
  }
}
@media (min-width: 1024px) {
  .product-detail__related h2 {
    font-size: 32px;
    margin-bottom: 32px;
  }
}
.product-detail__related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) {
  .product-detail__related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (min-width: 1024px) {
  .product-detail__related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}
.product-detail__related-card {
  border-radius: 16px;
  overflow: hidden;
  height: 220px;
  position: relative;
}
@media (min-width: 768px) {
  .product-detail__related-card {
    height: 274px;
  }
}
.product-detail__related-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-detail__related-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(0, 0, 0, 0.6));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
}
.product-detail__related-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 4px;
}
@media (min-width: 768px) {
  .product-detail__related-title {
    font-size: 16px;
  }
}
.product-detail__related-subtitle {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.3;
}
@media (min-width: 768px) {
  .product-detail__related-subtitle {
    font-size: 12px;
  }
}
.product-detail__cta {
  padding: 40px 16px;
}
@media (min-width: 768px) {
  .product-detail__cta {
    padding: 48px 24px;
  }
}
@media (min-width: 1024px) {
  .product-detail__cta {
    padding: 64px 32px;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1280px) {
  .product-detail__cta {
    padding: 72px 48px;
  }
}
.product-detail__cta-inner {
  background: var(--navy-light);
  border-radius: 24px;
  padding: 48px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.product-detail__cta-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .product-detail__cta-title {
    font-size: 36px;
  }
}
@media (min-width: 1024px) {
  .product-detail__cta-title {
    font-size: 47px;
    line-height: 62.4px;
    margin-bottom: 24px;
  }
}
@media (min-width: 768px) {
  .product-detail__cta-inner {
    border-radius: 50px;
    padding: 60px 40px;
  }
}
@media (min-width: 1024px) {
  .product-detail__cta-inner {
    padding: 76px 64px;
  }
}

/* CTA button: larger touch target on mobile */
.product-detail__cta .btn--primary,
.product-detail__cta-content .btn {
  min-height: 52px;
  padding: 16px 28px !important;
  font-size: 17px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 100%;
  -webkit-tap-highlight-color: transparent;
}
@media (min-width: 768px) {
  .product-detail__cta .btn--primary,
  .product-detail__cta-content .btn {
    width: auto;
    max-width: none;
    min-height: 56px;
    padding: 18px 32px !important;
    font-size: 18px !important;
  }
}

/* Django template helpers */
[hidden] { display: none !important; }
.site-header__mobile-menu:not([hidden]) {
  display: flex;
  flex-direction: column;
}
.home-page img { max-width: 100%; height: auto; }
.home-categories__card img,
.home-showcase__frame img,
.home-highlights__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.processes-section img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }

/* Mobile nav open state (Django header JS) */
@media (max-width: 1024px) {
  .site-header__mobile-menu.is-open {
    display: flex !important;
    flex-direction: column;
    padding: 16px var(--px) 24px;
    background: var(--white);
    color: var(--slate);
  }
  .site-header__search-bar.is-open,
  .site-header__search-bar:not([hidden]) {
    display: block;
  }
}

/* ── Editorial page system (About, Sustainability, CSR, Contact, Legal, India…) ─ */
.page-editorial {
  background: var(--navy);
  color: var(--white);
  min-height: 50vh;
}
.page-editorial__hero {
  position: relative;
  min-height: clamp(280px, 42vw, 420px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.page-editorial__hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}
.page-editorial__hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 31, 68, 0.35) 0%,
    rgba(10, 31, 68, 0.72) 48%,
    rgba(10, 31, 68, 0.96) 100%
  );
}
.page-editorial__hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-w, 1200px);
  margin: 0 auto;
  padding: 40px var(--px) 36px;
}
@media (min-width: 768px) {
  .page-editorial__hero-inner {
    padding: 56px var(--px) 48px;
  }
}
.page-editorial__eyebrow {
  font-family: var(--font-ui, var(--font-body));
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 10px;
}
.page-editorial__title {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 12px;
  max-width: 18ch;
}
.page-editorial__lead {
  max-width: 40rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.98rem, 2vw, 1.125rem);
  line-height: 1.65;
}
.page-editorial__hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.page-editorial__shell {
  max-width: var(--max-w, 1200px);
  margin: 0 auto;
  padding: 28px var(--px) 56px;
}
.page-editorial__shell--doc {
  max-width: 760px;
}
.page-editorial__prose {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.page-editorial__prose--narrow,
.page-editorial__prose--doc {
  max-width: 720px;
}
.page-editorial__prose--doc {
  text-align: left;
}
.page-editorial__prose .section__title,
.page-editorial__prose h2 {
  text-align: left;
}
.page-editorial__prose p,
.page-editorial__prose li {
  color: var(--text-muted);
  line-height: 1.7;
}
.page-editorial__muted {
  color: var(--text-muted);
  line-height: 1.6;
}
.page-editorial__section {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.page-editorial__section-head {
  margin-bottom: 24px;
  max-width: 40rem;
}
.page-editorial__section-head h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  margin: 0 0 8px;
}
.page-editorial__section-head p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}
.page-editorial__section-head a {
  color: var(--green);
  font-weight: 600;
}
.page-editorial__card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .page-editorial__card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.page-editorial__card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
}
.page-editorial__card-media img,
.page-editorial__card-media {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.page-editorial__card-body {
  padding: 18px 18px 22px;
}
.page-editorial__card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  font-size: 0.8rem;
  color: var(--green);
  margin-bottom: 8px;
}
.page-editorial__card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin: 0 0 8px;
}
.page-editorial__card-body p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}
/* —— Contact page: enquiry + locations —— */
.page-editorial--contact .page-editorial__prose--narrow {
  max-width: 920px;
  margin-inline: auto;
  text-align: center;
}
.page-editorial--contact .page-editorial__prose--narrow .container {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}
.page-editorial--contact .page-editorial__prose--narrow > p {
  margin: 0 auto 20px;
  max-width: 640px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}
.page-editorial--contact .page-editorial__prose--narrow .cta-banner.home-cta {
  margin: 8px auto 0;
  max-width: 860px;
  border-radius: 20px;
  min-height: 0;
  padding: 36px 28px;
}
.page-editorial--contact .page-editorial__prose--narrow .cta-banner__title {
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  margin-bottom: 18px;
}

.page-editorial__contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 36px;
  margin-bottom: 28px;
}
@media (min-width: 960px) {
  .page-editorial__contact-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.72fr);
    gap: 24px;
    align-items: start;
  }
  .page-editorial__contact-aside {
    position: sticky;
    top: 104px;
  }
}
.page-editorial__contact-form-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  padding: clamp(26px, 3.2vw, 44px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 28px 64px rgba(0, 0, 0, 0.28);
}
.page-editorial__contact-form-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--green) 0%, rgba(93, 187, 58, 0.15) 55%, transparent 100%);
  z-index: 1;
}
.page-editorial__contact-form-head {
  max-width: 560px;
  margin-bottom: 22px;
}
.page-editorial__contact-form-head .page-editorial__muted {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}
.page-editorial__contact-form-card h2,
.page-editorial__sales-card h3,
.page-editorial__locations-card h3 {
  font-family: var(--font-heading);
  margin: 0 0 10px;
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  line-height: 1.15;
  color: var(--white);
}
.page-editorial__contact-kicker {
  margin: 0 0 8px;
  color: var(--green);
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-editorial__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.page-editorial__form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 640px) {
  .page-editorial__form-row {
    grid-template-columns: 1.2fr 0.8fr;
  }
}
.page-editorial__form .form-input,
.page-editorial__form input:not([type="hidden"]):not([type="checkbox"]):not([type="radio"]),
.page-editorial__form textarea {
  width: 100%;
  margin: 0;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(8, 22, 48, 0.55);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.4;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}
.page-editorial__form textarea,
.page-editorial__form .form-textarea {
  min-height: 132px;
  resize: vertical;
}
.page-editorial__form .form-input::placeholder,
.page-editorial__form input::placeholder,
.page-editorial__form textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}
.page-editorial__form .form-input:hover,
.page-editorial__form input:not([type="hidden"]):hover,
.page-editorial__form textarea:hover {
  border-color: rgba(255, 255, 255, 0.28);
}
.page-editorial__form .form-input:focus,
.page-editorial__form input:not([type="hidden"]):focus,
.page-editorial__form textarea:focus {
  outline: none;
  border-color: rgba(93, 187, 58, 0.7);
  background: rgba(8, 22, 48, 0.72);
  box-shadow: 0 0 0 3px rgba(93, 187, 58, 0.18);
}
.page-editorial__form .phone-otp {
  margin-bottom: 0;
}
.page-editorial__form .phone-otp__row {
  gap: 10px;
  flex-wrap: nowrap;
}
.page-editorial__form .phone-otp__row > input,
.page-editorial__form .phone-otp__row .form-input {
  flex: 1 1 auto;
  min-width: 0;
}
.page-editorial__form .phone-otp__btn {
  border-radius: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}
.page-editorial__form .phone-otp__btn--primary {
  background: var(--green);
  border-color: var(--green);
  color: #0b1f12;
}
.page-editorial__form .phone-otp__consent {
  margin-top: 6px;
}
.page-editorial__form-submit {
  width: 100%;
  margin-top: 6px;
  padding-block: 15px;
  border-radius: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.page-editorial__form-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.page-editorial__sales-card,
.page-editorial__locations-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 22px 22px 20px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}
.page-editorial__sales-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(93, 187, 58, 0.28) 0%, rgba(255, 255, 255, 0.04) 58%);
}
.page-editorial__sales-card::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -70px;
  bottom: -96px;
  border: 1px solid rgba(190, 243, 151, 0.28);
  border-radius: 50%;
  pointer-events: none;
}
.page-editorial__sales-card p,
.page-editorial__location p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}
.page-editorial__sales-phone,
.page-editorial__sales-email {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--white);
  width: fit-content;
  text-decoration: none;
}
.page-editorial__sales-phone {
  margin: 14px 0 4px;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2vw, 1.75rem);
  font-weight: 700;
  letter-spacing: 0.01em;
}
.page-editorial__sales-phone:hover,
.page-editorial__sales-email:hover {
  color: #d4f7c4;
}
.page-editorial__sales-email {
  margin-bottom: 14px;
  color: #b7f0a0;
  font-size: 0.95rem;
  font-weight: 600;
}
.page-editorial__locations-card {
  padding: 22px 22px 10px;
}
.page-editorial__locations-head {
  margin-bottom: 2px;
}
.page-editorial__locations-card h3 {
  font-size: clamp(1.35rem, 1.8vw, 1.55rem);
}
.page-editorial__location {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.page-editorial__location:last-child {
  padding-bottom: 14px;
}
.page-editorial__location-label {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(93, 187, 58, 0.14);
  color: #b7f0a0;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.page-editorial__map-btn {
  margin-top: 2px;
  padding: 8px 14px;
  font-size: 0.82rem;
  border-radius: 999px;
  text-decoration: none;
}
.page-editorial__contact-aside {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.page-editorial__flash {
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(93, 187, 58, 0.18);
  color: #b7f0a0;
  margin-bottom: 4px;
}

@media (max-width: 639px) {
  .page-editorial__form .phone-otp__row {
    flex-wrap: wrap;
  }
  .page-editorial__form .phone-otp__btn {
    width: 100%;
  }
}
.page-editorial__cta {
  position: relative;
  overflow: hidden;
  padding: 56px var(--px);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.page-editorial__cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.45;
}
.page-editorial__cta-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}
.page-editorial__cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  margin: 0 0 10px;
  line-height: 1.2;
}
.page-editorial__cta-sub {
  color: var(--text-muted);
  margin: 0 0 8px;
}
.page-editorial__hero-actions .btn {
  min-height: 44px;
}
@media (max-width: 640px) {
  .page-editorial__hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .page-editorial__hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Careers list uses editorial shell */
.careers-page.page-editorial .careers-page__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 800px;
  margin: 0 auto;
}
.careers-page__card {
  display: block;
  padding: 22px 20px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.careers-page__card:hover {
  border-color: rgba(93, 187, 58, 0.45);
  background: rgba(255, 255, 255, 0.09);
}
.careers-page__card h2 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin: 0 0 6px;
}
.careers-page__card p {
  margin: 0;
  color: var(--text-muted);
}

/* Blog article polish */
.blog-article {
  background: var(--navy);
}
.blog-article__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px var(--px) 64px;
}
@media (min-width: 768px) {
  .blog-article__inner {
    padding-top: 56px;
  }
}
.blog-article__hero-img {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  margin: 0 0 28px;
}
.blog-article__hero-img img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.blog-article__body {
  text-align: left;
}
.blog-article__body h2 {
  font-family: var(--font-heading);
  color: var(--white);
  margin: 1.75rem 0 0.75rem;
  font-size: 1.35rem;
}
.blog-article__body p,
.blog-article__body li {
  color: var(--text-muted);
  line-height: 1.75;
}
.blog-article__body ul {
  padding-left: 1.2rem;
}

/* ── Blog page full-bleed hero ───────────────────────── */
.blog-page-hero {
  position: relative;
  min-height: clamp(320px, 56vh, 560px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--navy);
}
.blog-page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.03);
}
.blog-page-hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(10, 31, 68, 0.92) 0%, rgba(10, 31, 68, 0.55) 48%, rgba(10, 31, 68, 0.35) 100%),
    linear-gradient(180deg, rgba(10, 31, 68, 0.25) 0%, rgba(10, 31, 68, 0.88) 100%);
}
.blog-page-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(72px, 12vh, 120px) var(--px) clamp(36px, 6vh, 56px);
}
.blog-page-hero__brand {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0 0 10px;
  line-height: 1;
}
.blog-page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 14px;
  max-width: 14ch;
  color: var(--white);
}
.blog-page-hero__lead {
  max-width: 36rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.65;
}
.blog-page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .blog-page-hero {
    min-height: 70vh;
  }
  .blog-page-hero__inner {
    padding-top: 96px;
  }
}

/* ── Blog bento: posts mosaic under the page hero ────── */
.blog-bento-viewport {
  /* Sticky header ~72px + slanted logo bleed (~30px) */
  --blog-header-offset: 7.25rem;
  --blog-bar-h: 3.25rem;
  --blog-gap: clamp(6px, 1vw, 12px);
  --blog-pad-x: clamp(16px, 3vw, 28px);
  --blog-pad-y: clamp(8px, 1.2vw, 14px);
  --blog-top-clear: clamp(20px, 3vh, 36px);
  box-sizing: border-box;
  width: min(1120px, calc(100% - clamp(40px, 8vw, 120px)));
  max-width: 1120px;
  margin-inline: auto;
  margin-top: var(--blog-top-clear);
  height: calc(100dvh - var(--blog-header-offset) - var(--blog-top-clear));
  max-height: calc(100dvh - var(--blog-header-offset) - var(--blog-top-clear));
  display: flex;
  flex-direction: column;
  gap: var(--blog-pad-y);
  padding: var(--blog-pad-y) var(--blog-pad-x) calc(var(--blog-pad-y) + 4px);
  background: var(--navy);
  overflow: hidden;
  scroll-margin-top: 5.5rem;
}
@media (max-width: 900px) {
  .blog-bento-viewport {
    --blog-header-offset: 5.75rem;
    --blog-bar-h: 2.75rem;
    --blog-top-clear: clamp(28px, 4vh, 40px);
    width: min(100%, calc(100% - 32px));
  }
}
.blog-bento-viewport__bar {
  flex: 0 0 auto;
  min-height: var(--blog-bar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.blog-bento-viewport__bar-text {
  min-width: 0;
}
.blog-bento-viewport__title {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 800;
  margin: 0;
  line-height: 1.1;
  color: var(--white);
}
.blog-bento-viewport__sub {
  margin: 2px 0 0;
  color: var(--text-muted);
  font-size: clamp(0.7rem, 1.2vw, 0.85rem);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: min(62vw, 40rem);
}
@media (max-width: 640px) {
  .blog-bento-viewport__sub { display: none; }
}
.blog-bento-viewport__quote {
  flex: 0 0 auto;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  background: var(--green);
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  white-space: nowrap;
}
.blog-bento-viewport__quote:hover {
  background: var(--green-dark);
}
.blog-bento-page__empty {
  flex: 1;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--text-muted);
}

.blog-bento {
  flex: 1 1 auto;
  min-height: 0;
  display: grid;
  gap: var(--blog-gap);
  width: 100%;
  height: 100%;
}

/* Mobile / narrow: 2×3 equal cells fill remaining height */
.blog-bento[data-count="6"] {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, 1fr);
}
.blog-bento[data-count="6"] .blog-bento__cell { grid-area: auto; }
.blog-bento[data-count="5"],
.blog-bento[data-count="4"] {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, 1fr);
}

/* Tablet: asymmetric 3-col bento */
@media (min-width: 700px) {
  .blog-bento[data-count="6"] {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
  .blog-bento[data-count="6"] .blog-bento__cell--i1 { grid-area: 1 / 1 / 3 / 3; }
  .blog-bento[data-count="6"] .blog-bento__cell--i2 { grid-area: 1 / 3 / 2 / 4; }
  .blog-bento[data-count="6"] .blog-bento__cell--i3 { grid-area: 2 / 3 / 3 / 4; }
  .blog-bento[data-count="6"] .blog-bento__cell--i4 { grid-area: 3 / 1 / 4 / 2; }
  .blog-bento[data-count="6"] .blog-bento__cell--i5 { grid-area: 3 / 2 / 4 / 3; }
  .blog-bento[data-count="6"] .blog-bento__cell--i6 { grid-area: 3 / 3 / 4 / 4; }
}

/* Desktop: classic 4×3 bento — hero 2×2, four side tiles, one full-width footer tile */
@media (min-width: 1024px) {
  .blog-bento[data-count="6"] {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
  .blog-bento[data-count="6"] .blog-bento__cell--i1 { grid-area: 1 / 1 / 3 / 3; }
  .blog-bento[data-count="6"] .blog-bento__cell--i2 { grid-area: 1 / 3 / 2 / 4; }
  .blog-bento[data-count="6"] .blog-bento__cell--i3 { grid-area: 1 / 4 / 2 / 5; }
  .blog-bento[data-count="6"] .blog-bento__cell--i4 { grid-area: 2 / 3 / 3 / 4; }
  .blog-bento[data-count="6"] .blog-bento__cell--i5 { grid-area: 2 / 4 / 3 / 5; }
  .blog-bento[data-count="6"] .blog-bento__cell--i6 { grid-area: 3 / 1 / 4 / 5; }
}

.blog-bento__cell {
  display: block;
  min-height: 0;
  min-width: 0;
  height: 100%;
  border-radius: clamp(10px, 1.2vw, 16px);
  overflow: hidden;
  outline: none;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}
.blog-bento__cell:hover,
.blog-bento__cell:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  z-index: 2;
}
.blog-bento__cell:focus-visible {
  box-shadow: 0 0 0 2px var(--navy), 0 0 0 4px var(--green);
}
.blog-bento__card {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #0f2a52;
  isolation: isolate;
}
.blog-bento__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.blog-bento__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.blog-bento__cell:hover .blog-bento__media img,
.blog-bento__cell:focus-visible .blog-bento__media img {
  transform: scale(1.05);
}
.blog-bento__card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(10, 31, 68, 0.05) 0%,
    rgba(10, 31, 68, 0.28) 42%,
    rgba(10, 31, 68, 0.94) 100%
  );
  pointer-events: none;
}
.blog-bento__body {
  position: relative;
  z-index: 2;
  padding: clamp(10px, 1.4vw, 20px);
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 0;
}
.blog-bento__meta {
  font-family: var(--font-ui);
  font-size: clamp(0.62rem, 0.9vw, 0.72rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
}
.blog-bento__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(0.78rem, 1.35vw, 1.2rem);
  line-height: 1.2;
  color: var(--white);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-bento__cell--hero .blog-bento__title {
  font-size: clamp(1rem, 2.1vw, 1.85rem);
  -webkit-line-clamp: 3;
  max-width: 22ch;
}
.blog-bento__cell--wide .blog-bento__title {
  font-size: clamp(0.9rem, 1.6vw, 1.35rem);
  -webkit-line-clamp: 2;
  max-width: 48ch;
}
.blog-bento__excerpt {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.72rem, 1.1vw, 0.92rem);
  line-height: 1.4;
  margin: 2px 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: 42ch;
}
@media (max-width: 699px) {
  .blog-bento__excerpt,
  .blog-bento__meta { display: none; }
  .blog-bento__title { -webkit-line-clamp: 3; }
}

@media (prefers-reduced-motion: reduce) {
  .blog-bento__cell,
  .blog-bento__media img { transition: none; }
  .blog-bento__cell:hover,
  .blog-bento__cell:focus-visible { transform: none; }
  .blog-bento__cell:hover .blog-bento__media img,
  .blog-bento__cell:focus-visible .blog-bento__media img { transform: none; }
}

/* Short viewports: tighten type further */
@media (max-height: 700px) {
  .blog-bento-viewport { --blog-bar-h: 2.4rem; }
  .blog-bento__excerpt { display: none; }
  .blog-bento__title { -webkit-line-clamp: 2; }
}

/* ── About page ──────────────────────────────────────── */
.page-about__hero {
  position: relative;
  min-height: min(92vh, 720px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-about__hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
  transform: scale(1.03);
  animation: about-hero-drift 18s ease-in-out infinite alternate;
}
.page-about__hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(10, 31, 68, 0.92) 0%, rgba(10, 31, 68, 0.55) 48%, rgba(10, 31, 68, 0.35) 100%),
    linear-gradient(180deg, rgba(10, 31, 68, 0.2) 0%, rgba(10, 31, 68, 0.88) 100%);
}
.page-about__hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-w, 1200px);
  margin: 0 auto;
  padding: 72px var(--px) 56px;
}
.page-about__brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2.6rem, 7vw, 4.75rem);
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--white);
  margin: 0 0 18px;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.35);
}
.page-about__headline {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(1.25rem, 2.6vw, 1.75rem);
  line-height: 1.3;
  max-width: 22ch;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.94);
}
.page-about__lead {
  max-width: 38rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.65;
}
@keyframes about-hero-drift {
  from { transform: scale(1.03) translate3d(0, 0, 0); }
  to { transform: scale(1.07) translate3d(-1.5%, -1%, 0); }
}

.page-about__section {
  max-width: var(--max-w, 1200px);
  margin: 0 auto;
  padding: 64px var(--px);
}
.page-about__section-intro {
  max-width: 40rem;
  margin-bottom: 36px;
}
.page-about__section-intro--narrow {
  max-width: 36rem;
}
.page-about__section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 12px;
  color: var(--white);
}
.page-about__section-intro > p:last-child,
.page-about__story-copy > p,
.page-about__plant-panel > p {
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 14px;
}

.page-about__story {
  display: grid;
  gap: 36px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
@media (min-width: 900px) {
  .page-about__story {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
  }
}
.page-about__story-media {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  background: #0f2a52;
}
.page-about__story-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  display: block;
}
.page-about__story-media figcaption {
  padding: 12px 16px 14px;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.page-about__range {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.page-about__range-list {
  list-style: none;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
@media (min-width: 768px) {
  .page-about__range-list {
    grid-template-columns: 1fr 1fr;
  }
}
.page-about__range-list li {
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
@media (min-width: 768px) {
  .page-about__range-list li {
    padding: 32px 28px 32px 0;
  }
  .page-about__range-list li:nth-child(even) {
    padding-left: 28px;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }
}
.page-about__range-list h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin: 0 0 8px;
  color: var(--white);
}
.page-about__range-list p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 36ch;
}

.page-about__process {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(ellipse 50% 60% at 100% 0%, rgba(93, 187, 58, 0.08), transparent 55%);
}
.page-about__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 22px;
}
@media (min-width: 900px) {
  .page-about__steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}
.page-about__steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}
@media (min-width: 900px) {
  .page-about__steps li {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-top: 8px;
    border-top: 2px solid var(--green);
  }
}
.page-about__step-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--green);
  line-height: 1;
}
.page-about__steps h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  margin: 0 0 6px;
  color: var(--white);
}
.page-about__steps p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

.page-about__plant {
  display: grid;
  gap: 36px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 72px;
}
@media (min-width: 900px) {
  .page-about__plant {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
  }
}
.page-about__plant-media {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
}
.page-about__plant-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}
.page-about__facts {
  display: grid;
  gap: 18px;
  margin: 28px 0 0;
  padding: 0;
}
@media (min-width: 640px) {
  .page-about__facts {
    grid-template-columns: 1fr 1fr;
  }
}
.page-about__facts dt {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 4px;
}
.page-about__facts dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.45;
}
.page-about__facts a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .page-about__hero-bg {
    animation: none;
  }
}

/* —— Phone OTP gating (contact / quote / careers) —— */
.phone-otp {
  margin-bottom: 12px;
}
.phone-otp__label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white, #fff);
}
.phone-otp__row {
  display: flex;
  gap: 8px;
  align-items: stretch;
  flex-wrap: wrap;
}
.phone-otp__row > input,
.phone-otp__row .form-input,
.phone-otp__row .checkout-form__input {
  flex: 1 1 180px;
  min-width: 0;
}
.phone-otp__btn {
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white, #fff);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}
.phone-otp__btn:hover:not(:disabled) {
  border-color: var(--green, #5dbb3a);
  color: var(--green, #5dbb3a);
}
.phone-otp__btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.phone-otp__btn--primary {
  background: var(--green, #5dbb3a);
  border-color: var(--green, #5dbb3a);
  color: #0b1f12;
}
.phone-otp__badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(93, 187, 58, 0.18);
  color: #86efac;
  font-size: 13px;
  font-weight: 700;
}
.phone-otp__consent {
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.4;
  color: var(--text-muted, rgba(255, 255, 255, 0.55));
}
.phone-otp__info {
  margin: 6px 0 0;
  font-size: 13px;
  color: #86efac;
}
.phone-otp__error {
  margin: 6px 0 0;
  font-size: 13px;
  color: #fca5a5;
}
.phone-otp__row--otp {
  margin-top: 8px;
}

/* Breadcrumbs — visible trail matching the BreadcrumbList markup on
   storefront catalogue pages. */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 20px 0 4px;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
}
.breadcrumbs a {
  color: var(--text-muted);
  text-decoration: none;
}
.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  color: var(--green);
  text-decoration: underline;
}
.breadcrumbs [aria-current="page"] {
  color: var(--white);
}
.breadcrumbs__sep {
  color: rgba(255, 255, 255, 0.32);
}
