/* ══════════════════════════════════════════
   AMS Industrial Solutions — style-v2.css
══════════════════════════════════════════ */

:root {
  --green:       #2E7D32;
  --green-dark:  #1B5E20;
  --green-light: #F1F8F1;
  --orange:      #E95B1A;
  --orange-dark: #C44A10;
  --charcoal:    #1E1E1E;
  --charcoal-2:  #2C2C2C;
  --white:       #FFFFFF;
  --off-white:   #F8F7F2;
  --muted:       #5A616C;
  --border:      #E0E0D8;
  --nav-h:       84px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 12px); }
body { font-family: 'Barlow', sans-serif; color: var(--charcoal-2); background: var(--white); overflow-x: hidden; font-size: 18px; }

/* ── UTILITIES ── */
.container { max-width: 1360px; margin: 0 auto; padding: 0 40px; }
.section-pad { padding: 72px 0; }
.bg-dark { background: var(--charcoal); }
.bg-offwhite { background: var(--off-white); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.eyebrow { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--green); margin-bottom: 14px; }
.eyebrow::before { content: ''; display: block; width: 24px; height: 2px; background: var(--green); flex-shrink: 0; }
.eyebrow-light { color: var(--orange); }
.eyebrow-light::before { background: var(--orange); }
.sec-title { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(42px, 4.5vw, 64px); font-weight: 800; text-transform: uppercase; color: var(--charcoal-2); line-height: 1.0; letter-spacing: -0.5px; margin-bottom: 18px; }
.sec-title em { font-style: normal; color: var(--green); }
.sec-title.light { color: var(--white); }
.sec-title.light em { color: var(--orange); }
.body-text { font-size: 20px; color: var(--muted); line-height: 1.8; }
.sec-header-center { text-align: center; margin-bottom: 44px; }
.sec-header-center .eyebrow { justify-content: center; }
.sec-sub { font-size: 20px; color: var(--muted); max-width: 680px; margin: 0 auto; line-height: 1.7; }
.sec-sub.light { color: rgba(255,255,255,0.55); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: linear-gradient(180deg, #163d18 0%, #1B5E20 55%, #1a4d1c 100%);
  border-bottom: 3px solid var(--orange);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: var(--nav-h);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 6px 24px rgba(0,0,0,0.28); }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-link { display: flex; align-items: center; text-decoration: none; line-height: 0; }
.logo img {
  height: 62px;
  width: auto;
  max-width: min(240px, 46vw);
  display: block;
  object-fit: contain;
}
.logo-fallback { display: flex; flex-direction: column; line-height: 1; }
.logo-mark { font-family: 'Barlow Condensed', sans-serif; font-size: 26px; font-weight: 800; letter-spacing: 2px; color: var(--green); }
.logo-mark span { color: var(--orange); }
.logo-tag { font-size: 9px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--muted); }
.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a { font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.88); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: #fff; }
.nav-dropdown { position: relative; }
.nav-drop-trigger { display: inline-flex; align-items: center; gap: 4px; }
.nav-caret { font-size: 10px; line-height: 1; transition: transform 0.2s; }
.nav-dropdown:hover .nav-caret { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 18px); left: 50%; transform: translateX(-50%);
  min-width: 210px; background: var(--white); border: 1px solid var(--border);
  box-shadow: 0 8px 28px rgba(0,0,0,0.14); list-style: none; padding: 8px 0;
  opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.2s, visibility 0.2s;
  z-index: 120;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
}
.nav-dropdown-menu li a {
  display: block; padding: 11px 18px; font-size: 15px; white-space: nowrap;
  color: var(--charcoal-2);
}
.nav-dropdown-menu li a:hover { background: var(--green-light); color: var(--green); }
.mobile-sub { list-style: none; padding: 0 0 8px 12px; }
.mobile-sub a {
  display: block; padding: 8px 0; font-size: 15px; font-weight: 400;
  color: var(--muted); text-decoration: none; border-bottom: 1px solid var(--border);
}
.mobile-sub a:hover { color: var(--green); }
.nav-cta {
  background: var(--orange); color: white; padding: 11px 24px; font-size: 15px;
  font-weight: 600; text-decoration: none; border-radius: 2px;
  transition: background 0.2s; white-space: nowrap;
}
.nav-cta:hover { background: var(--orange-dark); }
.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-burger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: 0.3s; }

/* Mobile menu */
.mobile-menu { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--white); border-bottom: 2px solid var(--green); z-index: 99; padding: 20px 32px 28px; }
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a { display: block; padding: 12px 0; font-size: 17px; font-weight: 500; color: var(--charcoal-2); text-decoration: none; border-bottom: 1px solid var(--border); }
.mobile-menu a:hover { color: var(--green); }

/* ── HERO ── */
.hero {
  padding-top: var(--nav-h);
  background: var(--white);
}
.hero-banner {
  width: 100%;
  line-height: 0;
  overflow: hidden;
  background: #d8e6f2;
}
.hero-banner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* CTA bar under banner */
.hero-cta-bar {
  background: var(--charcoal);
  border-bottom: 3px solid var(--green);
}
.hero-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 20px;
  padding-bottom: 20px;
}
.hero-cta-tag {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
  margin: 0;
}
.hero-cta-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.btn-orange {
  background: var(--orange);
  color: white;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-orange:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}
.btn-outline-dark {
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.9);
  padding: 11px 24px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  white-space: nowrap;
}
.btn-outline-dark:hover {
  border-color: rgba(255, 255, 255, 0.85);
  color: white;
  background: rgba(255, 255, 255, 0.06);
}

/* ── ABOUT ── */
.about {
  background: linear-gradient(180deg, #f4f8f4 0%, #ffffff 40%, #ffffff 100%);
}
.about .container.grid-2 {
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: stretch;
}
.about-left { padding-right: 8px; display: flex; flex-direction: column; justify-content: center; }
.about-badges { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-top: 32px; }
.badge { background: var(--green-dark); padding: 18px 12px; text-align: center; border-radius: 2px; }
.badge-n { display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 38px; font-weight: 800; color: var(--orange); line-height: 1; margin-bottom: 4px; }
.badge-l { font-size: 14px; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 1px; }
.about-img-grid { position: relative; height: min(560px, 62vh); min-height: 420px; }
.ai-main { position: absolute; top: 0; left: 0; width: 74%; height: 78%; object-fit: cover; border-radius: 2px; box-shadow: 0 10px 28px rgba(0,0,0,0.12); }
.ai-sm1 { position: absolute; bottom: 0; left: 0; width: 46%; height: 38%; object-fit: cover; border-radius: 2px; box-shadow: 0 8px 20px rgba(0,0,0,0.12); }
.ai-sm2 { position: absolute; bottom: 0; right: 0; width: 48%; height: 54%; object-fit: cover; border-radius: 2px; box-shadow: 0 8px 20px rgba(0,0,0,0.12); }

/* ── PRODUCTS ── */
.products-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: 0; }
.prod-card { background: rgba(255,255,255,0.04); transition: background 0.25s; }
.prod-card:hover { background: rgba(255,255,255,0.08); }
.prod-img { position: relative; height: 250px; overflow: hidden; }
.prod-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; filter: grayscale(20%); }
.prod-card:hover .prod-img img { transform: scale(1.04); filter: grayscale(0%); }
.prod-tag { position: absolute; top: 14px; left: 14px; font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 800; color: var(--white); background: var(--orange); padding: 3px 10px; border-radius: 2px; letter-spacing: 1px; }
.prod-body { padding: 28px 28px 32px; }
.prod-body h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 26px; font-weight: 700; text-transform: uppercase; color: var(--white); letter-spacing: 0.5px; margin-bottom: 10px; }
.prod-body p { font-size: 17px; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 16px; }
.prod-specs { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.prod-specs li { font-size: 16px; color: rgba(255,255,255,0.4); padding-left: 14px; position: relative; }
.prod-specs li::before { content: '—'; position: absolute; left: 0; color: var(--green); }

/* ── VIDEO ── */
.video-section { position: relative; min-height: 520px; display: flex; align-items: center; justify-content: center; overflow: hidden; text-align: center; }
.video-bg { position: absolute; inset: 0; z-index: 0; }
.video-bg img { width: 100%; height: 100%; object-fit: cover; }
.video-overlay { position: absolute; inset: 0; background: rgba(27,94,32,0.88); }
.video-content { position: relative; z-index: 2; padding: 80px 48px; }
.video-content .eyebrow { justify-content: center; }
.video-sub { color: rgba(255,255,255,0.65); font-size: 20px; max-width: 560px; margin: 0 auto 36px; line-height: 1.8; }
.play-btn { display: inline-flex; align-items: center; gap: 14px; background: var(--orange); color: white; border: none; padding: 18px 40px; font-family: 'Barlow', sans-serif; font-size: 18px; font-weight: 600; border-radius: 2px; cursor: pointer; transition: background 0.2s, transform 0.15s; }
.play-btn:hover { background: var(--orange-dark); transform: scale(1.02); }
.play-icon { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; }
.yt-modal { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.88); z-index: 1000; align-items: center; justify-content: center; }
.yt-modal.open { display: flex; }
.yt-modal-inner { position: relative; width: 90%; max-width: 900px; aspect-ratio: 16/9; background: #000; }
.yt-close { position: absolute; top: -44px; right: 0; background: none; border: none; color: white; font-size: 24px; cursor: pointer; opacity: 0.8; }
.yt-close:hover { opacity: 1; }

/* ── INDUSTRIES ── */
.ind-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.ind-card { border: 1px solid var(--border); padding: 32px 24px; border-top: 3px solid var(--green); background: var(--white); transition: transform 0.25s, box-shadow 0.25s; }
.ind-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,0.08); }
.ind-icon { font-size: 32px; margin-bottom: 14px; display: block; }
.ind-name { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 700; text-transform: uppercase; color: var(--charcoal-2); letter-spacing: 0.5px; margin-bottom: 8px; }
.ind-text { font-size: 16px; color: var(--muted); line-height: 1.65; }

/* ── SPECS ── */
.specs-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.spec-card { background: var(--white); border: 1px solid var(--border); border-radius: 2px; overflow: hidden; }
.spec-card-head { display: flex; align-items: center; gap: 12px; padding: 20px 24px; background: var(--green-dark); }
.spec-icon { font-size: 22px; }
.spec-card-head h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 19px; font-weight: 700; text-transform: uppercase; color: var(--white); letter-spacing: 0.5px; }
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table thead tr { background: var(--green-light); }
.spec-table th { padding: 10px 16px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--green-dark); text-align: left; }
.spec-table td { padding: 10px 16px; font-size: 15px; color: var(--charcoal-2); border-bottom: 1px solid var(--border); }
.spec-table tr:last-child td { border-bottom: none; }
.spec-table tr:hover td { background: var(--green-light); }
.mat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.mat-item { padding: 12px 16px; border-bottom: 1px solid var(--border); border-right: 1px solid var(--border); }
.mat-item:nth-child(2n) { border-right: none; }
.mat-item:nth-last-child(-n+2) { border-bottom: none; }
.mat-name { font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 700; color: var(--charcoal-2); text-transform: uppercase; }
.mat-use { font-size: 13px; color: var(--muted); margin-top: 2px; }
.spec-note { padding: 10px 16px; font-size: 12px; color: var(--orange); background: #FFF8F5; border-top: 1px solid var(--border); }

/* ── ADVANTAGES ── */
.adv-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.adv-card { border: 1px solid var(--border); padding: 36px 28px; border-top: 3px solid var(--green); background: var(--white); transition: box-shadow 0.25s, transform 0.25s; }
.adv-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.08); transform: translateY(-3px); }
.adv-icon { font-size: 28px; margin-bottom: 16px; display: block; }
.adv-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 24px; font-weight: 700; text-transform: uppercase; color: var(--charcoal-2); letter-spacing: 0.5px; margin-bottom: 12px; }
.adv-card p { font-size: 17px; color: var(--muted); line-height: 1.75; }

/* ── VALIDATION PROCEDURE ── */
.val-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.val-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--green);
  padding: 28px 28px 32px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.val-step:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.08); transform: translateY(-3px); }
.val-step--wide { grid-column: 1 / -1; }
.val-step-head { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.val-step-num {
  flex-shrink: 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  background: var(--orange);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  letter-spacing: 1px;
}
.val-step h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--charcoal-2);
  letter-spacing: 0.5px;
  line-height: 1.15;
}
.val-intro { font-size: 15px; font-weight: 600; color: var(--green-dark); margin-bottom: 10px; }
.val-list { list-style: none; display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.val-list li {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.55;
  padding-left: 16px;
  position: relative;
}
.val-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
}
.val-list--compact { margin-bottom: 0; gap: 6px; }
.val-list--compact li { font-size: 15px; }
.val-subbox {
  background: var(--green-light);
  border-left: 3px solid var(--green);
  padding: 16px 18px;
  border-radius: 0 2px 2px 0;
}
.val-subbox--highlight { background: var(--green-dark); border-left-color: var(--orange); }
.val-subbox--highlight .val-subbox-title { color: var(--orange); }
.val-subbox--highlight .val-approval { color: rgba(255,255,255,0.85); }
.val-subbox-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--green-dark);
  margin-bottom: 10px;
}
.val-step-split { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.val-approval { font-size: 16px; line-height: 1.65; color: var(--muted); margin: 0; }

/* ── CUSTOMERS ── */
.cust-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; margin-bottom: 56px; }
.cust-stat { text-align: center; padding: 36px 24px; background: rgba(255,255,255,0.05); }
.cust-stat-n { font-family: 'Barlow Condensed', sans-serif; font-size: 56px; font-weight: 800; color: var(--white); line-height: 1; }
.cust-stat-n span { color: var(--orange); }
.cust-stat-l { font-size: 14px; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 6px; }
.regions-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; margin-bottom: 56px; }
.region-card { background: rgba(255,255,255,0.06); padding: 32px 24px; border-bottom: 3px solid transparent; transition: border-color 0.2s, background 0.2s; }
.region-card:hover { border-bottom-color: var(--orange); background: rgba(255,255,255,0.1); }
.region-flag { font-size: 32px; margin-bottom: 10px; display: block; }
.region-name { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 700; text-transform: uppercase; color: var(--white); margin-bottom: 8px; }
.region-text { font-size: 15px; color: rgba(255,255,255,0.45); line-height: 1.6; }
.logos-section { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 48px; }
.logos-label { font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.35); text-align: center; margin-bottom: 28px; }
.logos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 980px;
  margin: 0 auto;
}
.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  padding: 20px 24px;
  background: #ffffff;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 4px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  overflow: hidden;
}
.client-logo:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.client-logo img {
  max-width: 100%;
  max-height: 58px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.client-logo img[alt="BM Industries"] {
  max-height: 52px;
  width: auto;
  max-width: 90%;
}
.client-logo--aramco {
  background: #ffffff;
  border-color: rgba(255,255,255,0.14);
  padding: 10px 14px;
}
.client-logo--aramco img {
  max-height: 78px;
  width: auto;
}

/* ── VISION / MISSION ── */
.vm { display: grid; grid-template-columns: 1fr 1fr; }
.vm-panel { padding: 96px 72px; position: relative; overflow: hidden; }
.vm-panel.vision { background: var(--off-white); }
.vm-panel.mission { background: var(--green); }
.vm-panel.mission::after { content: ''; position: absolute; bottom: -40px; right: -40px; width: 140px; height: 140px; background: var(--green-dark); clip-path: polygon(100% 0, 0 100%, 100% 100%); }
.vm-panel.vision .eyebrow { color: var(--green); }
.vm-panel.vision .eyebrow::before { background: var(--green); }
.vm-panel.vision .sec-title { color: var(--charcoal-2); }
.vm-panel.vision .sec-title em { color: var(--green); }
.vm-body { font-size: 18px; line-height: 1.85; color: var(--muted); margin-top: 16px; }
.vm-list { list-style: none; margin-top: 24px; }
.vm-list li { font-size: 16px; color: rgba(255,255,255,0.8); padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.12); display: flex; gap: 14px; align-items: flex-start; line-height: 1.6; }
.vm-list li::before { content: ''; display: block; width: 6px; height: 6px; background: white; border-radius: 50%; margin-top: 6px; flex-shrink: 0; }

/* ── CONTACT ── */
.contact { background: var(--off-white); }
.contact-info { padding-right: 20px; }
.contact-tag { font-size: 19px; color: var(--muted); line-height: 1.8; margin: 16px 0 36px; }
.contact-list { display: flex; flex-direction: column; gap: 0; }
.citem { display: flex; align-items: center; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--border); text-decoration: none; color: var(--charcoal-2); transition: color 0.2s; }
.citem:last-child { border-bottom: none; }
.citem:hover { color: var(--green); }
.citem-icon { width: 42px; height: 42px; background: var(--green-light); border-radius: 2px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; border-left: 3px solid var(--green); }
.citem-label { font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin-bottom: 2px; }
.citem-val { font-size: 16px; font-weight: 500; }
.contact-form-wrap { background: var(--white); padding: 48px 44px; border-radius: 2px; box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
.form-body { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
.field input, .field textarea, .field select { width: 100%; background: var(--off-white); border: 1px solid var(--border); border-radius: 2px; padding: 12px 14px; font-family: 'Barlow', sans-serif; font-size: 16px; color: var(--charcoal-2); outline: none; transition: border-color 0.2s; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--green); background: var(--white); }
.field textarea { resize: vertical; min-height: 110px; }
.field select { cursor: pointer; }
.form-submit { background: var(--green); color: white; border: none; padding: 14px 32px; font-family: 'Barlow', sans-serif; font-size: 16px; font-weight: 600; border-radius: 2px; cursor: pointer; transition: background 0.2s; align-self: flex-start; }
.form-submit:hover { background: var(--green-dark); }

/* ── FOOTER ── */
footer { background: var(--charcoal); border-top: 3px solid var(--green); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding: 64px 48px; }
.footer-logo-text { font-family: 'Barlow Condensed', sans-serif; font-size: 24px; font-weight: 800; letter-spacing: 2px; color: var(--white); margin-bottom: 4px; }
.footer-logo-text span { color: var(--orange); }
.footer-tag { font-size: 10px; color: rgba(255,255,255,0.3); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; }
.footer-about { font-size: 15px; color: rgba(255,255,255,0.35); line-height: 1.7; max-width: 280px; }
.footer-col-title { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.footer-links-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links-col li, .footer-links-col a { font-size: 15px; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-links-col a:hover { color: var(--white); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 20px 48px; border-top: 1px solid rgba(255,255,255,0.08); font-size: 14px; color: rgba(255,255,255,0.25); }
.footer-bottom a { color: rgba(255,255,255,0.35); text-decoration: none; }
.footer-bottom a:hover { color: white; }

/* ── WHATSAPP BUTTON ── */
.whatsapp-btn { position: fixed; bottom: 28px; right: 28px; z-index: 200; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(37,211,102,0.4); transition: transform 0.2s, box-shadow 0.2s; }
.whatsapp-btn:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(37,211,102,0.5); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .container { padding: 0 28px; }
  .about .container.grid-2 { gap: 28px; }
  .about-img-grid { height: 480px; min-height: 380px; }
  .ind-grid { grid-template-columns: repeat(3,1fr); }
  .specs-grid { grid-template-columns: 1fr 1fr; }
  .specs-grid .spec-card:last-child { grid-column: 1 / -1; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .container { padding: 0 20px; }
  .section-pad { padding: 56px 0; }
  nav { padding: 0 20px; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .logo img { height: 50px; }
  .hero-cta-inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .hero-cta-actions { justify-content: center; flex-wrap: wrap; }
  .grid-2 { grid-template-columns: 1fr; gap: 28px; }
  .about .container.grid-2 { grid-template-columns: 1fr; }
  .about-right { display: block; }
  .about-img-grid { height: 360px; min-height: 300px; }
  .about-badges { grid-template-columns: repeat(2,1fr); }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .prod-img { height: 210px; }
  .ind-grid { grid-template-columns: repeat(2,1fr); }
  .specs-grid { grid-template-columns: 1fr; }
  .adv-grid { grid-template-columns: 1fr; }
  .val-grid { grid-template-columns: 1fr; }
  .val-step--wide { grid-column: auto; }
  .val-step-split { grid-template-columns: 1fr; gap: 20px; }
  .val-step-head { align-items: flex-start; }
  .val-step { padding: 24px 22px 28px; }
  .cust-stats { grid-template-columns: repeat(2,1fr); }
  .regions-grid { grid-template-columns: repeat(2,1fr); }
  .logos-grid { grid-template-columns: repeat(3,1fr); }
  .vm { grid-template-columns: 1fr; }
  .vm-panel { padding: 64px 28px; }
  .contact .grid-2 { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; padding: 48px 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; padding: 20px 24px; }
}

@media (max-width: 600px) {
  .hero-cta-tag { font-size: 15px; }
  .btn-orange, .btn-outline-dark { padding: 11px 20px; font-size: 14px; }
  .products-grid { grid-template-columns: 1fr; }
  .ind-grid { grid-template-columns: 1fr 1fr; }
  .cust-stats { grid-template-columns: repeat(2,1fr); }
  .regions-grid { grid-template-columns: 1fr; }
  .logos-grid { grid-template-columns: repeat(2,1fr); }
  .client-logo { min-height: 76px; padding: 12px 14px; }
  .client-logo img { max-height: 40px; }
  .val-step { padding: 20px 18px 24px; }
  .val-step-num { width: 44px; height: 44px; font-size: 22px; }
  .val-step h3 { font-size: 19px; }
  .val-step-head { gap: 12px; }
  .val-list li { font-size: 15px; }
  .val-list--compact li { font-size: 14px; }
  .val-subbox { padding: 14px 16px; }
}
