/* FS Equipment — Shared Styles */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark: #1a1a1e;
  --dark-2: #26262c;
  --dark-3: #2f2f36;
  --orange: #e8620a;
  --orange-light: #f07730;
  --text: #1a1a1e;
  --text-muted: #6b7280;
  --border: #e5e5ea;
  --bg-light: #f7f6f4;
  --white: #ffffff;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { display: block; }

/* ── Test banner ── */
.test-banner {
  background: #f59e0b;
  color: #000;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px;
}

/* ── Top bar ── */
.topbar {
  background: var(--dark);
  color: #aaa;
  font-size: 0.8rem;
  padding: 8px 0;
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar a { color: #ccc; transition: color 0.2s; }
.topbar a:hover { color: var(--orange-light); }
.topbar-left { display: flex; gap: 20px; align-items: center; }

/* ── Header ── */
header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  height: 72px;
}
.logo img { height: 52px; width: auto; }
nav { display: flex; gap: 4px; align-items: center; flex-wrap: wrap; }
nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
nav a:hover { background: var(--bg-light); color: var(--orange); }
nav a.active { color: var(--orange); }
.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 8px 18px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  margin-left: 8px;
}
.nav-cta:hover { background: var(--orange-light) !important; }

/* ── Page hero (inner pages) ── */
.page-hero {
  background: var(--dark);
  color: var(--white);
  padding: 64px 24px;
  background-image: repeating-linear-gradient(
    45deg, transparent, transparent 40px,
    rgba(255,255,255,0.015) 40px, rgba(255,255,255,0.015) 41px
  );
}
.page-hero-inner { max-width: 800px; margin: 0 auto; }
.page-hero .breadcrumb { font-size: 0.8rem; color: #6b7280; margin-bottom: 16px; }
.page-hero .breadcrumb a { color: #9ca3af; }
.page-hero .breadcrumb a:hover { color: var(--orange-light); }
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.15;
}
.page-hero p { font-size: 1.1rem; color: #9ca3af; max-width: 560px; }

/* ── Sections ── */
section { padding: 72px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.15;
}
.section-sub { font-size: 1.05rem; color: var(--text-muted); max-width: 580px; }
.section-head { margin-bottom: 48px; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 8px;
  font-size: 0.925rem;
  font-weight: 600;
  transition: all 0.2s;
  cursor: pointer;
}
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-light); transform: translateY(-1px); }
.btn-outline-dark {
  border: 1.5px solid var(--border);
  color: var(--text);
  background: transparent;
}
.btn-outline-dark:hover { border-color: var(--orange); color: var(--orange); }
.btn-white { background: var(--white); color: var(--orange); font-weight: 700; }
.btn-white:hover { background: #f5f5f5; transform: translateY(-1px); }
.btn-outline-white {
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
  background: transparent;
}
.btn-outline-white:hover { border-color: var(--white); }

/* ── Brands bar ── */
.brands-bar {
  background: var(--bg-light);
  padding: 36px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.brands-inner { max-width: 1100px; margin: 0 auto; }
.brands-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 28px;
}
.brands-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.brands-grid img { height: 44px; width: auto; opacity: 0.7; filter: grayscale(30%); transition: opacity 0.2s, filter 0.2s; }
.brands-grid img:hover { opacity: 1; filter: none; }

/* ── CTA banner ── */
.cta-section {
  background: linear-gradient(135deg, var(--orange) 0%, #c94f05 100%);
  padding: 64px 24px;
}
.cta-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-text h2 { font-size: 1.8rem; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.cta-text p { color: rgba(255,255,255,0.8); font-size: 1rem; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── Footer ── */
footer {
  background: var(--dark);
  color: #9ca3af;
  padding: 64px 24px 32px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo { margin-bottom: 16px; }
.footer-logo img { height: 44px; opacity: 0.85; }
.footer-tagline { font-size: 0.875rem; color: #6b7280; line-height: 1.7; }
footer h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e5e7eb;
  margin-bottom: 16px;
}
footer ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
footer ul li a { font-size: 0.875rem; color: #6b7280; transition: color 0.2s; }
footer ul li a:hover { color: var(--orange-light); }
.footer-contact p { font-size: 0.875rem; color: #6b7280; margin-bottom: 10px; display: flex; gap: 10px; align-items: flex-start; }
.footer-contact a { color: #9ca3af; transition: color 0.2s; }
.footer-contact a:hover { color: var(--orange-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: #4b5563;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .header-inner { height: auto; padding: 14px 20px; flex-wrap: wrap; gap: 12px; }
  nav { gap: 2px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .topbar-inner { flex-direction: column; text-align: center; }
  .cta-inner { flex-direction: column; }
}
