/* ==========================================================================
   All-Pro Technologies — Design System
   Palette: Ink #0F1720, Signal Blue #1477C9, Sky Arc #4FC3F7,
            Slate #F4F6F8, Steel Text #4B5563, Beacon Amber #F5A623
   Type: Space Grotesk (display) / Inter (body) / IBM Plex Mono (data/labels)
   ========================================================================== */

:root {
  --ink: #0F1720;
  --ink-soft: #1B2532;
  --blue: #1477C9;
  --blue-dark: #0E5A9C;
  --sky: #4FC3F7;
  --slate: #EAEFF4;
  --slate-line: #DBE2EA;
  --canvas: #F6F7FA;
  --surface: #FFFFFF;
  --steel: #4B5563;
  --steel-light: #7C8896;
  --white: #FFFFFF;
  --amber: #F5A623;
  --good: #1FAE6E;

  --font-display: 'Space Grotesk', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;

  --radius: 6px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 2px rgba(15,23,32,0.06), 0 1px 6px rgba(15,23,32,0.04);
  --shadow-md: 0 8px 24px rgba(15,23,32,0.08), 0 2px 6px rgba(15,23,32,0.05);
  --shadow-lg: 0 20px 50px rgba(15,23,32,0.12);
  --container: 1180px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  /* SMIL animations inside SVG aren't governed by CSS animation rules — hide them instead */
  .motion-pulse, .motion-sweep { display: none !important; }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--canvas);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}
p { margin: 0 0 1em; color: var(--steel); }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 2px;
}

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

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 18px; height: 1px;
  background: var(--blue);
  display: inline-block;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 24px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--amber);
  color: var(--ink);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.35);
  color: inherit;
}
.btn-outline:hover { border-color: var(--sky); color: var(--sky); }
.btn-dark {
  background: var(--ink);
  color: var(--white);
}
.btn-dark:hover { background: var(--ink-soft); transform: translateY(-1px); }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--slate-line);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 34px; width: auto; }

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--steel);
  background: var(--slate);
  border: 1px solid var(--slate-line);
  border-radius: 999px;
  padding: 5px 12px 5px 9px;
}
.status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--good);
  box-shadow: 0 0 0 0 rgba(31,174,110,0.5);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(31,174,110,0.45); }
  70% { box-shadow: 0 0 0 6px rgba(31,174,110,0); }
  100% { box-shadow: 0 0 0 0 rgba(31,174,110,0); }
}

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav ul { display: flex; gap: 26px; }
.main-nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
}
.main-nav a:hover { color: var(--blue); }
.main-nav .has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: 100%; left: -16px;
  background: var(--white);
  border: 1px solid var(--slate-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.15s ease;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: var(--radius);
  font-size: 14px;
}
.dropdown a:hover { background: var(--slate); }
.dropdown a small { display: block; color: var(--steel-light); font-weight: 400; font-size: 12px; margin-top: 2px; }

.header-actions { display: flex; align-items: center; gap: 16px; }
.phone-link { font-family: var(--font-mono); font-size: 14px; font-weight: 500; color: var(--ink); }

.nav-toggle { display: none; background: none; border: none; padding: 6px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; }

/* ---------- Hero ---------- */
.hero {
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(20,119,201,0.35), transparent 45%),
    radial-gradient(circle at 100% 60%, rgba(79,195,247,0.14), transparent 50%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  padding: 84px 24px 76px;
}
.hero p.lede {
  color: #B7C2CE;
  font-size: 18px;
  max-width: 520px;
}
.hero h1 { font-size: clamp(34px, 4.6vw, 54px); color: var(--white); }
.hero-logo {
  display: inline-block;
  line-height: 1;
  margin-bottom: 30px;
}
.hero-logo .hl-name {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(52px, 8vw, 88px);
  color: var(--white);
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.hero-logo .hl-sub {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(15px, 2vw, 23px);
  color: var(--sky);
  text-transform: uppercase;
  white-space: nowrap;
  margin-top: 10px;
}
.hero h1 .accent { color: var(--sky); }
.hero-ctas { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.hero-visual { position: relative; }

/* Trust bar */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--slate-line);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 34px 24px;
}
.trust-stat { text-align: left; }
.trust-stat .num {
  font-family: var(--font-mono);
  font-size: 28px;
  color: var(--blue-dark);
  font-weight: 500;
}
.trust-stat .label {
  font-size: 12.5px;
  color: var(--steel-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

/* ---------- Sections ---------- */
section { padding: 88px 0; }
.section-slate { background: var(--slate); }
.section-head { max-width: 620px; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(26px, 3vw, 36px); }
.section-head p { font-size: 16.5px; }

/* Service cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.service-card {
  background: var(--surface);
  border: 1px solid var(--slate-line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--sky);
}
.service-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.service-icon svg { width: 22px; height: 22px; stroke: white; }
.service-card h3 { font-size: 19px; margin-bottom: 8px; }
.service-card p { font-size: 14.5px; flex-grow: 1; }
.card-link {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--blue-dark);
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-card:hover .card-link { gap: 9px; }

/* Value props */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.value-item .index {
  font-family: var(--font-mono);
  color: var(--sky-dark, var(--blue));
  font-size: 13px;
  margin-bottom: 12px;
  display: block;
}
.value-item h3 { font-size: 18px; margin-bottom: 8px; }
.value-item p { font-size: 14.5px; }

/* Industries */
.industry-chip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.industry-chip {
  border: 1px solid var(--slate-line);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  font-weight: 600;
  font-size: 14.5px;
  background: var(--white);
}

/* Testimonial / quote */
.quote-block {
  border-left: 3px solid var(--blue);
  padding-left: 24px;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ink);
  max-width: 760px;
}
.quote-attr { font-family: var(--font-mono); font-size: 13px; color: var(--steel-light); margin-top: 16px; }

/* CTA banner */
.cta-banner {
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 90% 20%, rgba(79,195,247,0.25), transparent 55%);
}
.cta-banner h2 { color: var(--white); font-size: 28px; margin-bottom: 6px; position: relative; }
.cta-banner p { color: #B7C2CE; margin: 0; position: relative; }
.cta-actions { display: flex; gap: 14px; flex-shrink: 0; position: relative; flex-wrap: wrap; }

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--slate-line);
  padding: 22px 0;
}
.faq-item summary {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16.5px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 22px;
  color: var(--blue);
  font-weight: 400;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin-top: 14px; font-size: 15px; }

/* Footer */
.site-footer {
  background: var(--ink);
  color: #B7C2CE;
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img { height: 30px; margin-bottom: 14px; }
.footer-brand p { font-size: 14px; max-width: 280px; }
.footer-col h4 {
  color: var(--white);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--font-mono);
  margin-bottom: 16px;
  font-weight: 500;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { font-size: 14.5px; color: #B7C2CE; }
.footer-col a:hover { color: var(--sky); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  font-size: 13px;
  color: #7C8896;
  flex-wrap: wrap;
  gap: 12px;
}

/* Breadcrumb */
.breadcrumb {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--steel-light);
  padding: 20px 0 0;
}
.breadcrumb a:hover { color: var(--blue); }

/* Page hero (inner pages) */
.page-hero {
  background: linear-gradient(180deg, #E4EBF2 0%, var(--canvas) 100%);
  border-bottom: 1px solid var(--slate-line);
  padding: 40px 0 64px;
}
.page-hero h1 { font-size: clamp(30px, 4vw, 44px); }
.page-hero .lede { font-size: 17px; max-width: 640px; }

/* Two column feature */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.feature-row.reverse .feature-visual { order: 2; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--ink-soft);
}
.checklist li::before {
  content: '✓';
  color: var(--good);
  font-weight: 700;
  flex-shrink: 0;
}

/* Contact form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 48px;
}
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 6px;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--slate-line);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--white);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--blue);
  outline: none;
  box-shadow: 0 0 0 3px rgba(20,119,201,0.12);
}
.contact-info-card {
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.contact-info-card h3 { color: var(--white); font-size: 18px; }
.contact-info-card .info-row { display: flex; gap: 12px; margin-bottom: 20px; font-size: 14.5px; }
.contact-info-card .info-row strong { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--sky); font-family: var(--font-mono); font-weight: 500; margin-bottom: 3px; }

/* Utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; padding-top: 48px; }
  .hero-visual { order: -1; max-width: 420px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: 1fr 1fr; }
  .industry-chip-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .feature-row { grid-template-columns: 1fr; }
  .feature-row.reverse .feature-visual { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 720px) {
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .status-pill { display: none; }
  .card-grid, .value-grid, .industry-chip-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  section { padding: 56px 0; }
  .cta-banner { padding: 36px 24px; }

  /* --- Mobile nav: reveal the menu when the hamburger sets .nav-open --- */
  .site-header { position: relative; }
  /* Guarantee the hamburger is on top of its siblings and fully tappable */
  .header-actions { position: relative; }
  .nav-toggle {
    position: relative;
    z-index: 210;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    align-items: center;
  }
  .nav-toggle span { pointer-events: none; }
  /* Keep the quote button from overflowing onto the hamburger on small screens */
  .header-actions .btn-primary { padding: 10px 14px; font-size: 14px; }
  .main-nav.nav-open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--slate-line);
    box-shadow: var(--shadow-md);
    padding: 12px 20px 20px;
    z-index: 200;
  }
  .main-nav.nav-open ul {
    display: block;
  }
  .main-nav.nav-open ul li {
    border-bottom: 1px solid var(--slate-line);
  }
  .main-nav.nav-open ul li:last-child { border-bottom: none; }
  .main-nav.nav-open a {
    display: block;
    padding: 14px 4px;
    font-size: 16px;
  }
  /* Tap a top-level item with a submenu to expand it */
  .main-nav.nav-open .dropdown {
    position: static;
    opacity: 1;
    visibility: hidden;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 14px;
    min-width: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease;
  }
  .main-nav.nav-open .has-dropdown.dropdown-open .dropdown {
    visibility: visible;
    max-height: 400px;
  }
  .main-nav.nav-open .dropdown a { padding: 11px 4px; font-size: 14.5px; }
  .main-nav.nav-open .dropdown a small { color: var(--steel-light); }
  /* Neutralize the desktop hover-reveal on touch so it doesn't fight the tap toggle */
  .has-dropdown:hover .dropdown { opacity: 1; }
}

/* ---------- Platform / vendor chips ---------- */
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.platform-chip {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--ink-soft);
  background: var(--white);
  border: 1px solid var(--slate-line);
  border-radius: 999px;
  padding: 7px 15px;
}
.section-slate .platform-chip { background: var(--white); }
.chip-note { font-size: 13.5px; color: var(--steel-light); margin-top: 18px; }

/* ---------- Process steps (a real sequence, so numbering earns its place) ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--slate-line);
}
.process-step {
  padding: 26px 22px 26px 0;
  border-right: 1px solid var(--slate-line);
  padding-right: 22px;
}
.process-step:last-child { border-right: none; }
.process-step .step-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--blue);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 10px;
}
.process-step h3 { font-size: 16.5px; margin-bottom: 6px; }
.process-step p { font-size: 14px; margin: 0; }

/* ---------- Pricing band ---------- */
.price-band {
  background: var(--white);
  border: 1px solid var(--slate-line);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.price-rows { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 24px; }
.price-row .price-figure {
  font-family: var(--font-mono);
  font-size: 22px;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 4px;
}
.price-row .price-label { font-size: 13px; color: var(--steel-light); text-transform: uppercase; letter-spacing: 0.05em; }
.price-row p { font-size: 14px; margin-top: 8px; }
.price-note {
  font-size: 13.5px;
  color: var(--steel);
  border-top: 1px solid var(--slate-line);
  padding-top: 18px;
  margin: 0;
}

/* ---------- Credentials strip ---------- */
.cred-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cred-item {
  border: 1px solid var(--slate-line);
  border-radius: var(--radius);
  padding: 20px;
  background: var(--white);
}
.cred-item h4 { font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.06em; color: var(--blue-dark); margin-bottom: 8px; font-weight: 500; text-transform: uppercase; }
.cred-item p { font-size: 14px; margin: 0; }

/* ---------- Comparison table ---------- */
.compare-table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.compare-table th, .compare-table td { text-align: left; padding: 15px 16px; border-bottom: 1px solid var(--slate-line); vertical-align: top; }
.compare-table thead th {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--steel-light);
  font-weight: 500;
  border-bottom: 1px solid var(--ink);
}
.compare-table td:first-child { font-weight: 600; color: var(--ink); }
.compare-table .yes { color: var(--good); font-weight: 600; }
.compare-table .no { color: var(--steel-light); }
.table-wrap { overflow-x: auto; }

/* ---------- Industry detail cards ---------- */
.industry-detail {
  background: var(--white);
  border: 1px solid var(--slate-line);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.industry-detail h3 { font-size: 19px; margin-bottom: 10px; }
.industry-detail p { font-size: 14.5px; }
.industry-detail .sys-list {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--steel-light);
  border-top: 1px solid var(--slate-line);
  padding-top: 14px;
  margin-top: 16px;
  line-height: 1.7;
}

@media (max-width: 980px) {
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--slate-line); }
  .price-rows { grid-template-columns: 1fr; }
  .cred-grid { grid-template-columns: 1fr 1fr; }
  .card-grid.cols-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .process-grid { grid-template-columns: 1fr; }
  .cred-grid { grid-template-columns: 1fr; }
  .card-grid.cols-3 { grid-template-columns: 1fr; }
  .price-band { padding: 24px; }
}

/* ---------- Service hero photo band ---------- */
.hero-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 300px;
  box-shadow: var(--shadow-md);
  background-size: cover;
  background-position: center;
}
.hero-photo::after {
  /* blue-ink tint so stock photos read on-brand, not generic */
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,23,32,0.55) 0%, rgba(20,119,201,0.30) 100%);
  mix-blend-mode: multiply;
}
.page-hero .hero-photo { margin-top: 8px; }

/* Two-column layout for the inner-page hero when it carries a photo */
.page-hero.has-photo .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: center;
}
.page-hero.has-photo .hero-head { min-width: 0; }

/* Home mid-page photo band */
.photo-strip {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow-md);
}
.photo-strip::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,23,32,0.15) 0%, rgba(15,23,32,0.80) 100%);
}
.photo-strip .photo-caption {
  position: relative;
  z-index: 1;
  padding: 28px 30px;
  color: #fff;
}
.photo-strip .photo-caption h3 { color: #fff; font-size: 22px; margin-bottom: 4px; }
.photo-strip .photo-caption p { color: #C7D2DD; margin: 0; font-size: 14.5px; }

@media (max-width: 900px) {
  .page-hero.has-photo .container { grid-template-columns: 1fr; }
  .page-hero .hero-photo { min-height: 200px; }
}
