
/* Basic layout */
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #111827;
  background-color: #f9fafb;
}

html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}

header {
  flex-shrink: 0;
}

footer {
  margin-top: auto;
}

a { color: #ef4444; text-decoration: none; }
a:hover { text-decoration: underline; }

.topbar {
  background: #111827;
  color: #e5e7eb;
  font-size: 0.8rem;
}
.topbar-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.35rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.topbar a { color: #e5e7eb; }
.icon { margin-right: 0.25rem; }

header {
  background: #111827;
  color: #f9fafb;
  position: sticky;
  top: 0;
  z-index: 40;
}
.nav-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: linear-gradient(135deg,#f97316,#ef4444);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #111827;
}
.logo-text-main {
  font-weight: 700;
  font-size: 1rem;
}
.logo-text-sub {
  font-size: 0.75rem;
  color: #9ca3af;
}
.nav-links {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
}
.nav-links a {
  color: #e5e7eb;
  padding: 0.35rem 0.5rem;
  border-radius: 999px;
}
.nav-links a:hover {
  background: rgba(249,115,22,0.15);
}
.nav-toggle {
  display: none;
  cursor: pointer;
}

/* Hero */
.hero {
  background: radial-gradient(circle at top left,#fee2e2,#f9fafb);
  padding: 2.5rem 1rem 2.75rem;
}
.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: #b91c1c;
  margin-bottom: 0.75rem;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ef4444;
}
h1 {
  font-size: 2.1rem;
  line-height: 1.15;
  margin: 0 0 0.75rem;
}
.highlight {
  color: #b91c1c;
}
.hero-subtitle {
  font-size: 0.98rem;
  color: #4b5563;
  max-width: 38rem;
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
  align-items: center;
}
.btn-primary {
  border: none;
  outline: none;
  cursor: pointer;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(135deg,#f97316,#ef4444);
  color: #111827;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.hero-secondary {
  font-size: 0.9rem;
  color: #991b1b;
  font-weight: 500;
}
.hero-meta {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 0.75rem;
  font-size: 0.85rem;
  color: #374151;
}
.hero-card {
  background: #111827;
  color: #e5e7eb;
  padding: 1.4rem;
  border-radius: 1.2rem;
  box-shadow: 0 18px 40px rgba(15,23,42,0.35);
}
.hero-card h3 {
  margin-top: 0;
  font-size: 1rem;
}
.hero-spec-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.hero-spec-label {
  font-size: 0.75rem;
  color: #9ca3af;
}
.hero-spec-value {
  font-size: 0.9rem;
  font-weight: 600;
}
.hero-card-footer {
  margin-top: 3rem;
  background: #111827;
  font-size: 0.8rem;
  color: #e5e7eb;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: space-between;
  align-items: center;
}

/* Sections */
/* Sections */
.section-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2.5rem 1rem;
}
.section-header {
  margin-bottom: 1.5rem;
}
.section-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #b91c1c;
  margin-bottom: 0.4rem;
}
.section-title {
  font-size: 1.6rem;
  margin: 0 0 0.4rem;
}
.section-subtitle {
  font-size: 0.95rem;
  color: #4b5563;
  max-width: 40rem;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0,1.4fr) minmax(0,1fr);
  gap: 2rem;
  align-items: center;
}
.about-text p {
  font-size: 0.95rem;
  color: #374151;
}
.about-list {
  margin-top: 0.6rem;
  display: grid;
  gap: 0.25rem;
  font-size: 0.9rem;
}
.bullet {
  margin-right: 0.4rem;
  color: #b91c1c;
}
.about-image {
  min-height: 220px;
  border-radius: 1.25rem;
  position: relative;
  overflow: hidden;
  background: #020617;
}
.about-image::after {
  content: none;
}

/* Cards & grids */
.industry-grid, .location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
  gap: 1rem;
}
.industry-card, .location-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.2rem;
  box-shadow: 0 10px 25px rgba(15,23,42,0.06);
  font-size: 0.9rem;
}
.industry-card h3, .location-card h2 {
  margin-top: 0;
  font-size: 1rem;
}
.location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.4rem;
}
.location-tag {
  background: #fee2e2;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  font-size: 0.8rem;
}

/* Range & tables */
.range-grid {
  display: grid;
  grid-template-columns: minmax(0,1.5fr) minmax(0,1fr);
  gap: 1.5rem;
}
.range-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  background: #ffffff;
  border-radius: 0.9rem;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(15,23,42,0.06);
}
.range-table th,
.range-table td {
  padding: 0.55rem 0.7rem;
  border-bottom: 1px solid #e5e7eb;
}
.range-table thead th {
  background: #111827;
  color: #e5e7eb;
  font-weight: 500;
}
.range-table tbody tr:nth-child(even) {
  background: #f9fafb;
}
.range-note {
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 0.4rem;
}
.range-features {
  font-size: 0.9rem;
  color: #374151;
}

/* Advice & FAQ */
.advice-layout, .faq-grid, .contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 1.2rem;
}
.advice-card, .faq-item {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1rem 1.1rem;
  box-shadow: 0 10px 25px rgba(15,23,42,0.06);
  font-size: 0.9rem;
}
.faq-q {
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.faq-a {
  font-size: 0.88rem;
  color: #374151;
}
.faq-note {
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 0.6rem;
}

/* Forms */
form {
  background: #ffffff;
  padding: 1.1rem;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(15,23,42,0.06);
}
.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(160px,1fr));
  gap: 0.75rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-bottom: 0.6rem;
}
label {
  font-size: 0.8rem;
  color: #4b5563;
}
input, textarea {
  border-radius: 0.5rem;
  border: 1px solid #d1d5db;
  padding: 0.4rem 0.5rem;
  font-family: inherit;
  font-size: 0.9rem;
}
textarea {
  min-height: 110px;
  resize: vertical;
}
.contact-info {
  font-size: 0.9rem;
  color: #374151;
}
.contact-info-block {
  background: #111827;
  color: #e5e7eb;
  padding: 0.8rem 1rem;
  border-radius: 0.9rem;
  margin-bottom: 0.7rem;
  font-size: 0.85rem;
}

/* Footer */
footer {
  background: #111827;
  color: #9ca3af;
  font-size: 0.8rem;
}
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: space-between;
  align-items: center;
}
footer a { color: #e5e7eb; }

/* Responsive */
@media (max-width: 768px) {
  .hero-inner, .about-grid, .range-grid {
    grid-template-columns: minmax(0,1fr);
  }
  .nav-links {
    display: none;
    flex-direction: column;
    background: #111827;
    position: absolute;
    top: 52px;
    right: 0;
    left: 0;
    padding: 0.75rem 1rem 1rem;
  }
  .nav-links.show { display: flex; }
  .nav-toggle { display: block; color: #f9fafb; }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* Product image card for individual product pages */
.product-image-card {
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, #0f172a, #1f2937);
  color: #f9fafb;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.35);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.product-image-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(248, 250, 252, 0.16);
}

.product-image-kw {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.product-image-sub {
  font-size: 0.85rem;
  opacity: 0.95;
}

.product-image-note {
  font-size: 0.7rem;
  color: #6b7280;
  margin: 0 0 0.75rem 0;
}


/* Product image wrapper */
.product-image-wrapper {
  border-radius: 1rem;
  overflow: hidden;
  background: #020617;
  padding: 0.4rem;
  margin-bottom: 0.75rem;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.35);
}

.product-image-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.9rem;
}


.about-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
