/* ============================================================
   VSM Precision Machining — Main Stylesheet
   Design: Industrial Precision — Navy & Steel
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800&family=Barlow:wght@400;500;600&display=swap');

/* ── Variables ─────────────────────────────── */
:root {
  --navy:       #0d1b2a;
  --navy-mid:   #1a2f45;
  --steel:      #3a5f82;
  --accent:     #e8a020;
  --accent-dk:  #c4851a;
  --light:      #f4f6f8;
  --white:      #ffffff;
  --text:       #2a3340;
  --text-light: #5a6a7a;
  --border:     #d0dae4;
  --shadow:     0 4px 24px rgba(13,27,42,0.12);
  --radius:     6px;
  --max-w:      1180px;
  --transition: 0.22s ease;
}

/* ── Reset & Base ───────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 18px; }

body {
  font-family: 'Barlow', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img { max-width: 100%; height: auto; display: block; }
picture { display: block; }
a  { color: inherit; text-decoration: none; }

/* ── Typography ─────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--navy);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.4rem, 3vw, 1.9rem); }
h4 { font-size: 1.2rem; }

p  { font-size: 1rem; color: var(--text); }

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #b87a10;
  margin-bottom: 0.6rem;
  display: block;
}

/* Restore accent colour on dark backgrounds */
.hero .section-label,
.cta-banner .section-label,
.highlights-bar .section-label,
.page-banner .section-label {
  color: var(--accent);
}

/* ── Layout Utilities ───────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section    { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.text-center { text-align: center; }

.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  line-height: 1;
}

.btn-primary {
  background: var(--accent);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--accent-dk);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,160,32,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2.5px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
}

/* ── Top Bar ────────────────────────────────── */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  font-size: 0.82rem;
  padding: 0.55rem 0;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.5rem;
  overflow: hidden;
}

/* All topbar links — base style */
.topbar a {
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
}
.topbar a:hover { color: var(--accent); }

/* Contact items container */
.topbar-contacts {
  display: flex;
  gap: 1.5rem;
  flex-wrap: nowrap;
  align-items: center;
  min-width: 0;
}

/* Each contact link (phone, email, location) is now an <a> */
.topbar-contacts a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
  text-decoration: none;
  white-space: nowrap;
  min-width: 0;
}
.topbar-contacts a:hover { color: var(--accent); }

/* Icons — never hidden, never shrunk */
.topbar-contacts svg {
  width: 16px;
  height: 16px;
  fill: var(--accent);
  flex-shrink: 0;
  display: block;
}

/* Text label inside each link — hidden on small screens */
.topbar-text {
  font-size: 0.82rem;
  white-space: nowrap;
}

.contact-details .topbar-text {
  font-size: 1.05rem;
  font-weight: 600;
  white-space: normal;
}

/* ISO badge */
.iso-badge {
  background: var(--accent);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Badge text variants */
.iso-badge .badge-short { display: none; }
.iso-badge .badge-full  { display: inline; }

/* ── Header / Nav ───────────────────────────── */
.site-header {
  background: var(--white);
  border-bottom: 3px solid var(--accent);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(13,27,42,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

/* Logo image */
.logo-link {
  display: block;
  flex-shrink: 0;
  line-height: 0;
}

.logo-link picture,
.logo-link img.site-logo {
  display: block;
}

.site-logo {
  width: 160px;
  height: auto;
  max-height: 58px;
  object-fit: contain;
}

.logo-link picture::after {
  content: 'VSM Precision';
  display: none;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.2rem;
  align-items: center;
}

.nav-links a {
  display: block;
  padding: 0.55rem 1rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--navy); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta { margin-left: 0.8rem; }

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── Hero ───────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--steel) 100%);
  color: var(--white);
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
          repeating-linear-gradient(90deg, transparent, transparent 80px,
          rgba(255,255,255,0.015) 80px, rgba(255,255,255,0.015) 81px),
          repeating-linear-gradient(0deg, transparent, transparent 80px,
          rgba(255,255,255,0.015) 80px, rgba(255,255,255,0.015) 81px);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero h1 { color: var(--white); margin-bottom: 1rem; }
.hero h1 em { font-style: normal; color: var(--accent); }

.hero-desc {
  font-size: 1.12rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 2rem;
  max-width: 480px;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.stat-box {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 1.2rem;
  text-align: center;
}

.stat-box strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat-box span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Hero image panel */
.hero-image-panel { position: relative; }

.hero-image-panel picture,
.hero-image-panel img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  aspect-ratio: 700 / 420;
  background: var(--navy-mid);
}

.hero-badge {
  position: absolute;
  bottom: -1.2rem;
  left: -1.2rem;
  background: var(--accent);
  color: var(--navy);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.8rem 1.2rem;
  border-radius: var(--radius);
  line-height: 1.3;
}

/* ── Feature Highlights Bar ─────────────────── */
.highlights-bar {
  background: var(--navy-mid);
  padding: 2.5rem 0;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.highlight-item:last-child { border-right: none; }

.highlight-icon {
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.highlight-icon svg { width: 22px; height: 22px; fill: var(--navy); }

.highlight-item h4 { color: var(--white); font-size: 1rem; margin-bottom: 0.15rem; }
.highlight-item p  { color: rgba(255,255,255,0.6); font-size: 0.83rem; line-height: 1.4; }

/* ── About Section ──────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.about-images picture        { display: block; border-radius: var(--radius); overflow: hidden; }
.about-images picture img    { width: 100%; height: 220px; object-fit: cover; background: var(--light); }
.about-images picture:first-child     { grid-column: 1 / -1; }
.about-images picture:first-child img { height: 260px; }

.about-content h2  { margin-bottom: 1rem; }
.about-content p   { margin-bottom: 1rem; color: var(--text-light); }

.check-list {
  list-style: none;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.check-list li::before {
  content: '';
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%230d1b2a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' d='M2 6l3 3 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

/* ── Capabilities ───────────────────────────── */
.capabilities-bg {
  background: var(--light);
  color: var(--text);
}

.capabilities-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}
.capabilities-intro h2 { margin-bottom: 1rem; }
.capabilities-intro p  { color: var(--text-light); }

.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.cap-card {
  background: var(--white);
  border-radius: 8px;
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--accent);
  transition: var(--transition);
}
.cap-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(13,27,42,0.16);
}

.cap-icon {
  width: 52px;
  height: 52px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.cap-icon svg { width: 26px; height: 26px; fill: var(--accent); }

.cap-card h3 { font-size: 1.3rem; margin-bottom: 0.7rem; }
.cap-card p  { color: var(--text-light); font-size: 0.92rem; line-height: 1.6; }

.cap-list {
  list-style: none;
  margin-top: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.cap-list li {
  font-size: 0.88rem;
  color: var(--text-light);
  padding-left: 1.1rem;
  position: relative;
}
.cap-list li::before { content: '›'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

/* ── Machine Specs ──────────────────────────── */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 2rem;
}

.spec-card {
  background: var(--navy);
  border-radius: 6px;
  padding: 1rem 1.2rem;
  color: var(--white);
}

.spec-card h3 {
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.spec-model {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

.spec-type {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-left: 0.3rem;
}

.spec-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.spec-card ul li {
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  padding-left: 0.9rem;
  position: relative;
  line-height: 1.4;
}

.spec-card ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.7rem;
}

/* ── CTA Banner ─────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--steel) 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 60px,
  rgba(255,255,255,0.015) 60px, rgba(255,255,255,0.015) 61px);
  pointer-events: none;
}
.cta-banner > .container { position: relative; z-index: 1; }
.cta-banner h2  { color: var(--white); margin-bottom: 1rem; }
.cta-banner p   { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 540px; margin: 0 auto 2rem; }

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

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--accent);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
}

/* ── Contact ────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2  { margin-bottom: 1.2rem; }
.contact-info p   { color: var(--text-light); margin-bottom: 2rem; }

.contact-details { list-style: none; display: flex; flex-direction: column; gap: 1.2rem; }
.contact-details li { display: flex; gap: 1rem; align-items: flex-start; }

.ci-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ci-icon svg { width: 20px; height: 20px; fill: var(--accent); }

.contact-details strong { display: block; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); margin-bottom: 0.2rem; }
.contact-details a,
.contact-details span a { font-size: 1.05rem; font-weight: 600; color: var(--navy); transition: color var(--transition); }
.contact-details a:hover { color: var(--accent); }

.contact-social { margin-top: 2rem; display: flex; gap: 0.8rem; }
.social-link {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.social-link:hover { background: var(--accent); }
.social-link svg   { width: 20px; height: 20px; fill: var(--white); }
.social-link:hover svg { fill: var(--navy); }

/* ── Form ───────────────────────────────────── */
.form-card {
  background: var(--white);
  border-radius: 10px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.form-card h3   { margin-bottom: 0.4rem; }
.form-card > p  { color: var(--text-light); margin-bottom: 2rem; font-size: 0.95rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--steel);
  box-shadow: 0 0 0 3px rgba(58,95,130,0.12);
}
.form-group textarea { min-height: 130px; resize: vertical; }

.form-submit { width: 100%; padding: 1rem; font-size: 1.1rem; }

.alert {
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  font-weight: 500;
}
.alert-success { background: #e6f4ea; border: 1px solid #a8d5b0; color: #1b5e32; }
.alert-error   { background: #fce8e8; border: 1px solid #f5a0a0; color: #8b1c1c; }

.map-wrap {
  border-radius: 10px;
  overflow: hidden;
  margin-top: 3rem;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 6;
  background: var(--light);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ── Page Banner ────────────────────────────── */
.page-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent, transparent 80px,
  rgba(255,255,255,0.02) 80px, rgba(255,255,255,0.02) 81px);
  pointer-events: none;
}
.page-banner > .container { position: relative; z-index: 1; }
.page-banner h1 { color: var(--white); margin-bottom: 0.5rem; }

.breadcrumb { display: flex; gap: 0.5rem; font-size: 0.88rem; color: rgba(255,255,255,0.6); }
.breadcrumb a { color: var(--accent); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ── Certificate document link ──────────────── */
.cert-document--link {
  text-decoration: none;
  cursor: pointer;
  justify-content: space-between;
  transition: var(--transition);
  border-color: var(--steel);
}

.cert-document--link:hover {
  background: #f0f5fa;
  border-color: var(--accent);
}

.cert-document--link strong {
  display: block;
  font-size: 0.88rem;
  color: var(--navy);
  margin-bottom: 0.15rem;
}

.cert-document--link span {
  font-size: 0.78rem;
  color: var(--steel);
  font-style: normal;
}

.cert-arrow {
  width: 18px;
  height: 18px;
  stroke: var(--steel);
  flex-shrink: 0;
  align-self: center;
  transition: var(--transition);
}

.cert-document--link:hover .cert-arrow {
  stroke: var(--accent);
}

/* ── Footer ─────────────────────────────────── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  margin-top: auto;
}

.footer-main {
  padding: 4rem 0 3rem;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr;
  gap: 2.5rem;
}

.footer-logo-link { display: block; line-height: 0; margin-bottom: 1rem; }
.footer-logo-link picture { display: block; }
.footer-logo-img {
  width: 140px;
  height: auto;
  max-height: 50px;
  object-fit: contain;
}

.footer-brand p {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  max-width: 280px;
  line-height: 1.6;
}

.footer-social { display: flex; gap: 0.6rem; margin-top: 1.2rem; }

.footer-col-heading {
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 0.92rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--accent); }

.footer-contact-item { display: flex; gap: 0.7rem; align-items: flex-start; margin-bottom: 0.9rem; }
.footer-contact-item svg { width: 16px; height: 16px; fill: var(--accent); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item a,
.footer-contact-item p { color: rgba(255,255,255,0.65); font-size: 0.88rem; line-height: 1.5; }
.footer-contact-item a:hover { color: var(--accent); }
.footer-contact-item [data-e] { color: rgba(255,255,255,0.65); font-size: 0.88rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.2rem 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

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

.team-card {
  background: var(--white);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--border);
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(13,27,42,0.13);
}

.team-card--featured { border-top-color: var(--accent); }

.team-avatar {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--accent);
  letter-spacing: 0.04em;
}

.team-card--featured .team-avatar {
  width: 54px;
  height: 54px;
  min-width: 54px;
  font-size: 1rem;
  border: 2px solid var(--accent);
}

.team-info h3 {
  font-size: 1.1rem;
  margin-bottom: 0.15rem;
  color: var(--navy);
}

.team-title {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.team-info p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* ── Mission & Vision ───────────────────────── */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.mv-card {
  border-radius: 10px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.mv-card--mission { background: var(--navy); color: var(--white); }
.mv-card--vision  { background: var(--accent); color: var(--navy); }

.mv-card--mission .section-label { color: var(--accent); }
.mv-card--vision  .section-label { color: var(--navy); opacity: 0.7; }

.mv-card h2 { color: inherit; margin-bottom: 1rem; }

.mv-card p {
  color: inherit;
  opacity: 0.85;
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
}

.mv-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 1.5rem;
  opacity: 0.4;
}
.mv-icon svg { width: 100%; height: 100%; stroke: currentColor; }

/* ── Certifications ─────────────────────────── */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.cert-card {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--border);
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.cert-card--active  { border-top-color: var(--accent); }
.cert-card--pending { border-top-color: var(--steel); }

.cert-badge {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-card--pending .cert-badge { background: var(--steel); }

.cert-badge svg { width: 22px; height: 22px; stroke: var(--accent); }
.cert-card--pending .cert-badge svg { stroke: var(--white); }

.cert-info h3 { font-size: 1.15rem; margin-bottom: 0.3rem; color: var(--navy); }

.cert-status {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  margin-bottom: 0.8rem;
}

.cert-status--active  { background: #e6f4ea; color: #1b5e32; }
.cert-status--pending { background: #e8f0f8; color: var(--steel); }

.cert-info p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

.cert-document {
  margin-top: 1rem;
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-light);
  font-size: 0.82rem;
  font-style: italic;
}

.cert-document svg { width: 20px; height: 20px; stroke: var(--text-light); flex-shrink: 0; }

/* ── Quality Policy ─────────────────────────── */
.quality-policy-wrap {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

.quality-policy-intro h2 { margin-bottom: 1rem; }
.quality-policy-intro p  { color: var(--text-light); }

.policy-items { display: flex; flex-direction: column; gap: 1.5rem; }

.policy-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.policy-item:last-child { border-bottom: none; padding-bottom: 0; }

.policy-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.policy-icon svg { width: 20px; height: 20px; stroke: var(--accent); }

.policy-item h4 { margin-bottom: 0.3rem; color: var(--navy); }
.policy-item p  { font-size: 0.92rem; color: var(--text-light); margin: 0; }

/* ── Guiding Principles ─────────────────────── */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.principle-card {
  background: var(--white);
  border-radius: 8px;
  padding: 1.8rem 1.5rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.principle-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.principle-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--navy); }
.principle-card p  { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; margin: 0; }

/* ── Responsive ─────────────────────────────── */
@media (max-width: 1024px) {
  .highlights-grid  { grid-template-columns: repeat(2, 1fr); }
  .cap-grid         { grid-template-columns: repeat(2, 1fr); }
  .footer-main      { grid-template-columns: 1fr 1fr; }
  .specs-grid       { grid-template-columns: repeat(3, 1fr); }
  .principles-grid  { grid-template-columns: repeat(2, 1fr); }
  .cert-grid        { grid-template-columns: repeat(2, 1fr); }
  .team-grid        { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 810px) {
  /* Topbar: collapse all text, show icons only — single line guaranteed */
  .topbar .topbar-text    { display: none; }
  .topbar-contacts        { gap: 0.8rem; }
  .topbar-contacts svg    { width: 18px; height: 18px; }
  .iso-badge .badge-full  { display: none; }
  .iso-badge .badge-short { display: inline; }
}

@media (max-width: 768px) {
  html { font-size: 17px; }
  .section { padding: 3.5rem 0; }

  .menu-toggle { display: flex; position: absolute; right: 25px; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    border-top: 2px solid var(--accent);
    box-shadow: 0 8px 24px rgba(13,27,42,0.12);
    gap: 0.2rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a    { font-size: 1.2rem; padding: 0.7rem 0.5rem; }
  .nav-cta { margin-left: 0; margin-top: 0.5rem; }
  .nav-cta .btn   { width: 100%; text-align: center; display: block; }

  .hero-inner       { grid-template-columns: 1fr; display: flex; flex-direction: column; }
  .hero-image-panel { width: 100%; margin-bottom: 3rem; }
  .hero             { padding: 4rem 0 3rem; }
  .hero-stats       { grid-template-columns: repeat(2, 1fr); }
  .hero-image-panel picture,
  .hero-image-panel img { height: auto; aspect-ratio: 16 / 9; border-radius: 8px; }
  .hero-desc        { margin-bottom: 0; }

  .highlights-grid  { grid-template-columns: 1fr 1fr; }
  .highlight-item   { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .highlight-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }

  .about-grid       { grid-template-columns: 1fr; gap: 2rem; }
  .cap-grid         { grid-template-columns: 1fr; }
  .specs-grid       { grid-template-columns: repeat(2, 1fr); }
  .contact-grid     { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row         { grid-template-columns: 1fr; }

  .footer-main      { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 0 2rem; }
  .footer-bottom .container { flex-direction: column; text-align: center; }

  .cta-actions      { flex-direction: column; align-items: center; }
  .map-wrap         { aspect-ratio: 4 / 3; }

  .mv-grid             { grid-template-columns: 1fr; }
  .cert-grid           { grid-template-columns: 1fr; }
  .quality-policy-wrap { grid-template-columns: 1fr; gap: 2rem; }
  .principles-grid     { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .highlights-grid  { grid-template-columns: 1fr; }
  .highlight-item   { border-right: none !important; }
  .hero-stats       { grid-template-columns: 1fr 1fr; }
  .specs-grid       { grid-template-columns: 1fr; }
  .principles-grid  { grid-template-columns: 1fr; }
  .team-grid        { grid-template-columns: 1fr; }
  .iso-badge .badge-short { font-size: 0.68rem; }
}

/* ── Accessibility ──────────────────────────── */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  top: -50px;
  left: 1rem;
  background: var(--accent);
  color: var(--navy);
  padding: 0.5rem 1rem;
  font-weight: 700;
  border-radius: var(--radius);
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0.5rem; }