/* =========================================================
   EPS Global — backup landing page styles
   Brand reference: #32699D primary blue, #B53027 accent red
   Fonts: Montserrat (headings) + Lato (body)
   ========================================================= */

:root {
  --eps-blue: #32699D;
  --eps-blue-deep: #1E4060;
  --eps-blue-darker: #133653;
  --eps-red: #B53027;
  --eps-red-deep: #8C201B;
  --navy: #1A1A2E;
  --navy-2: #232333;
  --ice: #E8F0F7;
  --light-gray: #F5F5F7;
  --med-gray: #E0E0E0;
  --dark-gray: #4A4A5A;
  --text-body: #4A4A5A;
  --white: #ffffff;

  --font-head: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: "Lato", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --container-max: 1200px;
  --container-pad: 24px;
  --radius: 4px;
}

/* ---------- reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: var(--eps-blue); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--navy);
  margin: 0 0 0.5em;
  line-height: 1.2;
}
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 12px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
  text-decoration: none;
}
.btn-primary {
  background: var(--eps-blue);
  color: var(--white);
  border-color: var(--eps-blue);
}
.btn-primary:hover {
  background: var(--eps-blue-deep);
  border-color: var(--eps-blue-deep);
  color: var(--white);
  text-decoration: none;
}
.btn-light {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-light:hover {
  background: var(--light-gray);
  color: var(--navy);
  text-decoration: none;
}
.btn-small {
  font-size: 12px;
  padding: 8px 16px;
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--med-gray);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-top {
  border-bottom: 1px solid var(--light-gray);
}
.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 16px;
}
.logo {
  display: inline-block;
  line-height: 0;
  flex-shrink: 0;
}
.logo svg, .logo-img {
  width: 100px;
  height: auto;
  max-height: 50px;
}
.contact-local-link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: var(--eps-blue);
  text-transform: uppercase;
}
.contact-local-link:hover { color: var(--eps-blue-deep); }

.main-nav { background: var(--white); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 56px;
}
.nav-list {
  display: flex;
  list-style: none;
  margin: 0; padding: 0;
  gap: 28px;
  flex-wrap: wrap;
}
.nav-list a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  color: var(--eps-blue);
  text-transform: uppercase;
  padding: 18px 0;
  display: inline-block;
  border-bottom: 3px solid transparent;
  transition: border-color .2s ease;
}
.nav-list a:hover {
  border-color: var(--eps-red);
  text-decoration: none;
}
.search-form {
  display: flex;
  align-items: center;
  border: 1px solid var(--med-gray);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}
.search-form input {
  border: 0;
  padding: 8px 12px;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  width: 220px;
  color: var(--text-body);
}
.search-form button {
  border: 0;
  background: var(--med-gray);
  color: var(--dark-gray);
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease;
}
.search-form button:hover { background: var(--eps-blue); color: var(--white); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  flex-direction: column;
  gap: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--eps-blue);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  background: linear-gradient(135deg, #1e4060 0%, #2d5a7b 50%, #1e4060 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(50, 105, 157, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(30, 64, 96, 0.4) 0%, transparent 50%);
  opacity: 0.6;
}
.hero-slide {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 60px 0;
  max-width: 1200px;
  color: var(--white);
}
.hero-content h1 {
  color: var(--white);
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.hero-content p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 28px;
  max-width: 600px;
}
.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.hero-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.5);
  padding: 0;
  cursor: pointer;
  transition: background .2s ease;
}
.hero-dots .dot.active,
.hero-dots .dot:hover { background: var(--eps-red); }

/* =========================================================
   CONTACT FORM SECTION
   ========================================================= */
.contact-section {
  background: var(--white);
  padding: 56px 0;
  border-bottom: 1px solid var(--med-gray);
}
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.contact-intro h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.contact-intro p {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.6;
  margin: 0;
}

.contact-form {
  background: var(--light-gray);
  padding: 32px;
  border-radius: 8px;
  border: 1px solid var(--med-gray);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.field { display: flex; flex-direction: column; }
.field-full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 6px;
}
.field .req { color: var(--eps-red); }
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-body);
  background: var(--white);
  border: 1px solid var(--med-gray);
  border-radius: var(--radius);
  padding: 10px 12px;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--eps-blue);
  box-shadow: 0 0 0 3px rgba(50,105,157,0.18);
}
.field textarea { resize: vertical; min-height: 110px; }
.field select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%2332699D' d='M6 8L0 0h12z'/></svg>"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

.form-actions {
  margin-top: 24px;
  display: flex;
  justify-content: flex-end;
}

.form-status {
  margin-top: 20px;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: 15px;
}
.form-success { background: #E6F4EA; color: #1B5E20; border: 1px solid #A5D6A7; }
.form-error   { background: #FAEAEA; color: #B53027; border: 1px solid #EDAFAD; }

/* =========================================================
   CATEGORIES
   ========================================================= */
.categories {
  background: var(--white);
  padding: 48px 0 32px;
}
.cat-list {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 16px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease;
  border-radius: 8px;
}
.cat-card:hover {
  text-decoration: none;
  transform: translateY(-3px);
  background: var(--light-gray);
}
.cat-icon {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cat-icon svg { width: 100%; height: 100%; }
.cat-label {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--eps-blue);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* =========================================================
   MANUFACTURERS
   ========================================================= */
.manufacturers-section {
  background: var(--navy);
  padding: 32px 0 64px;
}
.mfr-grid {
  background: var(--white);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid var(--med-gray);
}
.mfr-tile {
  aspect-ratio: 3 / 2;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--med-gray);
  border-bottom: 1px solid var(--med-gray);
  padding: 16px;
  text-align: center;
  background: var(--white);
  cursor: pointer;
  transition: background .15s ease, transform .15s ease;
}
.mfr-tile:hover {
  background: var(--light-gray);
  transform: scale(1.02);
}
.mfr-tile:nth-child(6n) { border-right: 0; }
.mfr-tile:nth-last-child(-n+6) { border-bottom: 0; }
.mfr-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: var(--eps-blue);
  letter-spacing: 0.3px;
  line-height: 1.25;
}
.mfr-name small {
  display: block;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 1px;
  margin-top: 4px;
  color: var(--dark-gray);
}
.mfr-name em { font-style: italic; color: var(--eps-red); margin: 0 2px; }
.mfr-name[data-brand="amphenol"] { color: #0066B3; }
.mfr-name[data-brand="broadcom"] { color: var(--eps-red); }
.mfr-name[data-brand="microchip"] { color: var(--eps-red); }
.mfr-name[data-brand="mps"] { color: #0066B3; font-size: 22px; letter-spacing: -1px; }
.mfr-name[data-brand="edgecore"] { color: var(--navy); font-style: italic; }
.mfr-name[data-brand="pulsiv"] { color: #4CAF50; }
.mfr-name[data-brand="radisys"] { color: var(--eps-red); }
.mfr-empty { background: var(--white); }

/* Manufacturer logo images */
.mfr-logo {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
}

/* =========================================================
   INFO BAND
   ========================================================= */
.info-band {
  background: var(--navy);
  color: var(--white);
  padding: 56px 0;
}
.info-band-inner {
  display: grid;
  grid-template-columns: 80px repeat(3, 1fr) 200px;
  gap: 24px;
  align-items: center;
}
.info-logo svg { width: 80px; height: 80px; opacity: 0.9; }
.info-item h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  color: var(--white);
  margin: 0 0 8px;
  text-transform: uppercase;
}
.info-item p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  color: rgba(255,255,255,0.9);
}
.programming-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--white);
  color: var(--eps-blue);
  padding: 18px 16px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
  border: 1px solid var(--med-gray);
}
.programming-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  text-decoration: none;
}
.programming-cta small {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--dark-gray);
  margin-bottom: 6px;
}
.programming-cta .prog-icon { width: 40px; height: 40px; margin: 4px 0 8px; }
.programming-cta strong {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  color: var(--eps-blue);
  letter-spacing: 0.5px;
  line-height: 1.3;
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials {
  background: var(--navy);
  padding: 24px 0 64px;
  color: var(--white);
}
.test-wrap {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 32px;
  align-items: center;
}
.test-intro h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  color: var(--white);
  margin: 0 0 12px;
  text-transform: uppercase;
}
.test-intro p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin: 0;
}
.test-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.test-card { text-align: center; color: var(--white); }
.test-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  background:
    radial-gradient(circle at 50% 35%, #6e6e6e 0%, #4a4a4a 60%, #2a2a2a 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  overflow: hidden;
}
.test-thumb::before {
  /* faint silhouette */
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%; height: 70%;
  background: rgba(0,0,0,0.25);
  border-radius: 50% 50% 0 0;
}
.play-btn {
  position: relative;
  z-index: 1;
  width: 60px; height: 50px;
  display: flex; align-items: center; justify-content: center;
}
.play-btn svg { width: 100%; height: 100%; }
.test-name {
  font-family: var(--font-head);
  font-weight: 600;
  margin: 4px 0 2px;
  color: var(--white);
}
.test-role {
  font-size: 13px;
  margin: 0 0 2px;
  color: rgba(255,255,255,0.7);
}
.test-company {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  margin: 0;
  color: var(--white);
}

/* =========================================================
   NEED HELP
   ========================================================= */
.need-help-section {
  background: var(--eps-blue);
  color: var(--white);
  padding: 56px 0;
}
.need-help-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: start;
}
.need-help-text h2 {
  color: var(--white);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}
.need-help-text p { font-size: 15px; color: rgba(255,255,255,0.95); margin: 0; }
.locations-card {
  background: var(--white);
  color: var(--text-body);
  padding: 24px;
  border-radius: var(--radius);
}
.locations-card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  margin: 0 0 16px;
  text-transform: uppercase;
}
.locations-accordion details {
  border-bottom: 1px solid var(--med-gray);
  padding: 8px 0;
}
.locations-accordion details:last-child { border-bottom: 0; }
.locations-accordion summary {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
}
.locations-accordion summary::-webkit-details-marker { display: none; }
.locations-accordion summary::after {
  content: "›";
  font-size: 22px;
  color: var(--eps-blue);
  transition: transform .2s ease;
  display: inline-block;
}
.locations-accordion details[open] summary::after { transform: rotate(90deg); }
.locations-accordion ul {
  list-style: none;
  margin: 8px 0 4px;
  padding: 0;
}
.locations-accordion ul li {
  padding: 4px 0;
  text-align: right;
}
.locations-accordion ul a {
  color: var(--text-body);
  font-size: 14px;
  text-decoration: underline;
}
.locations-accordion ul a:hover { color: var(--eps-blue); }

/* =========================================================
   CERTIFICATIONS
   ========================================================= */
.certifications {
  background: var(--navy);
  padding: 40px 0;
  color: var(--white);
}
.cert-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  align-items: center;
  text-align: center;
}
.cert-item p {
  font-size: 13px;
  margin: 8px 0 0;
  color: rgba(255,255,255,0.9);
  line-height: 1.4;
}
.cert-item p strong { color: var(--white); }
.cert-badge {
  width: 80px; height: 80px;
  margin: 0 auto;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
}
.cert-badge strong { font-size: 18px; line-height: 1; color: var(--white); font-weight: 700; }
.cert-badge small  { font-size: 9px; line-height: 1.1; color: rgba(255,255,255,0.85); margin-top: 4px; }
.cert-eoy strong { font-size: 22px; }
.cert-iso strong { font-size: 22px; }
.cert-ocp { background: transparent; border: 0; }
.cert-ocp span { font-size: 9px; line-height: 1.1; }
.cert-sdn { width: 100px; border-radius: 6px; }
.cert-sdn strong { font-size: 12px; }
.cert-sdn small { font-size: 7px; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--eps-blue);
  color: var(--white);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 56px 24px;
}
.footer-col h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 16px;
}
.footer-h4-spaced { margin-top: 24px !important; }
.footer-col ul {
  list-style: none;
  margin: 0; padding: 0;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a {
  color: var(--white);
  font-size: 14px;
  text-decoration: none;
}
.footer-col ul a:hover { text-decoration: underline; }
.footer-col-newsletter p {
  font-size: 14px;
  color: rgba(255,255,255,0.95);
  margin-bottom: 12px;
}
.newsletter-form input[type="email"] {
  width: 100%;
  padding: 10px 12px;
  border: 0;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  margin-bottom: 12px;
  outline: none;
}
.newsletter-form .btn-light { width: 100%; margin-top: 12px; }
.recaptcha-placeholder {
  background: var(--white);
  color: var(--text-body);
  border: 1px solid #d3d3d3;
  border-radius: var(--radius);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}
.rc-check { font-size: 18px; }
.rc-text { flex: 1; }
.rc-logo { font-size: 10px; color: #999; }

.footer-social {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-social > span {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.5px;
  color: var(--white);
  text-transform: uppercase;
  margin-right: auto;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  transition: background .15s ease;
}
.footer-social a:hover { background: rgba(255,255,255,0.3); text-decoration: none; }

.footer-bottom {
  background: var(--navy);
  color: var(--white);
  padding: 16px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}
.payment-cards { display: inline-flex; gap: 8px; }
.card-mc, .card-visa {
  display: inline-block;
  background: var(--white);
  color: var(--navy);
  padding: 4px 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 11px;
  border-radius: 3px;
  border: 1px solid var(--med-gray);
}
.card-visa { color: #1A1F71; }
.created-by { color: rgba(255,255,255,0.85); }
.created-by a { color: var(--eps-red); }

/* ---------- cookie notice ---------- */
.cookie-notice {
  background: #FBF6E8;
  color: var(--text-body);
  border-top: 1px solid #ead9b7;
  font-size: 13px;
  padding: 14px 0;
}
.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.cookie-inner p { margin: 0; }
.cookie-inner a { color: var(--eps-blue); text-decoration: underline; }
#cookie-dismiss {
  background: var(--eps-blue);
  color: var(--white);
  border: 0;
  flex-shrink: 0;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .cat-list { grid-template-columns: repeat(3, 1fr); }
  .mfr-grid { grid-template-columns: repeat(4, 1fr); }
  .mfr-tile:nth-child(6n) { border-right: 1px solid var(--med-gray); }
  .mfr-tile:nth-child(4n) { border-right: 0; }
  .mfr-tile:nth-last-child(-n+6) { border-bottom: 1px solid var(--med-gray); }
  .info-band-inner { grid-template-columns: repeat(2, 1fr); }
  .info-logo { display: none; }
  .test-wrap { grid-template-columns: 1fr; }
  .test-cards { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .cert-grid { grid-template-columns: repeat(3, 1fr); row-gap: 32px; }
}

@media (max-width: 768px) {
  .nav-toggle { display: inline-flex; }
  .nav-list {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 8px 24px;
    border-bottom: 1px solid var(--med-gray);
    display: none;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  }
  .nav-list.is-open { display: flex; }
  .nav-list a { padding: 12px 0; border-bottom: 1px solid var(--light-gray); width: 100%; }
  .main-nav { position: relative; }
  .search-form { display: none; }

  .hero-content { padding: 48px 24px; }
  .hero-content h1 { font-size: 22px; }

  .contact-wrap { grid-template-columns: 1fr; gap: 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }

  .cat-list { grid-template-columns: repeat(2, 1fr); }
  .mfr-grid { grid-template-columns: repeat(3, 1fr); }
  .mfr-tile { aspect-ratio: 4 / 3; }
  .mfr-tile:nth-child(4n) { border-right: 1px solid var(--med-gray); }
  .mfr-tile:nth-child(3n) { border-right: 0; }

  .info-band-inner { grid-template-columns: 1fr; gap: 32px; }
  .test-cards { grid-template-columns: 1fr; }
  .need-help-inner { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding: 40px 24px; }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-bottom-inner { justify-content: center; text-align: center; }
  .cookie-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 420px) {
  .hero-content h1 { font-size: 19px; }
  .header-top-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
  .contact-local-link { font-size: 12px; }
  .cert-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   IMAGE STYLES (Added for actual image integration)
   ========================================================= */

/* Hero banner images */
.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Product category images */
.cat-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

/* Testimonial company logos */
.test-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

/* Certification badge images */
.cert-badge-img {
  width: 120px;
  height: auto;
  max-height: 120px;
  object-fit: contain;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .cat-icon img {
    width: 60px;
    height: 60px;
  }
  .cert-badge-img {
    width: 100px;
    max-height: 100px;
  }
}
