/* Phillips Diagnostics Services — site styles */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --red: #1c1f24;
  --red-dark: #000000;
  --red-light: #e6e8ec;
  --blue-bright: #4a4f57;
  --blue-soft: #6b7280;
  --accent-red: #B22234;
  --charcoal: #1c1f24;
  --charcoal-soft: #2a2a2a;
  --ink: #1c1f24;
  --ink-soft: #4a4f57;
  --muted: #7a808a;
  --bg: #ffffff;
  --bg-soft: #F4F4F4;
  --bg-tint: #fbf3f4;
  --line: #e6e8ec;
  --shadow: 0 6px 24px rgba(20, 22, 28, 0.08);
  --radius: 10px;
  --max: 1140px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: 'Cormorant Garamond', Georgia, "Times New Roman", serif;
}

h1, h2, h3, h4, h5, h6,
.primary-nav a,
.hero-content h1,
.hero-split-content h1,
.section-title,
.drug-block h2,
.dna-content h2,
.mobile-content h2,
.final-cta h2,
.onsite-title,
.industries-title,
.inquire-title,
.employer-hero-content h1 {
  font-family: var(--font-display);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-dark); text-decoration: underline; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 22px; }
.muted { color: var(--muted); }

/* ===== Top Sticky Banner ===== */
.top-banner {
  background: var(--accent-red); color: #fff;
  font-size: 0.9rem; font-weight: 600;
  position: sticky; top: 0; z-index: 60;
}
.top-banner-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 18px; padding: 9px 22px; flex-wrap: wrap; text-align: center;
}
.top-banner a {
  color: #fff; text-decoration: underline;
  white-space: nowrap;
}
.top-banner a:hover { color: #fff; opacity: 0.9; }
.site-header { top: 38px; }

/* ===== Trust badges row ===== */
.trust-badges {
  background: #fff; padding: 32px 0;
  border-bottom: 1px solid var(--line);
}
.trust-badges-grid {
  display: grid; gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}
.trust-badge {
  display: flex; align-items: center; gap: 14px;
  padding: 8px 12px;
}
.trust-badge svg {
  width: 44px; height: 44px; color: var(--red);
  flex-shrink: 0;
}
.trust-badge strong {
  display: block; font-size: 1.05rem;
  color: var(--ink); margin-bottom: 2px;
}
.trust-badge span {
  display: block; font-size: 0.88rem;
  color: var(--ink-soft);
}
@media (max-width: 760px) {
  .trust-badges-grid { grid-template-columns: 1fr; }
  .top-banner-inner { font-size: 0.82rem; gap: 10px; padding: 8px 14px; }
  .site-header { top: 58px; }
}

/* ===== Header / Nav ===== */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 22px;
  min-height: 70px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  color: var(--ink); text-decoration: none;
}
.brand:hover { text-decoration: none; color: var(--ink); }
.brand-mark {
  height: 70px; width: auto;
  object-fit: contain;
  display: block;
}
.brand-text {
  font-weight: 700; font-size: 1.05rem; line-height: 1.1;
  display: flex; flex-direction: column;
}
.brand-text small {
  font-weight: 500; font-size: 0.72rem;
  color: var(--muted); letter-spacing: 1px; text-transform: uppercase;
}

.primary-nav { display: flex; gap: 22px; align-items: center; }
.primary-nav a {
  color: var(--ink);
  background: transparent;
  text-decoration: none;
  padding: 8px 4px;
  font-weight: 600; font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.15s, border-color 0.15s;
  border-bottom: 2px solid transparent;
}
.primary-nav a:hover {
  color: var(--accent-red);
  text-decoration: none;
}
.primary-nav a.active {
  color: var(--accent-red);
  border-bottom-color: var(--accent-red);
}

.nav-toggle {
  display: none; background: none; border: none;
  width: 40px; height: 40px; cursor: pointer; padding: 8px;
}
.nav-toggle span {
  display: block; height: 2px; background: var(--ink);
  margin: 5px 0; border-radius: 2px;
}

/* ===== Hero Slider ===== */
.hero-slider {
  position: relative;
  height: 540px;
  overflow: hidden;
  background: #111;
}
.slides { position: absolute; inset: 0; }
.slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 0.9s ease-in-out;
  pointer-events: none;
}
.slide.is-active { opacity: 1; pointer-events: auto; }
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(15,15,20,0.78) 0%, rgba(60,60,60,0.55) 100%);
  display: flex; align-items: center;
}
.slide-content { color: #fff; max-width: 900px; }
.slide-content h1 {
  font-size: clamp(2.6rem, 6.2vw, 5rem);
  line-height: 1.05;
  margin: 0 0 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}
.slide-content p {
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  line-height: 1.35;
  margin: 0 0 28px;
  opacity: 0.95;
  font-weight: 600;
}

.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.15); color: #fff;
  border: none; width: 44px; height: 44px; border-radius: 50%;
  font-size: 1.1rem; cursor: pointer;
  display: grid; place-items: center;
  transition: background 0.2s;
}
.slider-arrow:hover { background: rgba(255,255,255,0.3); }
.slider-arrow.prev { left: 18px; }
.slider-arrow.next { right: 18px; }

.slider-dots {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px;
}
.slider-dots button {
  width: 10px; height: 10px; border-radius: 50%; border: none;
  background: rgba(255,255,255,0.5); cursor: pointer; padding: 0;
}
.slider-dots button.is-active { background: var(--red); }

/* ===== Buttons ===== */
.btn {
  display: inline-block; padding: 12px 22px;
  border-radius: 6px; font-weight: 600; font-size: 0.98rem;
  text-decoration: none; cursor: pointer; border: 2px solid transparent;
  transition: all 0.15s;
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); color: #fff; text-decoration: none; }
.btn-ghost { background: transparent; color: #fff; border-color: #fff; }
.btn-ghost:hover { background: #fff; color: var(--red); text-decoration: none; }
.btn-light { background: #fff; color: var(--red); }
.btn-light:hover { background: var(--bg-tint); color: var(--red-dark); text-decoration: none; }
.btn-block { width: 100%; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== Features strip ===== */
.features {
  background: var(--bg-soft);
  padding: 50px 0;
}
.features .container {
  display: grid; gap: 26px;
  grid-template-columns: repeat(3, 1fr);
}
.feature { text-align: center; padding: 14px; }
.feature-icon {
  font-size: 2.2rem; margin-bottom: 8px;
}
.feature h3 { margin: 6px 0 6px; font-size: 1.15rem; }
.feature p { color: var(--ink-soft); margin: 0; }

/* ===== Section: services preview ===== */
.services-preview { padding: 70px 0; }
.section-title {
  text-align: center; margin: 0 0 14px;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.3px;
}
.section-sub {
  text-align: center; color: var(--ink-soft);
  margin: 0 auto 40px; max-width: 760px;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  line-height: 1.4;
}
.card-grid {
  display: grid; gap: 22px;
  grid-template-columns: repeat(3, 1fr);
}
.card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px;
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--red-light); }
.card h3 { margin: 0 0 8px; font-size: 1.15rem; color: var(--ink); }
.card p { margin: 0 0 14px; color: var(--ink-soft); }
.card-link { font-weight: 600; }

/* ===== Pricing cards ===== */
.pricing-card { display: flex; flex-direction: column; }
.pricing-card .price-tag {
  display: inline-block;
  background: var(--red); color: #fff;
  padding: 6px 14px; border-radius: 999px;
  font-weight: 700; font-size: 1.05rem;
  align-self: flex-start;
  margin-bottom: 12px;
}
.pricing-card .btn { margin-top: auto; align-self: flex-start; }

/* ===== CTA band ===== */
.cta-band {
  background: linear-gradient(120deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff;
  padding: 50px 0;
}
.cta-band-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.cta-band h2 { margin: 0 0 4px; font-size: 1.6rem; }
.cta-band p { margin: 0; opacity: 0.92; }

/* ===== Page hero (interior pages) ===== */
.page-hero {
  background: linear-gradient(120deg, #f7f8fa 0%, #eef0f4 100%);
  color: var(--ink);
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  font-size: clamp(2.4rem, 4.8vw, 3.4rem);
  margin: 0 0 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--ink);
}
.page-hero p {
  margin: 0; opacity: 0.85;
  font-size: 1.2rem; font-weight: 500;
  color: var(--ink-soft);
}

/* ===== Content blocks ===== */
.content-block { padding: 70px 0; }
.content-block.alt { background: var(--bg-soft); }
.content-block h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  margin: 0 0 16px;
}
.content-block p { color: var(--ink-soft); }
.narrow { max-width: 800px; }

.two-col {
  display: grid; gap: 36px;
  grid-template-columns: 1.3fr 1fr;
  align-items: start;
}
.info-box {
  background: var(--bg-tint);
  border-left: 4px solid var(--red);
  padding: 22px 24px; border-radius: 6px;
}
.info-box h4 { margin: 0 0 8px; color: var(--red-dark); }
.info-box p { margin: 0; color: var(--ink-soft); }

.check-list { list-style: none; padding: 0; margin: 12px 0 0; }
.check-list li {
  padding: 8px 0 8px 28px; position: relative;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}
.check-list li:before {
  content: "✓"; color: var(--red);
  position: absolute; left: 4px; top: 8px; font-weight: 700;
}

/* ===== FAQ ===== */
.faq {
  border: 1px solid var(--line); border-radius: 8px;
  margin-bottom: 12px; padding: 16px 20px; background: #fff;
}
.faq summary {
  cursor: pointer; font-weight: 600;
  color: var(--ink); list-style: none;
  position: relative; padding-right: 28px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:after {
  content: "+"; position: absolute; right: 4px; top: -2px;
  font-size: 1.4rem; color: var(--red); transition: transform 0.2s;
}
.faq[open] summary:after { content: "−"; }
.faq p { margin: 12px 0 0; color: var(--ink-soft); }

/* ===== Forms ===== */
.form-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow);
}
.form-card label {
  display: block; margin-bottom: 14px;
  font-weight: 600; font-size: 0.92rem; color: var(--ink);
}
.form-card input, .form-card select, .form-card textarea {
  display: block; width: 100%;
  margin-top: 6px; padding: 11px 12px;
  border: 1px solid var(--line); border-radius: 6px;
  font: inherit; color: var(--ink); background: #fff;
  font-weight: 400;
}
.form-card input:focus, .form-card select:focus, .form-card textarea:focus {
  outline: none; border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-light);
}
.form-row {
  display: grid; gap: 14px;
  grid-template-columns: 1fr 1fr;
}
.form-success {
  background: #e8f5ec; border: 1px solid #b6e0c2;
  color: #1e6c33; padding: 12px 16px; border-radius: 6px;
  margin-top: 14px;
}
.form-note { font-size: 0.85rem; margin-top: 14px; }

/* ===== Contact methods (no-form pages) ===== */
.contact-card h2 { margin-top: 0; }
.contact-card .info-heading { margin-top: 24px; font-size: 1.05rem; }
.contact-methods {
  display: grid; gap: 14px;
  grid-template-columns: 1fr 1fr;
  margin: 20px 0 8px;
}
.contact-method {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 20px;
  border: 1px solid var(--line); border-radius: 8px;
  text-decoration: none; color: var(--ink);
  background: var(--bg-soft);
  transition: border-color 0.15s, transform 0.15s, background 0.15s;
}
.contact-method:hover {
  border-color: var(--red); background: var(--bg-tint);
  text-decoration: none; transform: translateY(-2px);
}
.contact-method-icon {
  font-size: 1.7rem;
  width: 46px; height: 46px;
  background: var(--red); color: #fff;
  display: grid; place-items: center;
  border-radius: 8px; flex-shrink: 0;
}
.contact-method strong {
  display: block; color: var(--ink);
  font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px;
}
.contact-method span {
  color: var(--ink-soft); font-size: 0.98rem;
  white-space: nowrap;
}
.contact-method > div:last-child { min-width: 0; }

@media (max-width: 540px) {
  .contact-methods { grid-template-columns: 1fr; }
}

/* ===== Map ===== */
.map-embed {
  margin-top: 18px;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16/10;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ===== Footer ===== */
.site-footer {
  background: #14161b; color: #c9ccd2;
  padding: 50px 0 0; margin-top: 30px;
}
.footer-grid {
  display: grid; gap: 30px;
  grid-template-columns: 1.4fr 1fr 1fr;
  padding-bottom: 36px;
}
.brand-footer { color: #fff; margin-bottom: 12px; }
.brand-footer .brand-text { color: #fff; }
.site-footer h4 {
  color: #fff; font-size: 0.95rem;
  margin: 0 0 12px; letter-spacing: 0.5px; text-transform: uppercase;
}
.site-footer p { color: #c9ccd2; margin: 0 0 10px; }
.site-footer a { color: #f0c8cc; }
.site-footer a:hover { color: #fff; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { padding: 4px 0; }
.footer-bottom {
  border-top: 1px solid #262a31;
  padding: 18px 0; font-size: 0.88rem; color: #8b909a;
}

/* ===== Split Hero Slider ===== */
.hero-split-slider {
  height: auto; min-height: 600px;
  background: #fff;
}
.hero-split-slider .slides { position: relative; height: auto; }
.hero-split-slider .slide {
  position: absolute; inset: 0;
}
.hero-split-slider .slide.is-active { position: relative; }
.hero-split-slider .slider-arrow {
  background: rgba(30,58,138,0.85);
  width: 48px; height: 48px;
  z-index: 5;
}
.hero-split-slider .slider-arrow:hover { background: var(--red-dark); }
.hero-split-slider .slider-dots button { background: rgba(30,58,138,0.4); }
.hero-split-slider .slider-dots button.is-active { background: var(--red); }

/* ===== Split Hero (white, text + image) ===== */
.hero-split { background: #fff; padding: 0; }
.hero-split-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: stretch; gap: 0;
  min-height: 600px; padding: 0;
}
.hero-split-content {
  padding: 60px 40px 60px max(22px, calc((100vw - var(--max)) / 2 + 22px));
  align-self: center;
}
.hero-split-content h1 {
  font-size: clamp(2.4rem, 5.4vw, 4.6rem);
  line-height: 1.02;
  margin: 0 0 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  color: var(--ink);
}
.hero-split-content h1 .hl { color: var(--ink); display: block; }
.hero-split-content p {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  margin: 0 0 28px;
  color: var(--ink);
  font-weight: 500;
  max-width: 520px;
}
.hero-slogan {
  font-style: italic;
  color: var(--ink) !important;
  font-weight: 600 !important;
  margin-bottom: 14px !important;
}
.hero-ad {
  color: var(--ink-soft) !important;
  font-size: 1rem !important;
  font-weight: 400 !important;
  line-height: 1.55 !important;
  margin-bottom: 24px !important;
  max-width: 520px;
}
.hero-split-image {
  align-self: stretch;
  background-size: cover; background-position: right -30px;
  background-repeat: no-repeat;
  min-height: 600px;
}
.btn-lg { padding: 16px 32px; font-size: 1.05rem; border-radius: 999px; }

/* ===== Eyebrow tagline ===== */
.eyebrow {
  font-style: italic; color: var(--ink);
  font-weight: 600; letter-spacing: 0.5px;
  margin: 0 0 10px;
  font-size: 0.95rem;
}
.eyebrow.center { text-align: center; }
.eyebrow.light { color: #ffb3bc; }

/* ===== Numbered features block ===== */
.numbered-block { padding: 80px 0; background: #fff; }
.numbered-grid {
  display: grid; gap: 50px;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
}
.numbered-list { display: flex; flex-direction: column; gap: 22px; }
.numbered-item p {
  margin: 0; color: var(--ink-soft);
  font-size: 1.02rem; line-height: 1.6;
}
.num-label {
  color: var(--blue-soft); font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.6px;
  font-size: 0.88rem;
  display: block; margin-bottom: 6px;
}
.numbered-image img {
  width: 100%; border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ===== Contact form additions ===== */
.form-divider {
  border: none; border-top: 1px solid var(--line);
  margin: 28px 0 22px;
}
.form-subhead {
  margin: 0 0 16px; font-size: 1.25rem;
  color: var(--ink); font-weight: 700;
}
.contact-form label {
  display: block; margin-bottom: 14px;
  font-weight: 600; font-size: 0.92rem; color: var(--ink);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  display: block; width: 100%;
  margin-top: 6px; padding: 11px 12px;
  border: 1px solid var(--line); border-radius: 6px;
  font: inherit; color: var(--ink); background: #fff;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none; border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-light);
}

/* ===== Shop product page ===== */
.product-card {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 50px; align-items: start;
  max-width: 1100px; margin: 0 auto;
}
.product-image {
  aspect-ratio: 1 / 1;
  background: var(--bg-soft);
  border-radius: 12px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.product-placeholder {
  text-align: center; color: var(--muted);
}
.product-placeholder svg {
  width: 120px; height: 120px;
  color: var(--red); opacity: 0.4;
  display: block; margin: 0 auto 14px;
}
.product-placeholder span {
  font-size: 0.9rem; text-transform: uppercase;
  letter-spacing: 1.5px; font-weight: 600;
}
.product-info h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  margin: 0 0 8px; color: var(--ink); font-weight: 700;
}
.product-stars {
  color: #cfd2d8; font-size: 1.1rem;
  letter-spacing: 4px; margin-bottom: 14px;
}
.product-price {
  font-size: 1.25rem; font-weight: 700;
  color: var(--ink); margin: 0 0 24px;
}
.product-form { margin-bottom: 24px; }
.product-label {
  display: block; font-weight: 600; font-size: 0.92rem;
  color: var(--ink); margin-bottom: 18px;
}
.product-label select {
  display: block; width: 100%;
  margin-top: 8px; padding: 12px 14px;
  border: 1px solid var(--line); border-radius: 6px;
  font: inherit; background: #fff; color: var(--ink);
}
.product-buy {
  display: block; width: 100%;
  border-radius: 999px; padding: 14px 22px;
  font-size: 1rem;
}
.product-description p {
  color: var(--ink-soft); line-height: 1.6;
  margin: 0 0 14px;
}
@media (max-width: 760px) {
  .product-card { grid-template-columns: 1fr; gap: 30px; }
}

/* ===== Employer page ===== */
.employer-hero {
  background-size: cover; background-position: center;
  min-height: 480px;
}
.employer-hero-overlay {
  background: linear-gradient(120deg, rgba(30,30,30,0.5) 0%, rgba(30,30,30,0.3) 100%);
  min-height: 480px;
  display: flex; align-items: center;
  padding: 70px 0;
}
.employer-hero-content {
  color: #fff; text-align: center; max-width: 980px;
}
.employer-hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin: 0 0 18px; font-weight: 800;
  letter-spacing: -0.3px; line-height: 1.05;
  text-transform: uppercase;
  background: rgba(255,255,255,0.85);
  color: var(--ink); padding: 14px 22px;
  display: inline-block;
}
.employer-hero-content h1 .hl { color: var(--ink); }
.employer-hero-sub {
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  font-weight: 700; font-style: italic;
  color: #fff; margin: 0 0 30px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.onsite-simple { padding: 80px 0; background: var(--bg-soft); }
.onsite-simple-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.onsite-title {
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  color: var(--ink); font-weight: 700;
  margin: 0 0 22px;
  font-family: Georgia, 'Times New Roman', serif;
  letter-spacing: 0.5px;
}
.onsite-title em { font-style: italic; font-weight: 700; }
.onsite-lead { font-size: 1.2rem; color: var(--ink); margin: 0 0 22px; font-weight: 700; }
.onsite-simple p { font-size: 1.02rem; line-height: 1.65; color: var(--ink-soft); margin: 0 0 16px; }
.onsite-simple .btn { margin-top: 16px; }

.industries {
  padding: 90px 0;
  background: linear-gradient(135deg, #c2c8cf 0%, #e2e6ea 100%);
}
.industries-title {
  font-family: Georgia, 'Times New Roman', serif;
  color: #fff;
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  text-align: center; margin: 0 0 50px;
  font-weight: 400;
}
.industries-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; max-width: 1100px; margin: 0 auto;
}
.industry-card {
  background: #fff; padding: 14px 14px 30px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  margin: 0; text-align: center;
  transition: transform 0.2s;
}
.industry-tilt-1 { transform: rotate(-2deg); }
.industry-tilt-2 { transform: rotate(2deg); }
.industry-card:hover { transform: rotate(0) scale(1.04); }
.industry-photo {
  width: 100%; aspect-ratio: 4 / 5;
  background-size: cover; background-position: center;
  margin-bottom: 16px;
}
.industry-card figcaption {
  font-family: Georgia, 'Times New Roman', serif;
  letter-spacing: 1px; color: var(--ink);
  font-size: 1rem;
}

.inquire-form {
  padding: 80px 0; background: var(--blue-bright);
  color: #fff;
}
.inquire-eyebrow {
  text-align: center; color: #fff;
  font-size: 1.15rem; font-style: italic;
  letter-spacing: 2px; text-transform: uppercase;
  opacity: 0.85; margin: 0 0 14px;
  font-weight: 600;
}
.inquire-title {
  text-align: center; font-size: clamp(2rem, 4vw, 3rem);
  color: #fff; margin: 0 0 12px;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
}
.inquire-sub { text-align: center; opacity: 0.95; margin: 0 0 36px; font-size: 1.05rem; }
.quote-form {
  background: rgba(255,255,255,0.12);
  border-radius: 12px; padding: 40px;
  max-width: 880px; margin: 0 auto;
}
.quote-form h3 {
  text-align: center; font-size: 1.6rem;
  font-weight: 800; margin: 0 0 28px;
  font-style: italic; color: #fff;
}
.quote-form label {
  display: block; color: #fff;
  font-size: 0.92rem; margin-bottom: 18px;
}
.quote-form input[type="text"],
.quote-form input[type="email"],
.quote-form input[type="tel"],
.quote-form input[type="number"],
.quote-form input[type="date"],
.quote-form input[type="time"],
.quote-form textarea {
  display: block; width: 100%;
  margin-top: 6px; padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.18);
  color: #fff; border-radius: 6px;
  font: inherit;
}
.quote-form input::placeholder, .quote-form textarea::placeholder { color: rgba(255,255,255,0.7); }
.quote-form input:focus, .quote-form textarea:focus {
  outline: none; background: rgba(255,255,255,0.28);
  border-color: #fff;
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.quote-form fieldset {
  border: none; padding: 0; margin: 0 0 22px;
}
.quote-form legend {
  color: #fff; font-size: 0.92rem;
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 12px;
}
.checkbox-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px 18px;
}
.checkbox-grid label {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.92rem; text-transform: uppercase;
  letter-spacing: 0.5px; font-weight: 600;
  margin-bottom: 0;
}
.checkbox-grid input { width: 16px; height: 16px; flex-shrink: 0; }
.btn-submit {
  background: #fff !important; color: var(--blue-bright) !important;
  display: block; margin: 26px auto 0;
  border-radius: 999px; padding: 14px 60px;
  font-size: 1.05rem;
}
.btn-submit:hover { background: var(--bg-soft) !important; }
@media (max-width: 760px) {
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row-2 { grid-template-columns: 1fr; }
  .checkbox-grid { grid-template-columns: 1fr 1fr; }
  .quote-form { padding: 24px; }
}

/* ===== About page intro with portrait ===== */
.about-intro-grid {
  display: grid; gap: 40px;
  grid-template-columns: 340px 1fr;
  align-items: start;
  max-width: var(--max);
}
.about-portrait {
  width: 100%; height: auto;
  border-radius: 16px;
  box-shadow: var(--shadow);
}
@media (max-width: 760px) {
  .about-intro-grid { grid-template-columns: 1fr; }
  .about-portrait { max-width: 320px; margin: 0 auto; }
}

/* ===== Emergency post-accident strip ===== */
.emergency-strip {
  background: linear-gradient(120deg, var(--accent-red) 0%, #7A1623 100%);
  color: #fff; padding: 28px 0;
}
.emergency-inner {
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
}
.emergency-pulse {
  width: 56px; height: 56px; flex-shrink: 0;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  display: grid; place-items: center;
  animation: pulse 1.8s ease-in-out infinite;
}
.emergency-pulse svg { width: 30px; height: 30px; color: #fff; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.5); }
  50% { box-shadow: 0 0 0 14px rgba(255,255,255,0); }
}
.emergency-text { flex: 1; min-width: 280px; }
.emergency-text h3 {
  margin: 0 0 4px; font-size: 1.35rem; font-weight: 800;
}
.emergency-text p { margin: 0; opacity: 0.95; font-size: 1rem; }
.emergency-cta {
  background: #fff !important; color: var(--accent-red) !important;
}
.emergency-cta:hover { background: #f0e8e9 !important; }

/* ===== How It Works steps ===== */
.how-it-works {
  background: var(--bg-soft); padding: 80px 0;
}
.steps-grid {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr;
  align-items: start; gap: 16px;
  margin-top: 40px;
}
.step {
  background: #fff; padding: 36px 28px;
  border-radius: 16px; text-align: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}
.step-num {
  width: 56px; height: 56px; margin: 0 auto 18px;
  background: var(--red); color: #fff;
  border-radius: 50%; display: grid; place-items: center;
  font-size: 1.6rem; font-weight: 800;
}
.step h3 {
  margin: 0 0 8px; font-size: 1.15rem; font-weight: 700;
  color: var(--ink);
}
.step p { margin: 0; color: var(--ink-soft); font-size: 0.95rem; }
.step-connector {
  height: 2px; background: var(--red); opacity: 0.3;
  align-self: center; margin-top: 56px;
}
@media (max-width: 760px) {
  .steps-grid { grid-template-columns: 1fr; }
  .step-connector { display: none; }
  .emergency-cta { width: 100%; text-align: center; }
}

/* ===== Drug block (under hero) ===== */
.drug-block {
  background: #fff; padding: 70px 0;
  border-top: 1px solid var(--line);
}
.drug-block-inner {
  text-align: center; max-width: 820px; margin: 0 auto;
}
.drug-block h2 {
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  font-weight: 800; margin: 0 0 18px;
  color: var(--ink); letter-spacing: -0.3px;
}
.drug-block p {
  color: var(--ink-soft); font-size: 1.08rem;
  line-height: 1.6; margin: 0 auto 26px;
}

/* ===== Stacked DNA block (image on top, text below) ===== */
.dna-stacked {
  display: flex; flex-direction: column;
}
.dna-image-stacked {
  width: 100%; min-height: 420px;
  background-size: cover; background-position: center;
}
.dna-stacked .dna-content {
  padding: 70px 22px;
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
  align-items: center;
}
.dna-stacked .dna-content p { max-width: 760px; }
.dna-stacked .dna-content .btn { align-self: center; }

/* ===== Dark DNA block (black bg, image flush right) ===== */
.dna-block {
  background: #0a0a0a;
  border-top: 6px solid var(--red);
}
.dna-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: stretch; min-height: 540px;
}
.dna-content {
  color: #fff;
  padding: 80px 50px 80px max(22px, calc((100vw - var(--max)) / 2 + 22px));
  display: flex; flex-direction: column; justify-content: center;
}
.dna-content h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  margin: 0 0 22px; font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.3px;
  line-height: 1.05;
}
.dna-content p {
  color: #d8d8d8; font-size: 1.05rem;
  margin: 0 0 18px; line-height: 1.65;
  max-width: 540px;
}
.dna-content .btn { margin-top: 14px; align-self: flex-start; }
.dna-image {
  background-size: cover; background-position: center 20%;
  min-height: 540px;
}

/* ===== Service cards with images ===== */
.service-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.service-card .card-img {
  width: 100%; aspect-ratio: 16/10;
  background-size: cover; background-position: center;
}
.service-card .card-body { padding: 22px 24px 26px; }
.center-btn { text-align: center; margin-top: 36px; }

/* ===== Testimonials ===== */
.testimonials { padding: 80px 0; background: var(--bg-soft); }
.testimonial-grid {
  display: grid; gap: 28px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 30px;
}
.testimonial {
  background: #fff; padding: 30px 22px 26px;
  border-radius: var(--radius); box-shadow: var(--shadow);
  text-align: center; margin: 0;
  position: relative; padding-top: 60px;
}
.testimonial .avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background-size: cover; background-position: center;
  border: 4px solid #fff; box-shadow: var(--shadow);
  position: absolute; top: -40px; left: 50%; transform: translateX(-50%);
}
.testimonial blockquote {
  margin: 0 0 12px; font-style: italic;
  color: var(--ink-soft); line-height: 1.5;
}
.testimonial figcaption {
  font-weight: 700; color: var(--red);
}

/* ===== Mobile band ===== */
.mobile-band {
  position: relative;
  background-size: cover; background-position: center;
  background-attachment: fixed;
}
.mobile-overlay {
  background: linear-gradient(120deg, rgba(30,30,30,0.85) 0%, rgba(60,60,60,0.7) 100%);
  padding: 90px 0;
}
.mobile-content {
  color: #fff; text-align: center; max-width: 820px;
}
.mobile-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 18px; font-weight: 800;
  letter-spacing: -0.3px;
}
.mobile-content p {
  font-size: 1.15rem; opacity: 0.95;
  margin: 0 0 28px; line-height: 1.55;
}

/* ===== Services List (filter tabs + blue panels) ===== */
.services-list { padding: 60px 0 80px; background: var(--bg-soft); }
.filter-tabs {
  display: flex; gap: 12px; justify-content: center;
  margin-bottom: 50px; flex-wrap: wrap;
}
.filter-tab {
  background: var(--blue-bright); color: #fff;
  border: 2px solid transparent;
  padding: 10px 26px; border-radius: 999px;
  font: inherit; font-weight: 700; font-size: 0.95rem;
  cursor: pointer; transition: all 0.15s;
}
.filter-tab:hover { background: var(--red); }
.filter-tab.is-active {
  background: #fff; color: var(--red);
  border-color: var(--red);
}

.service-panel {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 400px;
  border-radius: 18px; overflow: hidden;
  background: #1c1f24; color: #fff;
  margin-bottom: 24px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}
.service-panel:nth-of-type(odd) .sp-image { order: 0; }
.service-panel:nth-of-type(odd) .sp-body { order: 1; }
.service-panel:nth-of-type(even) .sp-image { order: 1; }
.service-panel:nth-of-type(even) .sp-body { order: 0; }
.sp-image {
  background-size: cover; background-position: center;
  min-height: 400px;
  display: flex; align-items: center; justify-content: center;
}
.sp-image-drug {
  background: linear-gradient(135deg, #e8efff 0%, #c9d8ff 100%);
}
.sp-image-dna {
  background: linear-gradient(135deg, #fff0ee 0%, #ffd9d2 100%);
}
.sp-icon {
  width: 90px; height: 90px;
  opacity: 0.7;
}
.sp-image-drug .sp-icon { color: var(--red); }
.sp-image-dna .sp-icon { color: var(--accent-red); }
.sp-body {
  padding: 26px 32px;
  display: flex; flex-direction: column;
  justify-content: center;
}
.sp-body h3 {
  margin: 0 0 8px;
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  font-weight: 800; color: #fff;
}
.sp-readmore {
  color: #fff; text-decoration: underline;
  font-weight: 600; font-size: 0.95rem;
  align-self: flex-start;
}
.sp-readmore:hover { color: #fff; opacity: 0.85; }
.sp-divider {
  height: 1px; background: rgba(255,255,255,0.4);
  margin: 12px 0 10px;
}
.sp-meta {
  margin: 2px 0; color: #fff;
  font-size: 0.9rem; font-weight: 500;
}
.btn-pill {
  display: inline-block; align-self: flex-start;
  background: #fff; color: var(--ink);
  padding: 8px 22px; border-radius: 999px;
  font-weight: 700; font-size: 0.88rem;
  text-decoration: none; margin-top: 12px;
  transition: background 0.15s, color 0.15s;
}
.btn-pill:hover { background: var(--ink); color: #fff; text-decoration: none; }

@media (max-width: 760px) {
  .service-panel, .service-panel.reverse { grid-template-columns: 1fr; }
  .service-panel.reverse .sp-image { order: -1; }
  .sp-image { min-height: 240px; }
  .sp-body { padding: 30px 26px; }
}

/* ===== Final CTA ===== */
.final-cta { padding: 80px 0; text-align: center; background: #fff; }
.final-cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 30px; font-weight: 800;
  letter-spacing: -0.3px;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .features .container,
  .card-grid,
  .footer-grid,
  .two-col,
  .numbered-grid,
  .hero-split-grid,
  .dna-grid { grid-template-columns: 1fr; }
  .hero-slider { height: 460px; }
  .hero-split-image, .hero-split-grid { min-height: auto; }
  .hero-split-image { min-height: 360px; }
  .hero-split-content { padding: 50px 0 30px; }
  .dna-content { padding: 60px 22px; }
  .dna-image { min-height: 320px; }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .mobile-band { background-attachment: scroll; }
}

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .primary-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    flex-direction: column; gap: 0; padding: 8px 0;
    display: none;
    box-shadow: var(--shadow);
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav a {
    padding: 14px 22px; border-radius: 0;
    border-bottom: 1px solid var(--line);
  }
  .primary-nav a:last-child { border-bottom: none; }
  .nav-wrap { position: relative; }
}

@media (max-width: 720px) {
  .form-row { grid-template-columns: 1fr; }
  .hero-slider { height: 420px; }
  .slider-arrow { width: 38px; height: 38px; }
  .cta-band-inner { text-align: center; justify-content: center; }
}
