/* ========================================
   MARINE DETAILING — PART 2
   Salt, Gelcoat, Process, Pricing, FAQ
   ======================================== */

/* ---- SALT WATER SECTION ---- */
.mh-salt-section { background: var(--navy); padding: 88px 48px; }
.mh-salt-section .section-label { color: var(--teal); }
.mh-salt-section .section-heading { color: var(--sand); }

.mh-salt-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: -24px;
}

.mh-salt-item {
  padding: 32px 0;
  border-bottom: 1px solid rgba(244, 238, 224, 0.08);
  padding-right: 48px;
}

.mh-salt-item:nth-child(odd) {
  border-right: 1px solid rgba(244, 238, 224, 0.08);
  padding-right: 48px;
}

.mh-salt-item:nth-last-child(-n+2) { border-bottom: none; }
.mh-salt-item:nth-child(even) { padding-left: 48px; }

.mh-salt-icon {
  width: 40px;
  height: 40px;
  background: rgba(0, 194, 184, 0.08);
  border: 1px solid rgba(0, 194, 184, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.mh-salt-item h3 {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--sand);
  margin-bottom: 8px;
}

.mh-salt-item p {
  font-size: 14px;
  color: rgba(244, 238, 224, 0.55);
  line-height: 1.65;
}

/* ---- GEL COAT SECTION ---- */
.mh-gelcoat-section { background: var(--bg-alt); padding: 88px 48px; }

.mh-gelcoat-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.mh-gelcoat-text .section-label { color: var(--teal); }
.mh-gelcoat-text .section-heading { color: var(--navy); margin-bottom: 20px; }

.mh-gelcoat-body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.mh-gelcoat-facts { display: flex; flex-direction: column; gap: 14px; }

.mh-gelcoat-fact { display: flex; gap: 14px; align-items: flex-start; }

.mh-fact-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0, 194, 184, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.mh-fact-dot span {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
}

.mh-gelcoat-fact p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

.mh-gelcoat-visual {
  background: var(--navy);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid rgba(0, 194, 184, 0.15);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mh-gelcoat-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(244, 238, 224, 0.08);
}

.mh-gelcoat-card:last-child { padding-bottom: 0; border-bottom: none; }

.mh-gelcoat-card-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  opacity: 0.7;
}

.mh-gelcoat-card h4 {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--sand);
}

.mh-gelcoat-card p {
  font-size: 13px;
  color: rgba(244, 238, 224, 0.5);
  line-height: 1.6;
}

/* ---- PROCESS ---- */
.mh-process-section { background: var(--bg); padding: 88px 48px; }

.mh-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(7, 26, 46, 0.1);
  margin-bottom: 32px;
}

.mh-process-step {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px 24px 32px 0;
  border-right: 1px solid rgba(7, 26, 46, 0.1);
  padding-right: 32px;
}

.mh-process-step:nth-child(3n) { border-right: none; padding-right: 0; }
.mh-process-step:nth-child(3n - 1) { padding-left: 32px; }
.mh-process-step:nth-child(3n - 2) { padding-left: 32px; }

.mh-process-num {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.1em;
  opacity: 0.6;
}

.mh-process-step h3 {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}

.mh-process-step p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

.mh-process-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ---- PRICING ---- */
.mh-pricing-section { background: var(--bg-alt); padding: 88px 48px; }

.mh-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.mh-tier-card {
  background: var(--white);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1.5px solid rgba(7, 26, 46, 0.1);
}

.mh-tier-card--featured { border-color: rgba(0, 80, 160, 0.25); }

.mh-tier-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  width: fit-content;
  background: rgba(0, 80, 160, 0.08);
  color: #0050A0;
}

.mh-tier-badge--teal { background: rgba(0, 194, 184, 0.1); color: #00A89E; }
.mh-tier-badge--purple { background: rgba(90, 30, 160, 0.08); color: #5A1EA0; }

.mh-tier-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
}

.mh-tier-price {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.mh-tier-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

.mh-tier-features { list-style: none; display: flex; flex-direction: column; gap: 6px; }

.mh-tier-features li {
  font-size: 12px;
  color: var(--text-muted);
  padding-left: 14px;
  position: relative;
}

.mh-tier-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 1.5px;
  background: var(--teal);
  border-radius: 1px;
}

.mh-tier-cta {
  display: block;
  text-align: center;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  background: var(--navy);
  color: var(--sand);
  transition: background 0.2s ease, transform 0.15s ease;
  margin-top: 8px;
}

.mh-tier-cta:hover { background: var(--teal); color: var(--navy); transform: translateY(-1px); }
.mh-tier-cta--teal { background: var(--teal); color: var(--navy); }
.mh-tier-cta--teal:hover { background: #00e2ce; }
.mh-pricing-note { font-size: 13px; color: var(--text-muted); font-style: italic; }

/* ---- COVERAGE ---- */
.mh-coverage-section { background: var(--navy); padding: 88px 48px; }
.mh-coverage-section .section-label { color: var(--teal); }
.mh-coverage-section .section-heading { color: var(--sand); margin-bottom: 48px; }

.mh-coverage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.mh-county-card { display: flex; flex-direction: column; gap: 10px; }

.mh-county-name {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--sand);
}

.mh-county-detail { font-size: 13px; color: rgba(244, 238, 224, 0.5); line-height: 1.5; }

.mh-county-stars { display: flex; gap: 2px; margin-top: 4px; }
.mh-star { color: var(--teal); font-size: 12px; }
.mh-coverage-note { font-size: 14px; color: rgba(244, 238, 224, 0.4); font-style: italic; }

/* ---- FAQ ---- */
.mh-faq-section { background: var(--bg); padding: 88px 48px; }

.mh-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: -24px;
}

.mh-faq-item {
  padding: 32px 0;
  border-bottom: 1px solid rgba(7, 26, 46, 0.08);
  padding-right: 48px;
}

.mh-faq-item:nth-child(odd) {
  padding-right: 48px;
  border-right: 1px solid rgba(7, 26, 46, 0.08);
}

.mh-faq-item:nth-child(even) { padding-left: 48px; }
.mh-faq-item:nth-last-child(-n+2) { border-bottom: none; }

.mh-faq-item h3 {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.mh-faq-item p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ---- CTA ---- */
.mh-cta-section {
  background: var(--bg-alt);
  padding: 96px 48px;
  text-align: center;
}

.mh-cta-inner {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.mh-cta-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.mh-cta-sub { font-size: 16px; color: var(--text-muted); line-height: 1.65; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .mh-salt-grid { grid-template-columns: 1fr; }
  .mh-salt-item { padding-right: 0; border-right: none; }
  .mh-salt-item:nth-child(odd) { padding-right: 0; }
  .mh-salt-item:nth-child(even) { padding-left: 0; }
  .mh-salt-item:nth-last-child(-n+2) { border-bottom: 1px solid rgba(244, 238, 224, 0.08); }
  .mh-salt-item:last-child { border-bottom: none; }
  .mh-gelcoat-inner { grid-template-columns: 1fr; gap: 48px; }
  .mh-process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    border-top: none;
  }
  .mh-process-step { border-right: none; padding: 0; border-bottom: 1px solid rgba(7, 26, 46, 0.08); padding-bottom: 24px; }
  .mh-process-step:nth-child(3n), .mh-process-step:nth-child(3n - 1), .mh-process-step:nth-child(3n - 2) { padding-left: 0; padding-right: 0; }
  .mh-process-step:last-child, .mh-process-step:nth-last-child(2) { border-bottom: none; padding-bottom: 0; }
  .mh-pricing-grid { grid-template-columns: 1fr; gap: 16px; }
  .mh-faq-grid { grid-template-columns: 1fr; }
  .mh-faq-item { padding-right: 0; border-right: none; padding-left: 0; }
  .mh-faq-item:nth-child(even) { padding-left: 0; }
  .mh-coverage-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 768px) {
  .mh-salt-section,
  .mh-gelcoat-section,
  .mh-process-section,
  .mh-pricing-section,
  .mh-faq-section,
  .mh-cta-section { padding: 56px 24px; }
  .mh-coverage-grid { grid-template-columns: 1fr; gap: 20px; }
  .mh-cta-section { padding: 64px 24px; }
}