
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #1f2933;
  background: #f5f7fa;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

header, main, footer {
  width: 100%;
}

.top-bar {
  background: #111827;
  color: #e5e7eb;
  font-size: 13px;
}

.inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.top-bar .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  flex-wrap: wrap;
  gap: 8px;
}

.top-right span + span {
  margin-left: 10px;
}

.hero {
  background: linear-gradient(120deg, #111827, #0f766e);
  color: #f9fafb;
}

.hero-inner {
  padding: 36px 0 32px;
}

.hero h1 {
  font-size: 26px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 14px;
  max-width: 720px;
}

/* Sections */

section {
  padding: 32px 0;
}

section.alt {
  background: #ffffff;
}

section .inner h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

section .inner p {
  font-size: 14px;
  color: #4b5563;
  margin-bottom: 10px;
}

section .inner ul {
  margin-left: 18px;
  font-size: 14px;
  color: #374151;
}

section .inner ul li {
  margin-bottom: 6px;
}

/* Form */

.quote-form input,
.quote-form select {
  width: 100%;
  margin-bottom: 8px;
  padding: 8px 10px;
  border-radius: 6px;
  border: 1px solid #d1d5db;
  font-size: 14px;
}

.quote-form button {
  padding: 10px 16px;
  border-radius: 999px;
  border: none;
  background: #0f766e;
  color: #f9fafb;
  font-weight: 600;
  cursor: pointer;
}

.quote-form button:hover {
  background: #115e59;
}

/* Footer */

footer {
  background: #111827;
  color: #e5e7eb;
  font-size: 13px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0 14px;
  flex-wrap: wrap;
}

.footer-inner h3 {
  font-size: 14px;
  margin-bottom: 6px;
}

.footer-inner p + p {
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid #1f2937;
  text-align: center;
  padding: 8px 0;
}

@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
  }
}

/* Main navigation for core & location pages */
.main-nav {
  background: #0b1120;
  color: #e5e7eb;
  border-bottom: 1px solid #1f2937;
}

.main-nav .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.main-nav .logo {
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  color: #f9fafb;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 16px;
}

.main-nav a {
  text-decoration: none;
  color: #e5e7eb;
  font-size: 14px;
}

.main-nav a:hover {
  color: #a5b4fc;
}

/* FAQ styles */
.faq-list details {
  margin-bottom: 10px;
  border-radius: 6px;
  border: 1px solid #d1d5db;
  padding: 8px 10px;
  background: #ffffff;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
}

/* Locations page layout */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.location-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 14px 16px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.12);
  border: 1px solid #e5e7eb;
}

.location-card h3 {
  font-size: 16px;
  margin-bottom: 4px;
}

.location-card p {
  font-size: 13px;
  margin-bottom: 8px;
  color: #4b5563;
}

.location-list {
  list-style: none;
  max-height: 220px;
  overflow-y: auto;
  padding-right: 4px;
}

.location-list li {
  font-size: 13px;
  margin-bottom: 4px;
}

.location-list a {
  text-decoration: none;
  border-bottom: 1px dashed transparent;
}

.location-list a:hover {
  border-bottom-color: #0f766e;
}

/* Product hero image on location pages */
.product-hero {
  background: #f9fafb;
}

.product-hero-inner {
  padding: 24px 0 8px;
  display: flex;
  justify-content: center;
}

.product-hero-img {
  max-width: 360px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 12px 25px rgba(15, 23, 42, 0.35);
  border: 1px solid #e5e7eb;
}

/* Home page layout refinements */
.home-intro {
  background: #f9fafb;
  padding-top: 24px;
  padding-bottom: 32px;
}

.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

@media (max-width: 900px) {
  .home-hero-grid {
    grid-template-columns: 1fr;
  }
}

.home-hero-copy h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.home-hero-copy p {
  margin-bottom: 12px;
}

.home-bullets {
  list-style: disc;
  padding-left: 20px;
}

.home-hero-image {
  display: flex;
  justify-content: center;
}

.home-hero-img {
  max-width: 360px;
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.35);
  border: 1px solid #e5e7eb;
}

/* Range band */
.home-range-band {
  background: linear-gradient(135deg, #031b4e, #065f46);
  color: #e5e7eb;
  padding: 28px 0 30px;
}

.home-range-heading {
  text-align: center;
  margin-bottom: 12px;
}

.home-range-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 10px;
}

.home-range-pills span {
  border-radius: 9999px;
  border: 1px solid rgba(209, 213, 219, 0.8);
  padding: 4px 10px;
  font-size: 13px;
}

.home-range-text {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  font-size: 14px;
}

/* CTA grid */
.home-cta {
  background: #f3f4f6;
  padding-top: 28px;
  padding-bottom: 32px;
}

.home-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: flex-start;
}

@media (max-width: 900px) {
  .home-cta-grid {
    grid-template-columns: 1fr;
  }
}

/* Industries page layout */
.industries-hero {
  background: #f9fafb;
  padding-top: 24px;
  padding-bottom: 24px;
}

.industries-hero p {
  max-width: 720px;
}

.industries-grid-section {
  padding-top: 10px;
  padding-bottom: 20px;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.industry-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
  border: 1px solid #e5e7eb;
}

.industry-card h3 {
  margin-bottom: 6px;
}

.industry-card p {
  font-size: 14px;
  color: #4b5563;
  margin-bottom: 6px;
}

.industry-card ul {
  padding-left: 18px;
  font-size: 14px;
}

.industries-cta {
  background: #f3f4f6;
  padding-top: 26px;
  padding-bottom: 26px;
}

.industries-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 9999px;
  background: #0f766e;
  color: #ecfdf5;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.btn-primary:hover {
  background: #115e59;
}
