:root {
  --bg: #03111c;
  --bg-2: #071b2b;
  --panel: #0c2233;
  --panel-2: #102a3d;
  --text: #f6f8f9;
  --muted: #b9c6cf;
  --line: rgba(255, 255, 255, .14);
  --accent: #ff7a00;
  --gold: #d99a28;
  --steel: #8fa1ad;
  --shadow: 0 18px 50px rgba(0, 0, 0, .34);
  font-family: "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: radial-gradient(circle at 50% 0, #0f2a40 0, var(--bg) 42%, #020a11 100%);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 78px;
  padding: 0 32px;
  background: rgba(3, 15, 25, .95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 205px; }
.brand--logo { min-width: 0; gap: 0; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 34px;
  border: 2px solid var(--accent);
  color: var(--text);
  font-weight: 900;
  letter-spacing: -1px;
}
.brand strong { display: block; font-size: 22px; line-height: 1; }
.brand-logo { height: 46px; width: auto; max-width: 220px; object-fit: contain; display: block; }
.brand--logo .brand-logo { height: 48px; max-width: 240px; }
.footer-brand.brand--logo .brand-logo { height: 40px; max-width: 200px; }
.brand-text { display: grid; gap: 3px; }
.brand small { display: block; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .8px; margin-top: 3px; }
.main-nav { display: flex; align-items: center; justify-content: flex-end; gap: 16px; width: 100%; font-size: 12px; font-weight: 700; }
.main-nav a { padding: 28px 0; border-bottom: 2px solid transparent; }
.main-nav a.is-active { color: var(--accent); border-color: var(--accent); }
.nav-button {
  padding: 13px 22px !important;
  border-radius: 6px;
  border: 1px solid transparent !important;
  background: var(--accent);
  color: white;
}
.nav-button.whatsapp { background: transparent; color: #5cf08b; border-color: #37c76c !important; }
.nav-toggle { display: none; width: 42px; height: 42px; background: transparent; border: 1px solid var(--line); }
.nav-toggle span { display: block; height: 2px; margin: 7px; background: white; }

.hero {
  position: relative;
  min-height: 595px;
  display: grid;
  align-items: center;
  padding: 72px 42px;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 10, 18, .92) 0%, rgba(2, 10, 18, .7) 36%, rgba(2, 10, 18, .15) 72%, rgba(2, 10, 18, .45) 100%);
}
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-content { position: relative; z-index: 1; max-width: 690px; }
h1, h2, h3 { margin: 0; font-family: "Arial Narrow", Impact, "Roboto Condensed", Arial, sans-serif; text-transform: uppercase; line-height: .96; }
.hero h1 { font-size: clamp(44px, 6.4vw, 88px); max-width: 680px; }
.hero p { max-width: 610px; color: var(--text); font-size: 17px; line-height: 1.65; margin: 24px 0 30px; }
.actions { display: flex; flex-wrap: wrap; gap: 16px; }
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 6px;
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.btn.primary { background: var(--accent); border-color: var(--accent); color: white; }
.btn.ghost, .btn.outline { background: rgba(255,255,255,.04); color: white; }
.btn.dark { background: #06131f; }
.btn.whatsapp { border-color: #37c76c; color: #75f09d; }

.proof-strip {
  max-width: 1320px;
  margin: 0 auto;
  padding: 19px 14px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.proof-strip div, .service-grid div, .service-grid article {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 13px;
  font-weight: 800;
}
.line-icon { color: var(--accent); font-size: 22px; line-height: 1; }

.section { max-width: 1320px; margin: 0 auto; padding: 58px 32px; }
.section.compact { padding-top: 20px; }
.section-heading { display: flex; justify-content: center; align-items: center; margin-bottom: 28px; }
.section-heading.with-link { justify-content: space-between; }
.section-heading h2, .quality-band h2, .process-section h2, .clients-section h2 { font-size: 31px; }
.section-heading h2::first-letter, .quality-band h2::first-letter { color: var(--accent); }
.section-heading a { color: var(--accent); font-size: 13px; font-weight: 900; text-transform: uppercase; }

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}
.category-card, .product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: linear-gradient(180deg, #0d283c 0%, #071927 100%);
  box-shadow: var(--shadow);
}
.category-card img { width: 100%; aspect-ratio: 1.35 / 1; object-fit: cover; }
.category-card div { padding: 18px 16px 20px; }
.category-card h3, .category-card h2 { font-size: 20px; min-height: 42px; }
.category-card p { color: var(--muted); font-size: 14px; line-height: 1.5; }
.category-card a { color: var(--accent); font-size: 12px; font-weight: 900; text-transform: uppercase; }

.industry-row { display: grid; grid-template-columns: repeat(8, 1fr); gap: 8px; }
.industry-tile {
  position: relative;
  min-height: 170px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
}
.industry-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(.62); transition: transform .35s ease; }
.industry-tile:hover img { transform: scale(1.06); }
.industry-tile span {
  position: relative;
  width: 100%;
  padding: 14px 8px;
  background: linear-gradient(180deg, transparent, rgba(3, 15, 25, .92));
}

.workshop-band {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(5, 18, 29, .96), rgba(8, 28, 43, .96)), var(--workshop-bg) left center / cover no-repeat;
}
.workshop-copy { padding: 34px 28px; }
.workshop-copy h2 { font-size: 31px; }
.workshop-copy p { color: var(--muted); line-height: 1.65; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--line);
}
.service-grid div, .service-grid article {
  min-height: 112px;
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  justify-content: center;
  text-align: center;
  flex-direction: column;
}
.service-grid.large { grid-template-columns: repeat(3, 1fr); }
.service-grid.large article { align-items: flex-start; text-align: left; min-height: 180px; background: var(--panel); }
.service-grid.large h2 { font-size: 22px; }
.service-grid.large p { color: var(--muted); line-height: 1.55; margin: 0; }

.product-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.product-card { background: #f3f5f6; color: #081621; }
.product-card img { width: 100%; aspect-ratio: 1.5 / 1; object-fit: cover; background: #d9dee2; }
.product-card div { padding: 16px; }
.product-card h3 { font-family: Arial, Helvetica, sans-serif; text-transform: none; line-height: 1.15; font-size: 17px; }
.product-card p, .product-card small { color: #394b57; font-size: 13px; line-height: 1.45; }
.mini-btn { display: flex; justify-content: center; border: 1px solid #2d3d48; padding: 8px; color: #081621; font-size: 11px; font-weight: 900; text-transform: uppercase; }

.quality-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  padding: 54px 42px;
  margin: 24px auto;
  max-width: 1320px;
  background: linear-gradient(90deg, rgba(5, 17, 28, .96), rgba(10, 31, 47, .78)), var(--quality-bg) center / cover;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.quality-band.standalone { margin-top: 0; }
.quality-band li { margin: 9px 0; color: var(--muted); }
.quality-band li::marker { color: var(--accent); }
.standards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.standards div { padding: 28px 18px; text-align: center; border: 1px solid var(--line); border-radius: 8px; background: rgba(255,255,255,.04); }
.standards strong { display: block; font-size: 40px; font-family: Impact, "Arial Narrow", sans-serif; }
.standards span { color: var(--muted); font-size: 13px; }

.process-section {
  max-width: 1320px;
  margin: 0 auto;
  padding: 36px 32px;
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}
.process-section h2 { grid-column: 1 / -1; }
.process-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.process-row div { position: relative; text-align: center; }
.process-row span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #f6f8f9;
  color: #071927;
  margin: 0 auto 12px;
  font-weight: 900;
}
.process-row p { color: var(--muted); font-size: 13px; line-height: 1.45; }
.process-section aside { padding: 28px; background: var(--accent); border-radius: 8px; display: grid; gap: 12px; align-content: center; }
.process-section aside strong { font-size: 23px; }

.clients-section { max-width: 1320px; margin: 0 auto; padding: 34px 32px; text-align: center; }
.client-logos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  gap: 14px;
  align-items: stretch;
}
.client-logos.blocky { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
.client-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .03);
  transition: border-color .2s ease, background .2s ease;
}
.client-logo-item:hover {
  border-color: rgba(244, 160, 36, .45);
  background: rgba(255, 255, 255, .06);
}
.client-logo-item img {
  max-width: 100%;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.client-logo-fallback {
  color: #aab8c2;
  font-weight: 800;
  font-size: 14px;
  text-align: center;
  line-height: 1.2;
  letter-spacing: .3px;
}

.contact-cta, .page-hero {
  max-width: 1320px;
  margin: 0 auto;
  padding: 58px 32px;
}
.contact-cta { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); }
.contact-cta h2, .page-hero h1 { font-size: clamp(36px, 5vw, 64px); }
.contact-cta p, .page-hero p { color: var(--muted); max-width: 820px; line-height: 1.65; }
.page-hero.slim { padding-top: 80px; padding-bottom: 34px; }
.image-hero { position: relative; min-height: 420px; display: grid; align-items: center; overflow: hidden; }
.image-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(.48); }
.image-hero div { position: relative; max-width: 760px; }

.industry-blocks { display: grid; gap: 18px; }
.industry-block { display: grid; grid-template-columns: 330px 1fr; gap: 26px; padding: 20px; border: 1px solid var(--line); border-radius: 8px; background: var(--panel); }
.industry-block img { width: 100%; height: 100%; min-height: 260px; object-fit: cover; border-radius: 6px; }
.industry-block h2 { font-size: 32px; }
.mini-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 22px 0; }
.mini-columns h3 { font-size: 17px; color: var(--accent); }
.mini-columns p { color: var(--muted); line-height: 1.55; }

.product-detail, .contact-layout, .spec-layout {
  max-width: 1320px;
  margin: 0 auto;
  padding: 72px 32px 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}
.detail-media, .download-panel, .contact-layout aside {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}
.detail-media img { width: 100%; height: 100%; min-height: 430px; object-fit: cover; border-radius: 8px; }
.detail-copy { align-self: center; }
.detail-copy h1 { font-size: clamp(36px, 5vw, 68px); }
.detail-copy p { color: var(--muted); line-height: 1.7; }
.overline { color: var(--accent) !important; font-weight: 900; text-transform: uppercase; }
.spec-table { width: 100%; border-collapse: collapse; background: var(--panel); border: 1px solid var(--line); }
.spec-table th, .spec-table td { padding: 16px; border-bottom: 1px solid var(--line); text-align: left; }
.spec-table th { color: var(--accent); width: 30%; }
.download-panel { padding: 28px; align-self: start; display: grid; gap: 14px; }

.contact-layout aside { padding: 32px; display: grid; gap: 16px; align-content: start; }
.quote-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.quote-form label { display: grid; gap: 8px; color: var(--muted); font-size: 13px; font-weight: 800; text-transform: uppercase; }
.quote-form .span-2 { grid-column: span 2; }
.quote-form input, .quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #081b2a;
  color: white;
  min-height: 46px;
  padding: 12px;
  font: inherit;
}
.flash { grid-column: span 2; padding: 14px 16px; border-radius: 6px; margin-bottom: 16px; }
.flash.success { background: rgba(55, 199, 108, .16); border: 1px solid rgba(55, 199, 108, .45); }
.flash.error { background: rgba(255, 122, 0, .16); border: 1px solid rgba(255, 122, 0, .45); }

.text-page { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.text-page article { background: var(--panel); border: 1px solid var(--line); border-radius: 8px; padding: 26px; }
.text-page p { color: var(--muted); line-height: 1.65; }

.supplier-notice {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px 24px;
}
.supplier-notice-inner {
  padding: 18px 20px;
  border: 1px solid rgba(244, 160, 36, .35);
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  background: rgba(244, 160, 36, .06);
}
.supplier-notice strong {
  display: block;
  font-size: 15px;
  margin-bottom: 8px;
  color: var(--text);
}
.supplier-notice p {
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
}
.supplier-notice a {
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
}
.supplier-notice.is-compact {
  padding-top: 0;
  padding-bottom: 18px;
}
.supplier-notice.is-compact .supplier-notice-inner {
  padding: 12px 16px;
}
.supplier-notice.is-compact strong { margin-bottom: 0; font-size: 14px; }
.supplier-notice.is-compact a { margin-left: 8px; }

.legal-updated {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}
.legal-document {
  max-width: 920px;
  margin: 0 auto;
  padding-top: 0;
}
.legal-document-body {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 32px 36px;
}
.legal-document-body h2 {
  font-size: 20px;
  margin: 28px 0 10px;
  text-transform: none;
}
.legal-document-body h2:first-child { margin-top: 0; }
.legal-document-body p,
.legal-document-body li {
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
}
.legal-document-body ul {
  margin: 0 0 16px;
  padding-left: 22px;
}
.legal-document-body a { color: var(--accent); }

.footer-legal {
  max-width: 1320px;
  margin: 0 auto;
  padding: 18px 32px 0;
  border-top: 1px solid var(--line);
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 10px;
}
.footer-legal-links a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.footer-legal-links a:hover { color: var(--accent); }
.footer-legal p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

/* About page */
.about-page { overflow-x: hidden; }
.about-wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}
.about-wrap-wide {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}
.about-block { padding: 44px 0; }
.about-block .section-heading {
  justify-content: flex-start;
  margin-bottom: 22px;
}

.about-hero {
  padding: 36px 0 28px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
}
.about-hero-inner {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}
.about-hero-media {
  width: 100%;
  height: 260px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}
.about-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-hero-text h1 {
  font-size: clamp(30px, 4.2vw, 52px);
  margin: 0 0 12px;
  line-height: 1.05;
}
.about-intro {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 16px;
  max-width: 600px;
}
.about-tags {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.about-tags li {
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .04);
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
}
.about-hero-actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }

.about-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 140px;
  display: grid;
  place-items: center;
  padding: 16px;
  text-align: center;
  background: linear-gradient(145deg, #123047, #071927);
  color: var(--muted);
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.about-img-placeholder.sm { font-size: 11px; }

.about-form-section { padding: 32px 0; }
.about-form-card {
  padding: 26px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--panel);
}
.about-form-head h2 {
  margin: 0 0 8px;
  font-size: 24px;
  text-transform: uppercase;
}
.about-form-head p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 15px;
}
.about-form-card .quote-form { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }

.about-rows { display: grid; gap: 16px; }
.about-row {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
}
.about-row-reverse { grid-template-columns: minmax(0, 1fr) 280px; }
.about-row-reverse .about-row-media { order: 2; }
.about-row-reverse .about-row-text { order: 1; }
.about-row-media {
  width: 100%;
  height: 190px;
  border-radius: 8px;
  overflow: hidden;
  background: #0d2233;
  flex-shrink: 0;
}
.about-row-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-row-text h3 {
  margin: 0 0 10px;
  font-size: 22px;
  text-transform: uppercase;
  line-height: 1.15;
}
.about-row-text p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 15px;
}
.about-row-text-full { grid-column: 1 / -1; }

.about-values {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.about-value {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  text-align: center;
}
.about-value img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  margin: 0 auto 10px;
  display: block;
}
.about-value-icon {
  display: block;
  font-size: 26px;
  margin-bottom: 8px;
}
.about-value h4 {
  margin: 0 0 6px;
  font-size: 14px;
  text-transform: uppercase;
  line-height: 1.2;
}
.about-value p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}

.about-projects {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.about-project {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: var(--panel);
}
.about-project-media {
  height: 150px;
  overflow: hidden;
  background: #0d2233;
  flex-shrink: 0;
}
.about-project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-project-body { padding: 16px; flex: 1; }
.about-project-body h3 {
  font-size: 17px;
  margin: 4px 0 8px;
  text-transform: none;
  line-height: 1.25;
}
.about-project-body p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.about-page .quality-band.standalone { margin: 0 auto; border-radius: 10px; }
.about-page .clients-section { padding: 36px 32px 24px; max-width: 1320px; margin: 0 auto; }
.about-page .contact-cta { max-width: 1320px; margin: 0 auto; padding-left: 32px; padding-right: 32px; }

.site-footer { margin-top: 40px; background: #020a11; border-top: 2px solid var(--accent); }
.footer-grid {
  max-width: 1320px;
  margin: 0 auto;
  padding: 38px 32px;
  display: grid;
  grid-template-columns: 1.3fr .8fr 1fr 1.1fr;
  gap: 30px;
}
.site-footer p, .site-footer a { display: block; color: var(--muted); line-height: 1.6; font-size: 14px; margin: 7px 0; }
.site-footer h3 { font-size: 18px; }
.copyright { text-align: center; color: var(--muted); border-top: 1px solid var(--line); padding: 16px; font-size: 13px; }

.ai-answer {
  padding: 18px;
  border: 1px solid rgba(55, 199, 108, .35);
  border-radius: 8px;
  background: rgba(55, 199, 108, .1);
  color: var(--text);
  line-height: 1.65;
}

.admin-body { background: #06111d; }
.admin-shell {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 100vh;
}
.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: auto;
  padding: 24px;
  background: #020a11;
  border-right: 1px solid var(--line);
}
.admin-sidebar strong {
  display: block;
  margin-bottom: 20px;
  color: var(--accent);
  font-family: Impact, "Arial Narrow", Arial, sans-serif;
  font-size: 24px;
}
.admin-sidebar a {
  display: block;
  padding: 10px 0;
  color: var(--muted);
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-weight: 800;
  font-size: 13px;
}
.admin-sidebar a:hover { color: var(--text); }
.admin-panel {
  padding: 32px;
  min-width: 0;
}
.admin-panel h1 { font-size: clamp(34px, 5vw, 58px); margin-bottom: 18px; }
.admin-panel h2 { margin: 26px 0 12px; font-size: 24px; }
.admin-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.admin-stats article {
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.admin-stats strong { display: block; font-size: 38px; color: var(--accent); }
.admin-stats span { color: var(--muted); font-weight: 800; text-transform: uppercase; font-size: 12px; }
.admin-note { color: var(--muted); line-height: 1.65; max-width: 900px; }
.admin-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.admin-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  margin-bottom: 24px;
}
.admin-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.admin-form .span-2 { grid-column: span 2; }
.admin-form input,
.admin-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: #081b2a;
  color: var(--text);
  font: inherit;
}
.admin-form label.check {
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: none;
}
.admin-form label.check input { width: auto; min-height: 0; }
.admin-table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  margin-bottom: 22px;
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}
.admin-table th,
.admin-table td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  color: var(--muted);
  font-size: 13px;
}
.admin-table th { color: var(--text); text-transform: uppercase; font-size: 12px; }
.admin-table a { color: var(--accent); font-weight: 900; }
.admin-login {
  max-width: 480px;
  margin: 10vh auto;
}

@media (max-width: 1160px) {
  .main-nav { position: fixed; top: 78px; right: 16px; left: 16px; display: none; flex-direction: column; align-items: stretch; background: #04121e; padding: 18px; border: 1px solid var(--line); border-radius: 8px; }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 12px 0; }
  .nav-toggle { display: block; margin-left: auto; }
  .category-grid, .product-grid { grid-template-columns: repeat(3, 1fr); }
  .industry-row { grid-template-columns: repeat(4, 1fr); }
  .workshop-band, .quality-band, .process-section, .product-detail, .contact-layout, .spec-layout, .admin-shell, .about-hero-inner, .about-row, .about-row-reverse { grid-template-columns: 1fr; }
  .about-row-reverse .about-row-media,
  .about-row-reverse .about-row-text { order: unset; }
  .about-hero-media { max-width: 100%; height: 220px; }
  .about-values, .about-projects { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .admin-sidebar { position: relative; height: auto; }
  .admin-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-row { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .site-header { padding: 0 16px; }
  .brand { min-width: 0; }
  .brand strong { font-size: 18px; }
  .hero { min-height: 600px; padding: 48px 20px; }
  .proof-strip, .category-grid, .product-grid, .industry-row, .service-grid, .service-grid.large, .process-row, .client-logos, .client-logos.blocky, .mini-columns, .footer-grid, .quote-form, .text-page, .admin-form, .admin-stats, .about-values, .about-projects, .about-form-card .quote-form { grid-template-columns: 1fr; }
  .quote-form .span-2 { grid-column: span 1; }
  .industry-block { grid-template-columns: 1fr; }
  .contact-cta { display: grid; gap: 18px; }
  .section, .contact-cta, .page-hero, .product-detail, .contact-layout, .spec-layout, .admin-panel, .about-wrap, .about-wrap-wide, .about-page .contact-cta, .supplier-notice, .legal-document, .footer-legal { padding-left: 18px; padding-right: 18px; }
  .about-row-media { height: 180px; }
  .admin-form .span-2 { grid-column: span 1; }
}
