/* =========================================================
   MARIE Staffing Services — Industries Page Styles (industries.css)
   Page-specific styles only. Not shared with other pages.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

@font-face {
  font-family: 'Hando Trial';
  src: url('assets/fonts/HandoTrial-Bold.woff2') format('woff2'),
       url('assets/fonts/HandoTrial-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root{
  --industries-cream: #F9CE04;
  --industries-gold-radiant: linear-gradient(90deg, #997334 0%, #F9CE04 13%, #C6A54E 36%, #9B7636 50%, #F8CC0E 63%, #C6A54E 86%, #997334 100%);
  --industries-cream-soft: #FDF7DE;
  --industries-green: #054F1E;
  --industries-green-deep: #043916;
  --industries-gray: #939598;
  --industries-gray-light: #DAD8D1;
  --industries-green-tint: #E7EEE3;
  --industries-dark: #262729;
  --industries-white: #FDFBF6;

  --industries-display: 'Hando Trial', 'Arial Black', 'Helvetica Neue', sans-serif;
  --industries-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

  --industries-container: 1240px;
  --industries-gutter: clamp(24px, 6vw, 96px);
  --industries-radius: 24px;
  --industries-radius-sm: 14px;

  --industries-ease: cubic-bezier(.4,0,.2,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  background:
    radial-gradient(circle at 94% 4%, rgba(249, 206, 4, 0.58), transparent 52%),
    radial-gradient(circle at 4% 96%, rgba(5, 79, 30, 0.48), transparent 54%),
    linear-gradient(rgba(5, 79, 30, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 79, 30, 0.07) 1px, transparent 1px),
    var(--industries-green-tint);
  background-size: auto, auto, 55px 55px, 55px 55px, auto;
  color: var(--industries-dark);
  font-family: var(--industries-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg{ display:block; max-width:100%; }
a{ color: inherit; text-decoration: none; }
ul{ list-style: none; margin:0; padding:0; }
h1,h2,h3,h4{ margin:0; font-family: var(--industries-display); font-weight:700; }
p{ margin:0; }
button{ font-family: inherit; cursor: pointer; }@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *{ animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

:focus-visible{
  outline: 2px solid var(--industries-green);
  outline-offset: 3px;
}

.industries-section-inner{
  max-width: var(--industries-container);
  margin: 0 auto;
  padding: 0 var(--industries-gutter);
}

/* ---------- Shared small pieces ---------- */
.industries-eyebrow{
  display:inline-block;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--industries-green);
  margin-bottom: 18px;
}
.industries-eyebrow-light{ color: var(--industries-cream); }

.industries-button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  transition: transform .35s var(--industries-ease), background-color .3s var(--industries-ease), color .3s var(--industries-ease), border-color .3s var(--industries-ease);
  white-space: nowrap;
}
.industries-button-primary{
  background: var(--industries-green);
  color: var(--industries-white);
}
.industries-button-primary:hover{ background: var(--industries-green-deep); transform: translateY(-2px); }

.industries-button-outline{
  background: transparent;
  border-color: var(--industries-dark);
  color: var(--industries-dark);
}
.industries-button-outline:hover{ background: var(--industries-dark); color: var(--industries-white); transform: translateY(-2px); }

.industries-button-cream{
  background: var(--industries-gold-radiant);
  color: var(--industries-green-deep);
}
.industries-button-cream:hover{ background: var(--industries-white); transform: translateY(-2px); }

/* Scroll fade-in */
.industries-fade{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--industries-ease), transform .8s var(--industries-ease);
}
.industries-fade.industries-fade-visible{
  opacity: 1;
  transform: translateY(0);
}
.industries-logo, .industries-footer-logo{
  display: flex;
  align-items: center;
}

/* =========================================================
   HERO
   ========================================================= */
.industries-hero{
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 6vw, 96px) var(--industries-gutter) clamp(40px, 5vw, 64px);
  background:
    radial-gradient(circle at 85% 0%, rgba(249, 206, 4, 0.2), transparent 46%),
    radial-gradient(circle at 8% 100%, rgba(249, 206, 4, 0.1), transparent 36%),
    linear-gradient(180deg, rgba(5,79,30,0.76) 0%, rgba(4,57,22,0.82) 100%),
    url('https://pinaywise.com/wp-content/uploads/2024/02/Manufacturing-Companies-In-The-Philippines.jpg') center/cover;
}
.industries-hero::before{
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-conic-gradient(
    from 0deg at 88% 8%,
    rgba(249, 206, 4, 0.05) 0deg 6deg,
    transparent 6deg 12deg
  );
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}
.industries-hero > *{
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.industries-hero-heading{
  font-size: clamp(34px, 4.8vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--industries-white);
  margin-bottom: 16px;
}
.industries-hero-text{
  font-size: 16px;
  line-height: 1.6;
  color: rgba(253,251,246,0.8);
  max-width: 560px;
}

/* =========================================================
   INDUSTRIES GRID
   ========================================================= */
.industries-grid-section{
  padding: clamp(40px, 6vw, 64px) 0 clamp(64px, 8vw, 110px);
}
.industries-grid{
  max-width: var(--industries-container);
  margin: 0 auto;
  padding: 0 var(--industries-gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 16px;
}

.industries-tile{
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--industries-dark);
  box-shadow: 0 10px 24px -16px rgba(4, 20, 10, 0.4);
}

.industries-tile-image{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--industries-ease);
}
.industries-tile:hover .industries-tile-image{ transform: scale(1.06); }

.industries-tile::before{
  content:'';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(38,39,41,0.05) 0%, rgba(38,39,41,0.4) 55%, rgba(38,39,41,0.94) 100%);
  z-index: 1;
  transition: background .4s var(--industries-ease);
}

.industries-tile-content{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.industries-tile-number{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(249, 206, 4, 0.16);
  border: 1px solid rgba(249, 206, 4, 0.4);
  font-family: var(--industries-display);
  font-size: 10.5px;
  letter-spacing: 0.02em;
  color: var(--industries-cream);
  margin-bottom: 2px;
}
.industries-tile-title{
  font-size: 15.5px;
  line-height: 1.2;
  color: var(--industries-white);
}
.industries-tile-link{
  display: inline-block;
  margin-top: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--industries-gold, #EDDABB);
  border-bottom: 1px solid rgba(237,218,187,0.5);
  padding-bottom: 2px;
}
.industries-tile-text{
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(253,251,246,0.78);
  max-width: 320px;
  max-height: 60px;
  opacity: 1;
  overflow: hidden;
  transition: max-height .4s var(--industries-ease), opacity .3s var(--industries-ease), margin-top .4s var(--industries-ease);
}
.industries-tile:hover .industries-tile-text{
  max-height: 100px;
  opacity: 1;
  margin-top: 2px;
}
.industries-tile-arrow{
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(253,251,246,0.15);
  border: 1px solid rgba(253,251,246,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--industries-white);
  opacity: 0;
  transform: translate(-6px, 6px);
  transition: opacity .3s var(--industries-ease), transform .3s var(--industries-ease), background-color .3s var(--industries-ease);
}
.industries-tile:hover .industries-tile-arrow{
  opacity: 1;
  transform: translate(0,0);
  background: var(--industries-green);
  border-color: var(--industries-green);
}
.industries-tile-arrow svg{ width: 13px; height: 13px; }

/* =========================================================
   CTA
   ========================================================= */
.industries-cta{
  background:
    radial-gradient(circle at 85% 15%, rgba(249, 206, 4, 0.16), transparent 32%),
    radial-gradient(circle at 10% 90%, rgba(255, 255, 255, 0.05), transparent 25%),
    var(--industries-green);
  padding: clamp(80px, 11vw, 150px) var(--industries-gutter);
}
.industries-cta-inner{
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.industries-cta-heading{
  font-size: clamp(30px, 4vw, 48px);
  color: var(--industries-white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.industries-cta-text{
  font-size: 16.5px;
  line-height: 1.75;
  color: rgba(253,251,246,0.78);
  max-width: 500px;
  margin: 0 auto 36px;
}
.industries-cta-actions{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.industries-footer-tagline{
  margin-top: 14px;
  font-size: 14px;
  font-style: italic;
  color: rgba(38,39,41,0.65);
  max-width: 220px;
}

/* =========================================================
   CAREERS / APPLY NOW
   Deliberately different framing from the industry tiles above
   (dark card, gold accents) so it reads as its own destination,
   not another industry.
   ========================================================= */
.industries-apply-section{
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 12%, rgba(249, 206, 4, 0.14), transparent 40%),
    radial-gradient(circle at 88% 86%, rgba(5, 79, 30, 0.07), transparent 42%),
    linear-gradient(rgba(5,79,30,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5,79,30,0.055) 1px, transparent 1px),
    var(--industries-white);
  background-size: auto, auto, 42px 42px, 42px 42px, auto;
  padding: clamp(64px, 9vw, 120px) var(--industries-gutter);
}
/* Decorative accents — soft gold + green shapes, no photography */
.industries-apply-section::before{
  content:'';
  position: absolute;
  top: -90px;
  right: -70px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: var(--industries-gold-radiant);
  opacity: 0.14;
  filter: blur(2px);
  pointer-events: none;
}
.industries-apply-section::after{
  content:'';
  position: absolute;
  bottom: -110px;
  left: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 1px solid rgba(5, 79, 30, 0.18);
  background: var(--industries-green-tint);
  opacity: 0.7;
  pointer-events: none;
}
.industries-apply-inner{
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
}
.industries-apply-intro{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.industries-apply-section .industries-eyebrow-light{ color: var(--industries-green); }
.industries-apply-heading{
  font-size: clamp(26px, 3.4vw, 38px);
  color: var(--industries-dark);
  line-height: 1.18;
  margin-bottom: 18px;
}
.industries-apply-text{
  font-size: 15.5px;
  line-height: 1.75;
  color: rgba(38,39,41,0.72);
  max-width: 460px;
  margin: 0 auto 28px;
}
.industries-apply-toggle{ min-width: 200px; }

/* ---------- Apply Now modal ---------- */
.industries-apply-modal-overlay{
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(4, 20, 10, 0.55);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .28s var(--industries-ease), visibility 0s linear .28s;
}
.industries-apply-modal-overlay.industries-apply-modal-open{
  opacity: 1;
  visibility: visible;
  transition: opacity .28s var(--industries-ease), visibility 0s linear 0s;
}
.industries-apply-modal-panel{
  position: relative;
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: var(--industries-radius);
  transform: translateY(18px) scale(.98);
  transition: transform .32s var(--industries-ease);
}
.industries-apply-modal-overlay.industries-apply-modal-open .industries-apply-modal-panel{
  transform: translateY(0) scale(1);
}
.industries-apply-modal-close{
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: rgba(5, 79, 30, 0.08);
  color: var(--industries-green-deep);
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color .2s var(--industries-ease), transform .2s var(--industries-ease);
}
.industries-apply-modal-close:hover{ background: rgba(5, 79, 30, 0.16); transform: rotate(90deg); }
.industries-apply-modal-close:focus-visible{ outline: 2px solid var(--industries-green); outline-offset: 2px; }

.industries-apply-card{
  width: 100%;
  text-align: left;
  background: var(--industries-white);
  border-radius: var(--industries-radius);
  padding: clamp(24px, 3vw, 36px);
}

@media (max-width: 560px){
  .industries-apply-card{ padding: 26px 20px 30px; }
}

.industries-apply-form{ display: flex; flex-direction: column; gap: 18px; }
.industries-apply-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.industries-field{ display: flex; flex-direction: column; gap: 8px; }
.industries-field-label{
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(38,39,41,0.6);
}
.industries-field-optional{
  text-transform: none;
  font-weight: 500;
  letter-spacing: normal;
  color: rgba(38,39,41,0.4);
}
.industries-input{
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  padding: 13px 15px;
  border-radius: var(--industries-radius-sm);
  border: 1.5px solid rgba(5, 79, 30, 0.16);
  background-color: var(--industries-white);
  font-family: inherit;
  font-size: 14.5px;
  color: var(--industries-dark);
  transition: border-color .25s var(--industries-ease);
}
.industries-input:focus{ outline: none; border-color: var(--industries-green); }
.industries-textarea{ resize: vertical; min-height: 100px; }
.industries-select{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%2345603D' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

.industries-button-outline-light{
  background: transparent;
  border-color: var(--industries-cream);
  color: var(--industries-cream);
}
.industries-button-outline-light:hover{ background: var(--industries-gold-radiant); color: var(--industries-green-deep); transform: translateY(-2px); }
.industries-button-block{ width: 100%; }

/* ---------- CV / resume file upload ---------- */
.industries-file-drop{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  padding: 28px 16px;
  border-radius: var(--industries-radius-sm);
  border: 1.5px dashed rgba(5, 79, 30, 0.3);
  background: var(--industries-gray-light);
  cursor: pointer;
  transition: border-color .25s var(--industries-ease), background-color .25s var(--industries-ease);
}
.industries-file-drop:hover,
.industries-file-drop.industries-file-drop-active{
  border-color: var(--industries-green);
  background: var(--industries-cream-soft);
}
.industries-file-drop.industries-file-drop-filled{
  border-style: solid;
  border-color: var(--industries-green);
  background: var(--industries-cream-soft);
}
.industries-file-input{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.industries-file-drop-icon{
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--industries-green);
  color: var(--industries-white);
  font-size: 15px;
  margin-bottom: 4px;
}
.industries-file-drop-text{
  font-size: 14px;
  font-weight: 600;
  color: var(--industries-dark);
}
.industries-file-drop-hint{
  font-size: 12px;
  color: rgba(38,39,41,0.55);
}

.industries-apply-error{
  font-size: 13px;
  font-weight: 600;
  color: #A3272A;
  background: rgba(163, 39, 42, 0.08);
  border-radius: 10px;
  padding: 10px 14px;
  margin: 0;
}

.industries-apply-alt{
  text-align: center;
  font-size: 13px;
  color: rgba(38,39,41,0.6);
  margin: 4px 0 0;
}
.industries-apply-alt-link{
  font-weight: 700;
  color: var(--industries-green-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- Success state ---------- */
.industries-apply-success{ text-align: center; padding: 12px 4px; }
.industries-apply-success-icon{
  width: 54px; height: 54px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--industries-green);
  color: var(--industries-white);
  font-size: 22px;
  display: flex; align-items: center; justify-content: center;
}
.industries-apply-success-title{
  font-size: 24px;
  color: var(--industries-dark);
  margin-bottom: 12px;
}
.industries-apply-success-text{
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(38,39,41,0.68);
  max-width: 420px;
  margin: 0 auto 26px;
}

@media (max-width: 1024px){
  .industries-apply-row{ grid-template-columns: 1fr; }
}
/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px){
  .industries-logo-img-full{ display: none; }

  .industries-grid{ grid-template-columns: repeat(3, 1fr); grid-auto-rows: 160px; gap: 14px; }
}@media (max-width: 640px){

  .industries-hero{ padding-top: 28px; padding-bottom: 32px; }
  .industries-hero .industries-eyebrow{ margin-bottom: 10px; }

  .industries-grid-section{ padding-top: 28px; }
  .industries-grid{ grid-template-columns: 1fr; grid-auto-rows: unset; gap: 14px; }
  .industries-tile{
    aspect-ratio: auto;
    height: 220px;
    box-shadow: 0 10px 22px -16px rgba(4, 20, 10, 0.5);
  }
  .industries-tile-content{ padding: 16px; gap: 4px; }
  .industries-tile-number{ width: 22px; height: 22px; font-size: 10px; }
  .industries-tile-title{ font-size: 16px; line-height: 1.2; }
  .industries-tile-link{ font-size: 10px; margin-top: 4px; }

  /* Touch devices have no :hover — surface the tap affordance by default */
  .industries-tile::before{
    background: linear-gradient(180deg, rgba(38,39,41,0.1) 0%, rgba(38,39,41,0.42) 48%, rgba(38,39,41,0.94) 100%);
  }
  .industries-tile-arrow{
    opacity: 1;
    transform: translate(0,0);
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    background: rgba(253,251,246,0.16);
  }
  .industries-tile-arrow svg{ width: 12px; height: 12px; }
  .industries-tile:active .industries-tile-arrow{
    background: var(--industries-green);
    border-color: var(--industries-green);
  }

  .industries-cta-actions{ flex-direction: column; width: 100%; }
  .industries-cta-actions .industries-button{ width: 100%; }
}

/* =========================================================
   GLOBAL HEADER & FOOTER — UNIFIED REDESIGN
   (Overrides earlier rules of the same selectors below.
   Page-specific content/buttons above are untouched.)
   ========================================================= */

/* ---------- Header ---------- */
.industries-header{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--industries-green);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
  transition: box-shadow .25s ease;
}
.industries-header.industries-header-scrolled{
  box-shadow: 0 4px 18px rgba(4, 20, 10, 0.08);
}
.industries-header-inner{
  width: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
 padding: 15px 25px;
}
.industries-logo{ display: flex; align-items: center; margin-right: auto; }
.industries-logo-img{
  height: 70px;
  width: auto;
  max-width: none;
  object-fit: contain;
}
.industries-logo-img-mark{ display: none; }

.industries-nav-list{
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.industries-nav-link{
  position: relative;
  display: inline-block;
  padding: 6px 1px;
  font-family: var(--industries-body);
  font-size: 22px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: color .2s ease;
}
.industries-nav-link::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--industries-green);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.industries-nav-link:hover{ color: var(--industries-cream); }
.industries-nav-link:hover::after,
.industries-nav-link-active::after{ transform: scaleX(1); }
.industries-nav-link-active{ color: var(--industries-cream); }
.industries-nav-link:focus-visible{
  outline: 2px solid var(--industries-cream);
  outline-offset: 4px;
  border-radius: 2px;
}

.industries-header-actions{
  display: flex;
  align-items: center;
  gap: 18px;
}
.industries-header-actions .industries-button-primary{
  padding: 15px 25px;
  font-size: 15px;
}

.industries-hamburger{
  display: none;
  width: 34px;
  height: 34px;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
}
.industries-hamburger:focus-visible{
  outline: 2px solid var(--industries-green);
  outline-offset: 2px;
  border-radius: 4px;
}
.industries-hamburger-line{
  display: block;
  width: 22px;
  height: 2px;
  background: var(--industries-cream);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.industries-hamburger.industries-hamburger-open .industries-hamburger-line:nth-child(1){
  transform: translateY(7px) rotate(45deg);
}
.industries-hamburger.industries-hamburger-open .industries-hamburger-line:nth-child(2){ opacity: 0; }
.industries-hamburger.industries-hamburger-open .industries-hamburger-line:nth-child(3){
  transform: translateY(-7px) rotate(-45deg);
}

.industries-mobile-nav{
  display: none;
  flex-direction: column;
  gap: 4px;
  max-height: 0;
  overflow: hidden;
  background: var(--industries-green-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0 24px;
  transition: max-height .3s ease, padding .3s ease;
}
.industries-mobile-nav.industries-mobile-nav-open{
  max-height: 520px;
  padding: 18px 24px 24px;
}
.industries-mobile-nav-list{
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.industries-mobile-nav-link{
  display: block;
  padding: 12px 4px;
  font-family: var(--industries-body);
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
.industries-mobile-nav-link-active{ color: var(--industries-cream); }
.industries-mobile-cta{ width: 100%; text-align: center; }

/* Gold CTA button on green header/mobile-nav backgrounds */
.industries-header-actions .industries-button-primary,
.industries-mobile-nav .industries-button-primary{
  background: var(--industries-gold-radiant);
  color: var(--industries-green-deep);
  border-color: transparent;
}
.industries-header-actions .industries-button-primary:hover,
.industries-mobile-nav .industries-button-primary:hover{
  background: var(--industries-cream-soft);
  color: var(--industries-green-deep);
}

@media (max-width: 1024px){
  .industries-nav{ display: none; }
  .industries-hamburger{ display: flex; }
  .industries-mobile-nav{ display: flex; }
  .industries-header-actions .industries-button-primary{ display: none; }
  .industries-header-inner{ padding: 15px 20px; }
  .industries-logo-img-mark{ display: block; }
  .industries-logo-img{ height: 38px; }
}

/* ---------- Footer ---------- */
.industries-footer{
  background: var(--industries-green-deep);
  padding: clamp(52px, 6vw, 76px) var(--industries-gutter) 28px;
}
.industries-footer-top{
  max-width: var(--industries-container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
.industries-footer-brand{ max-width: 240px; }
.industries-footer-logo, .industries-logo, .industries-footer-logo{ display: inline-flex; }
.industries-footer-logo-img{
  width: 190px;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}
.industries-footer-desc{
  margin-top: 14px;
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.62);
}
.industries-footer-heading{
  font-family: var(--industries-body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--industries-cream);
  margin-bottom: 18px;
}
.industries-footer-list{ display: flex; flex-direction: column; gap: 12px; list-style: none; margin: 0; padding: 0; }
.industries-footer-link{
  font-size: 14px;
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
  transition: color .2s ease;
}
.industries-footer-link:hover{ color: var(--industries-cream); }
.industries-footer-text{
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.60);
}
.industries-footer-bottom{
  max-width: var(--industries-container);
  margin: 0 auto;
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.industries-footer-copyright{
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.48);
}
.industries-footer-social{ display: flex; gap: 10px; }
.industries-social-link{
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.75);
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.industries-social-link:hover{
  background: var(--industries-green);
  border-color: var(--industries-green);
  color: var(--industries-white);
}

@media (max-width: 1024px){
  .industries-footer-top{ grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .industries-footer-brand{ grid-column: 1 / -1; max-width: none; }
}

/* ---------- Footer: mobile-only condensed row ----------
   Desktop/tablet keep the full column layout above untouched.
   Below 640px, collapse to a single row: logo, copyright, social. */
@media (max-width: 640px){
  .industries-footer{ padding: 32px 20px 24px; }
  .industries-footer-top{
    grid-template-columns: 1fr;
    border-bottom: none;
    padding-bottom: 0;
    justify-items: center;
    text-align: center;
  }
  .industries-footer-brand{ max-width: none; }
  .industries-footer-desc{ display: none; }
  .industries-footer-col{ display: none; }
  .industries-footer-bottom{
    flex-direction: row;
    justify-content: center;
    gap: 14px;
    padding-top: 18px;
  }
}
