/* ============================================================
   global.css — All styles for sandwichpanelprice.com
   All 4 pages link only this one file.
   Sections:
   01. Reset & CSS Variables
   02. Base / Typography
   03. Shared Components
   04. Page Hero Shell
   05. HOME PAGE
   06. ABOUT PAGE
   07. PRODUCTS PAGE
   08. CONTACT PAGE
   09. Responsive
   ============================================================ */


/* ============================================================
   01. RESET & CSS VARIABLES
   ============================================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --steel:        #1a2332;
  --steel-mid:    #243044;
  --steel-light:  #2e3d54;
  --accent:       #e8a020;
  --accent-light: #f5b840;
  --rust:         #c0392b;
  --white:        #f5f0e8;
  --off-white:    #ede8de;
  --muted:        #8a9ab0;
  --border:       rgba(255, 255, 255, 0.08);
  --section-pad:  clamp(60px, 8vw, 110px);
  --max-width:    1200px;
  --side-pad:     clamp(20px, 5vw, 80px);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Barlow', sans-serif;
  background: var(--steel);
  color: var(--white);
  overflow-x: hidden;
  padding-top: 72px;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}


/* ============================================================
   02. BASE / TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4, h5 {
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  line-height: 1.1;
}

h2.section-heading {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  margin-bottom: 20px;
}

h2.section-heading span {
  color: var(--accent);
}

.body-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #a8b8cc;
  margin-bottom: 16px;
  font-weight: 300;
}

.body-text p strong {
  color: var(--white);
  font-weight: 600;
}


/* ============================================================
   03. SHARED COMPONENTS
   ============================================================ */

/* ── Section Tag ── */

.section-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}

/* ── Buttons ── */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--steel);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 32px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

.btn-primary svg { width: 16px; height: 16px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid rgba(245, 240, 232, 0.3);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 32px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  cursor: pointer;
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--steel);
  color: var(--accent);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 18px 36px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
  border: none;
  cursor: pointer;
}

.btn-dark:hover { background: var(--steel-light); }

/* ── CTA Banner ── */

.cta-banner {
  padding: 80px var(--side-pad);
  background: var(--accent);
}

.cta-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-banner h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(24px, 3.5vw, 20px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--steel);
  line-height: 1.1;
  /* max-width: 560px; */
}

/* ── Breadcrumb ── */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 13px;
  color: #7a8a9e;
}

.breadcrumb a {
  color: #7a8a9e;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span    { color: var(--accent); }
.breadcrumb svg     { width: 14px; height: 14px; flex-shrink: 0; }

/* ── Feature List ── */

.feature-list { list-style: none; margin-top: 24px; }

.feature-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: #8a9ab0;
  line-height: 1.5;
}

.feature-list li:first-child { border-top: 1px solid var(--border); }

.feature-list li svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--accent);
  margin-top: 2px;
}

/* ── Serve List ── */

.serve-list { list-style: none; margin-top: 28px; }

.serve-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: #8a9ab0;
  line-height: 1.6;
}

.serve-list li:first-child { border-top: 1px solid var(--border); }

.serve-list li svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--accent);
  margin-top: 2px;
}

.serve-list li strong {
  color: var(--white);
  display: block;
  font-size: 14px;
  font-weight: 600;
}

/* ── Trust List ── */

.trust-list { list-style: none; }

.trust-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: #8a9ab0;
  line-height: 1.6;
}

.trust-list li:first-child { border-top: 1px solid var(--border); }

.trust-list li svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--accent);
  margin-top: 2px;
}


/* ============================================================
   04. PAGE HERO SHELL
   (used on About / Products / Contact)
   ============================================================ */

.page-hero {
  position: relative;
  padding: clamp(80px, 12vw, 140px) var(--side-pad);
  overflow: hidden;
}

.page-hero-bg   { position: absolute; inset: 0; }

.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232, 160, 32, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 160, 32, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.page-hero-bar {
  position: absolute;
  top: 0; left: 0;
  width: 6px; height: 100%;
  background: linear-gradient(180deg, var(--accent) 0%, var(--rust) 100%);
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
}

.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
}

.page-hero h1 span { color: var(--accent); }

.page-hero .sub {
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 300;
  color: #a8b8cc;
  margin-top: 20px;
  max-width: 600px;
  line-height: 1.7;
}


/* ============================================================
   05. HOME PAGE
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--steel);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(26, 35, 50, 0.97) 45%, rgba(26, 35, 50, 0.7) 100%),
    url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1600&q=80') center / cover no-repeat;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232, 160, 32, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 160, 32, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-accent-bar {
  position: absolute;
  top: 0; left: 0;
  width: 6px; height: 100%;
  background: linear-gradient(180deg, var(--accent) 0%, var(--rust) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--side-pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--accent);
}

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(38px, 5vw, 45px);
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}

.hero h1 span { display: block; color: var(--accent); }

.hero p {
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 300;
  line-height: 1.7;
  color: #a8b8cc;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual { position: relative; }

.hero-img-frame { position: relative; }

.hero-img-frame::before {
  content: '';
  position: absolute;
  top: -16px; right: -16px;
  width: 100%; height: 100%;
  border: 2px solid var(--accent);
  opacity: 0.4;
  z-index: 0;
}

.hero-img-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: brightness(0.85) saturate(0.9);
}

.hero-stats {
  position: absolute;
  bottom: -24px; left: -24px;
  background: var(--accent);
  padding: 20px 28px;
  z-index: 2;
}

.hero-stats-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--steel);
  line-height: 1;
}

.hero-stats-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--steel);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Trust Bar */

.trust-bar {
  background: var(--steel-light);
  border-top: 1px solid var(--border);
  padding: 32px var(--side-pad);
}

.trust-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item { display: flex; align-items: center; gap: 12px; }

.trust-item svg { color: var(--accent); width: 22px; height: 22px; }

.trust-item span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #8a9ab0;
}

.trust-divider { width: 1px; height: 24px; background: var(--border); }

/* Intro Section */

.section-intro {
  padding: var(--section-pad) var(--side-pad);
  max-width: var(--max-width);
  margin: 0 auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #a8b8cc;
  margin-bottom: 16px;
  font-weight: 300;
}

.intro-img-stack { position: relative; height: 420px; }

.intro-img-stack img {
  position: absolute;
  object-fit: cover;
  filter: brightness(0.8) saturate(0.8);
}

.intro-img-stack img:first-child { width: 75%; height: 70%; top: 0; right: 0; }

.intro-img-stack img:last-child {
  width: 55%; height: 55%;
  bottom: 0; left: 0;
  border: 4px solid var(--steel);
}

.intro-img-badge {
  position: absolute;
  bottom: 40px; right: 0;
  background: var(--steel-mid);
  border-left: 4px solid var(--accent);
  padding: 14px 20px;
  z-index: 2;
}

.intro-img-badge p {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--accent);
  text-transform: uppercase;
}

/* Offer Grid */

.section-offer {
  background: var(--steel-mid);
  padding: var(--section-pad) var(--side-pad);
}

.section-offer-inner { max-width: var(--max-width); margin: 0 auto; }

.offer-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 40px;
  flex-wrap: wrap;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2px;
  background: rgba(255, 255, 255, 0.05);
}

.offer-card {
  background: var(--steel-mid);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
  cursor: pointer;
}

.offer-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--accent);
  transition: width 0.3s;
}

.offer-card:hover                { background: var(--steel-light); }
.offer-card:hover::after         { width: 100%; }

.offer-icon { width: 48px; height: 48px; margin-bottom: 20px; color: var(--accent); }

.offer-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.offer-card p  { font-size: 14px; color: #7a8a9e; line-height: 1.6; }

.offer-card .tag {
  display: inline-block;
  margin-top: 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
}

/* Why Section */

.section-why {
  padding: var(--section-pad) var(--side-pad);
  max-width: var(--max-width);
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 48px;
}

.why-card {
  padding: 40px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s;
}

.why-card:hover            { border-color: rgba(232, 160, 32, 0.3); }
.why-card:hover .why-num   { color: rgba(232, 160, 32, 0.08); }

.why-num {
  position: absolute;
  top: 20px; right: 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 80px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  transition: color 0.25s;
  user-select: none;
}

.why-icon { width: 40px; height: 40px; margin-bottom: 16px; color: var(--accent); }

.why-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.why-card p { font-size: 15px; color: #8a9ab0; line-height: 1.7; }

/* How It Works */

.section-how { background: var(--steel-mid); padding: var(--section-pad) var(--side-pad); }

.section-how-inner { max-width: var(--max-width); margin: 0 auto; }

.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 48px;
  position: relative;
}

.steps-row::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12.5%;
  width: 75%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, rgba(232, 160, 32, 0.1) 100%);
}

.step { padding: 0 24px; }

.step-num {
  width: 56px; height: 56px;
  background: var(--steel);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.step h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.step p { font-size: 14px; color: #7a8a9e; line-height: 1.6; }


/* ============================================================
   06. ABOUT PAGE
   ============================================================ */

.about-page .page-hero-bg {
  background:
    linear-gradient(135deg, rgba(26, 35, 50, 0.95) 50%, rgba(36, 48, 68, 0.85) 100%),
    url('https://images.unsplash.com/photo-1518709779341-56cf4535e94a?w=1600&q=80') center / cover no-repeat;
}

.about-section {
  padding: var(--section-pad) var(--side-pad);
  max-width: var(--max-width);
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-img-wrap { position: relative; }

.about-img-wrap::before {
  content: '';
  position: absolute;
  top: -12px; left: -12px;
  width: 100%; height: 100%;
  border: 2px solid var(--accent);
  opacity: 0.3;
}

.about-img-wrap img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: brightness(0.8) saturate(0.85);
}

.img-caption {
  background: var(--steel-mid);
  border-left: 4px solid var(--accent);
  padding: 16px 20px;
}

.img-caption p {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--muted);
  text-transform: uppercase;
}

.section-values { background: var(--steel-mid); padding: var(--section-pad) var(--side-pad); }

.section-values-inner { max-width: var(--max-width); margin: 0 auto; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, 0.04);
  margin-top: 48px;
}

.value-card {
  background: var(--steel-mid);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
}

.value-card:hover { background: var(--steel-light); }

.value-card::before {
  content: attr(data-num);
  position: absolute;
  top: 20px; right: 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 80px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
}

.value-card::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  height: 3px; width: 0;
  background: var(--accent);
  transition: width 0.3s;
}

.value-card:hover::after { width: 100%; }

.value-icon { width: 44px; height: 44px; color: var(--accent); margin-bottom: 20px; }

.value-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.value-card p { font-size: 15px; color: #7a8a9e; line-height: 1.7; }

.serve-section {
  padding: var(--section-pad) var(--side-pad);
  max-width: var(--max-width);
  margin: 0 auto;
}

.serve-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.serve-img-wrap { position: relative; height: 480px; }

.serve-img-wrap img {
  position: absolute;
  object-fit: cover;
  filter: brightness(0.8) saturate(0.85);
}

.serve-img-wrap img:first-child { width: 80%; height: 65%; top: 0; left: 0; }

.serve-img-wrap img:last-child {
  width: 60%; height: 60%;
  bottom: 0; right: 0;
  border: 5px solid var(--steel);
}

.section-commit { background: var(--steel-mid); padding: var(--section-pad) var(--side-pad); }

.section-commit-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.cert-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.cert-item {
  background: var(--steel-light);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  padding: 20px;
}

.cert-item h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.cert-item p { font-size: 13px; color: #7a8a9e; }


/* ============================================================
   07. PRODUCTS PAGE
   ============================================================ */

.products-page .page-hero-bg {
  background:
    linear-gradient(135deg, rgba(26, 35, 50, 0.96) 50%, rgba(36, 48, 68, 0.85) 100%),
    url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1600&q=80') center / cover no-repeat;
}

.product-nav {
  background: var(--steel-mid);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}

.product-nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--side-pad);
  display: flex;
  overflow-x: auto;
}

.product-nav-inner::-webkit-scrollbar { display: none; }

.tab-link {
  padding: 18px 24px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.tab-link:hover   { color: var(--white); }
.tab-link.active  { color: var(--accent); border-bottom-color: var(--accent); }

.product-section {
  padding: var(--section-pad) var(--side-pad);
  border-bottom: 1px solid var(--border);
}

.product-section:last-of-type { border-bottom: none; }

.product-section-inner { max-width: var(--max-width); margin: 0 auto; }

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.product-layout.reverse         { direction: rtl; }
.product-layout.reverse > *     { direction: ltr; }

.bg-alt { background: var(--steel-mid); }

.product-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.product-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 20px;
}

.product-title span { color: var(--accent); }

.product-body { font-size: 15px; font-weight: 300; color: #a8b8cc; line-height: 1.8; margin-bottom: 16px; }

.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}

.spec-item {
  background: var(--steel-mid);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  padding: 16px;
  text-align: center;
}

.bg-alt .spec-item { background: var(--steel-light); }

.spec-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.spec-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
}

.btn-quote {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--steel);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 28px;
  text-decoration: none;
  margin-top: 28px;
  transition: background 0.2s;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
}

.btn-quote:hover { background: var(--accent-light); }

/* .product-img-wrap { position: relative; } */

.product-img-wrap::before {
  content: '';
  position: absolute;
  top: -10px; right: -10px;
  width: 100%; height: 100%;
  border: 2px solid var(--accent);
  opacity: 0.25;
}

.product-img-wrap img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  filter: brightness(0.78) saturate(0.85);
}

.product-badge {
  position: absolute;
  bottom: -1px; left: 0;
  background: var(--accent);
  padding: 10px 20px;
  z-index: 2;
}

.product-badge span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--steel);
}

.section-price { background: var(--steel-light); padding: var(--section-pad) var(--side-pad); }

.section-price-inner { max-width: var(--max-width); margin: 0 auto; }

.price-factors {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2px;
  background: rgba(255, 255, 255, 0.04);
  margin-top: 40px;
}

.price-factor { background: var(--steel-light); padding: 32px 28px; transition: background 0.25s; }
.price-factor:hover { background: var(--steel-mid); }

.price-factor h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--accent);
  margin-bottom: 10px;
}

.price-factor p { font-size: 14px; color: #7a8a9e; line-height: 1.6; }

/* ── Single-column product content (paragraphs + table) ── */
.product-content { padding: var(--section-pad) var(--side-pad); }

.product-content-inner { max-width: 880px; margin: 0 auto; }

.product-content h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
  margin: 56px 0 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.product-content h2:first-child { margin-top: 0; }

.product-content p {
  font-size: 16px;
  font-weight: 300;
  color: #a8b8cc;
  line-height: 1.85;
  margin-bottom: 18px;
}

.product-content ul {
  list-style: none;
  margin: 4px 0 18px;
}

.product-content ul li {
  position: relative;
  padding: 9px 0 9px 26px;
  font-size: 16px;
  font-weight: 300;
  color: #a8b8cc;
  line-height: 1.7;
}

.product-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 17px;
  width: 8px;
  height: 8px;
  background: var(--accent);
}

/* ── Inline content image ── */
.content-figure {
  margin: 32px 0 36px;
  position: relative;
}

.content-figure::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--accent);
  opacity: 0.25;
}

.content-figure img {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: brightness(0.82) saturate(0.85);
}

.content-figure figcaption {
  position: relative;
  background: var(--steel-mid);
  border-left: 4px solid var(--accent);
  padding: 12px 18px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
}

/* Two-up image row */
.content-figure-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px 0 36px;
}

.content-figure-row .content-figure { margin: 0; }
.content-figure-row .content-figure img { aspect-ratio: 4 / 3; }

@media (max-width: 700px) {
  .content-figure-row { grid-template-columns: 1fr; }
}

/* ── Technical Specifications table ── */
.spec-table-wrap {
  margin-top: 4px;
  overflow-x: auto;
  border-top: 3px solid var(--accent);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.spec-table thead th {
  background: var(--steel);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  text-align: left;
  padding: 16px;
}

.spec-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.spec-table tbody tr:hover { background: rgba(232, 160, 32, 0.05); }

.spec-table td {
  padding: 14px 16px;
  vertical-align: top;
  line-height: 1.5;
}

.spec-table td.spec-key {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--white);
  width: 48%;
}

.spec-table td.spec-value {
  color: #a8b8cc;
  font-weight: 300;
}

.bg-alt .spec-table thead th { background: var(--steel); }


/* ============================================================
   08. CONTACT PAGE
   ============================================================ */

.contact-page .page-hero-bg {
  background:
    linear-gradient(135deg, rgba(26, 35, 50, 0.97) 55%, rgba(36, 48, 68, 0.88) 100%),
    url('https://images.unsplash.com/photo-1560179707-f14e90ef3623?w=1600&q=80') center / cover no-repeat;
}

.contact-page .page-hero-inner {
  /* display: grid; */
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-steps { margin-top: 36px; }

.hero-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.hero-step:first-child { border-top: 1px solid var(--border); }

.step-dot {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: var(--steel-mid);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--accent);
}

.hero-step h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--white);
  margin-bottom: 4px;
}

.hero-step p { font-size: 13px; color: #7a8a9e; line-height: 1.6; }

.contact-info-cards { display: flex; flex-direction: column; gap: 16px; }

.info-card {
  background: var(--steel-mid);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.info-card svg { flex-shrink: 0; width: 24px; height: 24px; color: var(--accent); margin-top: 2px; }

.info-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.info-card p       { font-size: 16px; font-weight: 600; color: var(--white); }
.info-card p.small { font-size: 13px; font-weight: 300; color: #8a9ab0; margin-top: 4px; }

.contact-main { padding: var(--section-pad) var(--side-pad); }

.contact-main-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  /* display: grid; */
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: start;
}

.inquiry-form { background: var(--steel-mid); padding: 40px; }

.form-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.form-sub { font-size: 13px; color: #7a8a9e; margin-bottom: 32px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }

label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

label .req { color: var(--accent); margin-left: 3px; }

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
  background: var(--steel-light);
  border: 1px solid var(--border);
  border-bottom: 2px solid var(--border);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 400;
  padding: 13px 16px;
  outline: none;
  width: 100%;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

input::placeholder,
textarea::placeholder { color: #4a5a70; }

input:focus,
select:focus,
textarea:focus { border-color: var(--accent); background: #344055; }

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23e8a020' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-color: var(--steel-light);
  padding-right: 40px;
  cursor: pointer;
}

select option { background: var(--steel-mid); }

textarea { resize: vertical; min-height: 100px; }

.btn-submit {
  width: 100%;
  background: var(--accent);
  color: var(--steel);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 18px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-submit:hover { background: var(--accent-light); transform: translateY(-1px); }
.btn-submit svg   { width: 18px; height: 18px; }

.form-note {
  font-size: 12px;
  color: #5a6a7e;
  text-align: center;
  margin-top: 16px;
  line-height: 1.6;
}

.form-success {
  display: none;
  background: var(--steel-mid);
  border-left: 4px solid var(--accent);
  padding: 28px 32px;
  margin-top: 24px;
}

.form-success h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-success p { font-size: 15px; color: #8a9ab0; line-height: 1.7; }

.trust-section { margin-top: 0; }

.sidebar-img-wrap { margin-top: 32px; position: relative; }

.sidebar-img-wrap img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  filter: brightness(0.7) saturate(0.8);
}

.sidebar-img-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(26, 35, 50, 0.9));
  padding: 28px 24px;
}

.sidebar-img-overlay .label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--accent);
  text-transform: uppercase;
}

.sidebar-img-overlay .sublabel { font-size: 13px; color: #a8b8cc; margin-top: 4px; }

.section-faq { background: var(--steel-mid); padding: var(--section-pad) var(--side-pad); }

.section-faq-inner { max-width: var(--max-width); margin: 0 auto; }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(255, 255, 255, 0.04);
  margin-top: 40px;
}

.faq-item {
  background: var(--steel-mid);
  padding: 32px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
  cursor: pointer;
}

.faq-item::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  height: 3px; width: 0;
  background: var(--accent);
  transition: width 0.3s;
}

.faq-item:hover           { background: var(--steel-light); }
.faq-item:hover::after    { width: 100%; }

.faq-q {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.faq-a { font-size: 14px; color: #7a8a9e; line-height: 1.7; }

.map-strip {
  height: 280px;
  background:
    linear-gradient(rgba(26, 35, 50, 0.7), rgba(26, 35, 50, 0.7)),
    url('https://images.unsplash.com/photo-1524661135-423995f22d0b?w=1600&q=80') center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-strip-text { text-align: center; }

.map-strip-text h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.map-strip-text p { font-size: 14px; color: #8a9ab0; }

.map-pin {
  width: 52px; height: 52px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.map-pin svg { width: 26px; height: 26px; color: var(--steel); }


/* ============================================================
   09. RESPONSIVE
   ============================================================ */

@media (max-width: 1000px) {
  .contact-page .page-hero-inner { grid-template-columns: 1fr; }
  .contact-main-inner             { grid-template-columns: 1fr; }
  .faq-grid                       { grid-template-columns: 1fr; }
  .form-row                       { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .hero-inner             { grid-template-columns: 1fr; }
  .hero-visual            { display: none; }
  .intro-grid             { grid-template-columns: 1fr; }
  .intro-img-stack        { height: 280px; }
  .why-grid               { grid-template-columns: 1fr; }
  .steps-row              { grid-template-columns: 1fr 1fr; }
  .steps-row::before      { display: none; }
  .about-grid             { grid-template-columns: 1fr; }
  .values-grid            { grid-template-columns: 1fr; }
  .serve-grid             { grid-template-columns: 1fr; }
  .serve-img-wrap         { height: 280px; }
  .section-commit-inner   { grid-template-columns: 1fr; }
  .product-layout         { grid-template-columns: 1fr; }
  .product-layout.reverse { direction: ltr; }
  .spec-grid              { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .steps-row { grid-template-columns: 1fr; }
}