/* ============================================
   Apex Agro Commercial Exports — Global styles
   Consistent typography, spacing, section width
   ============================================ */

:root {
  /* Colour */
  --color-white: #ffffff;
  --color-bg: #fafafa;
  --color-text: #1a1a1a;
  --color-text-muted: #4a4a4a;
  --color-green: #1a5f2a;
  --color-green-dark: #144a20;
  --color-green-light: #e8f0ea;
  --color-border: #e5e5e5;
  --color-accent: #1a5f2a;

  /* Layout */
  --section-max-width: 1140px;
  --section-padding-y: 4.5rem;
  --section-padding-x: 1.5rem;
  --content-gap: 2rem;
  --grid-gap: 2rem;

  /* Typography */
  --font-sans: "DM Sans", system-ui, -apple-system, sans-serif;
  --font-heading: "DM Sans", system-ui, -apple-system, sans-serif;
  --text-body: 1.0625rem;
  --line-body: 1.65;
  --line-heading: 1.25;

  /* Components */
  --radius: 4px;
  --btn-padding-y: 0.75rem;
  --btn-padding-x: 1.5rem;
  --input-padding: 0.75rem 1rem;
}

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

html {
  scroll-behavior: smooth;
}

/* Skip link: visible on focus for keyboard users */
.skip-link {
  position: absolute;
  top: -3rem;
  left: var(--section-padding-x);
  z-index: 1000;
  padding: 0.75rem 1.25rem;
  background: var(--color-green);
  color: var(--color-white);
  font-weight: 600;
  border-radius: var(--radius);
  transition: top 0.2s;
}
.skip-link:focus {
  top: 1rem;
  outline: 3px solid var(--color-green-dark);
  outline-offset: 2px;
  text-decoration: none;
  color: var(--color-white);
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--text-body);
  line-height: var(--line-body);
  color: var(--color-text);
  background-color: var(--color-white);
}

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

a {
  color: var(--color-green);
  text-decoration: none;
}

a:hover {
  color: var(--color-green-dark);
  text-decoration: underline;
}

a:focus-visible {
  outline: 2px solid var(--color-green);
  outline-offset: 2px;
  text-decoration: none;
}

button:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--color-green-dark);
  outline-offset: 2px;
}

/* ----- Layout ----- */
.container {
  width: 100%;
  max-width: var(--section-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--section-padding-x);
  padding-right: var(--section-padding-x);
}

.section {
  padding-top: var(--section-padding-y);
  padding-bottom: var(--section-padding-y);
}

.section--alt {
  background-color: var(--color-bg);
}

/* ----- Header ----- */
.site-header {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .container {
  position: relative;
}

.site-header .container,
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text);
  background: none;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  cursor: pointer;
  min-height: 44px;
  min-width: 44px;
}
.nav-toggle:hover {
  border-color: var(--color-green);
  color: var(--color-green);
}
.nav-toggle__icon {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
}

.logo {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text);
}

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

.site-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2rem;
}

.nav-list a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
}

.nav-list a:hover {
  color: var(--color-green);
  text-decoration: none;
}

.nav-cta {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}
.nav-cta:hover {
  text-decoration: none;
  color: var(--color-white);
}

/* ----- Buttons ----- */
.btn {
  display: inline-block;
  padding: var(--btn-padding-y) var(--btn-padding-x);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  text-align: center;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, transform 0.15s;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
}

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

.btn--primary:hover {
  background-color: var(--color-green-dark);
  color: var(--color-white);
  text-decoration: none;
}

.btn--secondary {
  background-color: var(--color-white);
  color: var(--color-green);
  border: 2px solid var(--color-green);
}

.btn--secondary:hover {
  background-color: var(--color-green-light);
  color: var(--color-green-dark);
  text-decoration: none;
}

.btn--inverse {
  background-color: var(--color-white);
  color: var(--color-green);
}
.btn--inverse:hover {
  background-color: var(--color-green-light);
  color: var(--color-green-dark);
  text-decoration: none;
}

/* ----- Hero ----- */
.hero {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background: linear-gradient(180deg, var(--color-green-light) 0%, var(--color-white) 100%);
}

.hero .container {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hero .container {
    grid-template-columns: 1fr 1fr;
  }
}

.hero__title {
  font-size: clamp(1.875rem, 4.5vw, 2.5rem);
  font-weight: 800;
  line-height: var(--line-heading);
  margin: 0 0 0.75rem 0;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.hero__subtitle {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  margin: 0 0 1rem 0;
  max-width: 52ch;
}

.hero__tagline {
  font-size: 1rem;
  margin-top: -0.25rem;
}

.hero__title-text--mobile {
  display: none;
}

.hero__trust-strip {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-green-dark);
  margin: 0 0 1.5rem 0;
  opacity: 0.95;
}

.hero__trust-strip--mobile {
  display: none;
  list-style: none;
  margin: 0 0 1.5rem 0;
  padding: 0;
}

.hero__trust-strip--mobile li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-green-dark);
  opacity: 0.95;
}

.hero__trust-strip--mobile li::before {
  content: "✓ ";
  position: absolute;
  left: 0;
  color: var(--color-green);
}

.hero__trust-strip--mobile li:last-child {
  margin-bottom: 0;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__media {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-border);
  aspect-ratio: 16/10;
}

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

/* ----- Stats bar ----- */
.stats-bar {
  background: var(--color-green);
  color: var(--color-white);
  padding: 1.5rem var(--section-padding-x);
}

.stats-bar__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 3rem;
  max-width: var(--section-max-width);
  margin-left: auto;
  margin-right: auto;
}

.stats-bar__list li {
  text-align: center;
}

.stats-bar__value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.stats-bar__label {
  font-size: 0.875rem;
  opacity: 0.9;
}

/* ----- Section titles ----- */
.section__title {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--color-accent);
  display: inline-block;
  color: var(--color-text);
}

.section__subtitle {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin: 0 0 2rem 0;
  max-width: 60ch;
}

/* ----- Intro block ----- */
.intro-block {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .intro-block {
    grid-template-columns: 1fr 1fr;
  }
}

.intro-block__text p {
  margin: 0 0 1rem 0;
}

.intro-block__text p:last-child {
  margin-bottom: 0;
}

.intro-block__media {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-border);
  aspect-ratio: 4/3;
}

.intro-block__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ----- Product grid (home + products page) ----- */
.product-grid {
  display: grid;
  gap: var(--grid-gap);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.product-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.product-card:hover {
  border-color: var(--color-green);
  box-shadow: 0 6px 20px rgba(26, 95, 42, 0.12);
}
.product-card:focus-within {
  border-color: var(--color-green);
  box-shadow: 0 0 0 2px rgba(26, 95, 42, 0.2);
}

.product-card__image {
  aspect-ratio: 4/3;
  background: var(--color-bg);
  overflow: hidden;
}

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

.product-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  color: var(--color-text);
}

.product-card__text {
  color: var(--color-text-muted);
  margin: 0 0 1rem 0;
  flex: 1;
}

.product-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* ----- Trust points / features ----- */
.trust-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.trust-item {
  padding: 1.5rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  border-left: 3px solid transparent;
  transition: border-left-color 0.2s, box-shadow 0.2s;
}
.trust-item:hover {
  border-left-color: var(--color-accent);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.trust-item__title {
  font-size: 1.0625rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  color: var(--color-text);
}

.trust-item__text {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin: 0;
}

/* ----- Markets ----- */
.markets-section .container {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .markets-section .container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.markets-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.markets-list li {
  background: var(--color-green-light);
  color: var(--color-green-dark);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.9375rem;
}

.markets-section__media {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-border);
  aspect-ratio: 16/10;
}

.markets-section__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ----- Certifications ----- */
.cert-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.cert-list li {
  padding: 1rem 1.25rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-weight: 600;
  color: var(--color-text);
}

.cert-list li span {
  display: block;
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
}

.cert-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-green-dark);
  margin: 0 0 0.5rem 0;
  padding: 0.35rem 0.75rem;
  background: var(--color-green-light);
  border-radius: var(--radius);
}

.cert-note {
  margin-top: 1.5rem;
}

/* ----- Forms ----- */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.375rem;
  color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: var(--input-padding);
  font-family: var(--font-sans);
  font-size: 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-white);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-green);
  box-shadow: 0 0 0 3px rgba(26, 95, 42, 0.12);
}

.inquiry-form {
  max-width: 560px;
}

.inquiry-form .btn {
  margin-top: 0.5rem;
}

/* ----- Two-column layout (form + content) ----- */
.two-col {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
  }
}

/* ----- Pre-footer CTA ----- */
.pre-footer-cta {
  background: var(--color-green);
  color: var(--color-white);
  padding: 2rem var(--section-padding-x);
  text-align: center;
}

.pre-footer-cta .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.pre-footer-cta__text {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
}

.pre-footer-cta .btn--inverse:hover {
  background: var(--color-white);
  color: var(--color-green-dark);
}

/* ----- Footer ----- */
.site-footer {
  background: var(--color-text);
  color: var(--color-white);
  padding-top: 2.5rem;
  padding-bottom: 2rem;
  margin-top: 0;
}

.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-contact {
  width: 100%;
  margin-bottom: 0.25rem;
}

.footer-contact__item {
  margin: 0 0 0.35rem 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
}

.footer-contact__item:last-child {
  margin-bottom: 0;
}

.footer-contact__address {
  color: rgba(255, 255, 255, 0.75);
}

.footer-contact__link {
  color: rgba(255, 255, 255, 0.9);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.9);
}

.site-footer a:hover {
  color: var(--color-white);
}

.footer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.5rem;
}

.footer-copy {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.footer-nav a.back-to-top:hover {
  text-decoration: none;
}

/* ----- Flash messages ----- */
.flash-wrap {
  padding-bottom: 0;
}
.flash-wrap .notice,
.flash-wrap .alert {
  margin-bottom: 0;
}
.notice,
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin: 0 0 1rem 0;
  font-weight: 500;
}
.notice {
  background: var(--color-green-light);
  color: var(--color-green-dark);
  border: 1px solid rgba(26, 95, 42, 0.2);
}
.alert {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid rgba(220, 38, 38, 0.2);
}

/* Inquiry form AJAX message (above form, no layout change to form itself) */
.inquiry-form-message {
  margin-bottom: 1rem;
}

/* ----- Page title (inner pages) ----- */
.page-hero {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background: var(--color-green-light);
  border-bottom: 1px solid var(--color-border);
}

.page-hero__title {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 0.25rem 0;
}

.page-hero__subtitle {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin: 0;
}

.page-hero__badge {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-green-dark);
  background: var(--color-green-light);
  padding: 0.4rem 0.875rem;
  border-radius: var(--radius);
  margin: 1rem 0 0 0;
}

/* ----- About: content blocks ----- */
.about-block {
  margin-bottom: 2.5rem;
}

.about-block:last-child {
  margin-bottom: 0;
}

.about-block__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  color: var(--color-text);
}

.about-block__content p {
  margin: 0 0 1rem 0;
}

.about-block__content p:last-child {
  margin-bottom: 0;
}

.about-block__list {
  margin: 0 0 1rem 0;
  padding-left: 1.5rem;
  list-style: disc;
}

.about-block__list li {
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.about-block__list li:last-child {
  margin-bottom: 0;
}

.about-media-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 2rem;
}

.about-media-grid__item {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-border);
  aspect-ratio: 4/3;
}

.about-media-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ----- Product detail page ----- */
.product-detail .container {
  display: grid;
  gap: 2.5rem;
}

.product-detail__header {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 768px) {
  .product-detail__header {
    grid-template-columns: 1fr 1fr;
  }
}

.product-detail__main-image {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-bg);
  aspect-ratio: 4/3;
}

.product-detail__main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail__overview p {
  margin: 0 0 1rem 0;
}

.product-detail__overview p:last-child {
  margin-bottom: 0;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.spec-table th,
.spec-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.spec-table th {
  font-weight: 600;
  color: var(--color-text);
  width: 40%;
}

.spec-table td {
  color: var(--color-text-muted);
}

.spec-table tr:last-child th,
.spec-table tr:last-child td {
  border-bottom: none;
}

.product-detail__cta-wrap {
  margin: 1rem 0 0 0;
}
.product-detail__cta-wrap .btn {
  margin-right: 0.5rem;
}
.link-underline {
  color: var(--color-green);
}
.link-underline:hover {
  text-decoration: underline;
}
.inquiry-promise {
  font-weight: 600;
  color: var(--color-green-dark);
  margin-bottom: 0.5rem;
}
.product-detail__section-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  color: var(--color-text);
}

.product-detail__section ul {
  margin: 0 0 1rem 0;
  padding-left: 1.25rem;
}

.product-detail__section ul:last-child {
  margin-bottom: 0;
}

.product-detail__section li {
  margin-bottom: 0.35rem;
}

/* ----- Contact page ----- */
.contact-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info {
  font-size: 1rem;
}

.contact-info p {
  margin: 0 0 0.75rem 0;
}

.contact-info a {
  color: var(--color-green);
}

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-border);
  aspect-ratio: 16/10;
  min-height: 280px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ----- Utility ----- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ----- Mobile ----- */
@media (max-width: 767px) {
  :root {
    --section-padding-y: 2.5rem;
    --section-padding-x: 1.25rem;
    --grid-gap: 1.5rem;
  }

  body {
    overflow-x: hidden;
  }

  .site-header .container,
  .site-header__inner {
    flex-wrap: nowrap;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .logo {
    font-size: 1.1rem;
  }

  .nav-toggle {
    display: flex;
    order: 1;
  }

  .nav-toggle__text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
  }

  .nav-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    padding: 0.5rem 1.25rem 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: none;
    max-height: 80vh;
    overflow-y: auto;
  }

  body.nav-open .nav-list {
    display: flex;
  }

  .nav-list li {
    border-bottom: 1px solid var(--color-border);
  }
  .nav-list li:last-child {
    border-bottom: none;
  }

  .nav-list a {
    display: block;
    padding: 0.75rem 0;
    font-size: 1rem;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .nav-list__cta {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--color-border);
  }

  .nav-list__cta .nav-cta {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  .hero {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .hero .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .hero__media {
    margin-top: 0.5rem;
  }

  .hero__title {
    font-size: 1.5rem;
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
    min-height: 48px;
  }

  .hero__title-text--desktop {
    display: none;
  }

  .hero__title-text--mobile {
    display: inline;
  }

  .hero__trust-strip--desktop {
    display: none;
  }

  .hero__trust-strip--mobile {
    display: block;
  }

  .hero__trust-strip--mobile li {
    font-size: 0.8125rem;
  }

  .hero__trust-strip {
    font-size: 0.8125rem;
  }

  .stats-bar__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 2rem;
  }
  .stats-bar__list li {
    text-align: center;
  }
  .stats-bar__value {
    font-size: 1.25rem;
    font-weight: 700;
  }
  .stats-bar__label {
    font-size: 0.875rem;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
    min-height: 44px;
  }

  .pre-footer-cta {
    padding: 1.5rem 1rem;
  }
  .pre-footer-cta__text {
    font-size: 1rem;
  }
  .pre-footer-cta .btn {
    width: 100%;
    min-height: 48px;
  }

  .product-detail__cta-wrap .btn {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.5rem;
  }

  .section__title {
    font-size: 1.5rem;
  }

  .section__subtitle {
    margin-bottom: 1.25rem;
  }

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

  .product-card .btn {
    width: 100%;
    min-height: 48px;
    text-align: center;
  }

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

  .cert-list {
    grid-template-columns: 1fr;
  }

  #inquiry .btn,
  .inquiry-form .btn {
    width: 100%;
    min-height: 48px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px; /* prevents zoom on focus in iOS */
    min-height: 48px;
  }

  .form-group textarea {
    min-height: 120px;
  }

  .site-footer .container {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .page-hero {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .page-hero__title {
    font-size: 1.5rem;
  }

  .about-media-grid {
    grid-template-columns: 1fr;
  }

  /* Spec table: horizontal scroll on small screens */
  .spec-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -1rem;
    padding: 0 1rem;
  }

  .spec-table {
    font-size: 0.875rem;
    min-width: 320px;
  }

  .spec-table th,
  .spec-table td {
    padding: 0.5rem 0.75rem;
  }

  .spec-table th {
    width: 38%;
  }

  .contact-map {
    min-height: 220px;
  }

  .two-col > * {
    min-width: 0;
  }
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
