/* ==========================================================================
   OrbitHouseWeb — stylesheet
   ========================================================================== */

/* Self-hosted variable fonts (latin subset) — no third-party requests */
@font-face { font-family: 'Manrope'; font-style: normal; font-display: swap; font-weight: 200 800; src: url(../fonts/manrope.woff2) format('woff2'); }
@font-face { font-family: 'Space Grotesk'; font-style: normal; font-display: swap; font-weight: 300 700; src: url(../fonts/space-grotesk.woff2) format('woff2'); }

:root {
  --ink: #101b2c;
  --ink-soft: #1c2b40;
  --accent: #f4600a;
  --accent-dark: #d6540a;
  --muted: #5f6e79;
  --bg: #faf9f5;
  --white: #ffffff;
  --border: #e7e3da;
  --radius: 14px;
  --shadow: 0 20px 45px -25px rgba(16, 27, 44, 0.35);
  --maxw: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', 'Manrope', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.5em;
}

p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

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

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.section-head {
  max-width: 640px;
  margin: 0 auto 32px;
  text-align: center;
}

.section-head h2 { font-size: clamp(28px, 4vw, 38px); }
.section-head p { color: var(--muted); font-size: 17px; margin: 0; }

section { padding: 56px 0; }
section.tight { padding: 40px 0; }
section.benefits { padding-top: 16px; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--white); }

.btn-outline.on-dark {
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}
.btn-outline.on-dark:hover { background: var(--white); color: var(--ink); }

.btn-block { width: 100%; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 249, 245, 0.9);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
}

.brand img { height: 34px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-soft);
}
.nav-links a:hover { color: var(--accent); }

.header-cta { display: flex; align-items: center; gap: 20px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ---------- Hero ---------- */

.hero {
  padding: 64px 0 48px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -160px;
  right: -160px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  border: 2px solid rgba(244, 96, 10, 0.18);
  transform: rotate(-16deg) scaleY(0.42);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.01em;
}
.hero h1 .accent { color: var(--accent); }

.hero .lede {
  font-size: 19px;
  color: var(--muted);
  max-width: 46ch;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 40px;
}
.hero-stats div strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px;
}
.hero-stats div span {
  font-size: 13px;
  color: var(--muted);
}

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 3.2;
  background: var(--ink);
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual .orbit-ring {
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px dashed rgba(244, 96, 10, 0.55);
  transform: rotate(-18deg) scaleY(0.4);
}

.hero-visual .orbit-core {
  width: 30%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--bg);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual .orbit-core img { height: 46%; width: auto; }

.hero-visual .orbit-dot {
  position: absolute;
  top: 16%;
  right: 20%;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(244, 96, 10, 0.18);
}

/* ---------- Logo strip ---------- */

.logo-strip {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.logo-strip .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.logo-strip span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.logo-strip .tags {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  font-weight: 700;
  color: var(--ink-soft);
  opacity: 0.55;
}

/* ---------- Cards / grid ---------- */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.card .icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(244, 96, 10, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card .icon svg { width: 24px; height: 24px; stroke: var(--accent); }

.card h3 { font-size: 19px; }
.card p { color: var(--muted); font-size: 15px; margin-bottom: 0; }

/* ---------- Process ---------- */

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}

.process-step {
  position: relative;
  padding-top: 8px;
}

.process-step .num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 44px;
  font-weight: 700;
  color: rgba(16, 27, 44, 0.12);
  margin-bottom: 8px;
}

.process-step h3 { font-size: 18px; margin-bottom: 8px; }
.process-step p { color: var(--muted); font-size: 15px; }

/* ---------- Work / portfolio ---------- */

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.work-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  display: block;
  width: 100%;
  padding: 0;
  text-align: left;
  font-family: inherit;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.work-card:hover,
.work-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  outline: none;
}

.work-thumb {
  aspect-ratio: 4/3;
  background: linear-gradient(160deg, var(--ink) 0%, #24344c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

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

.work-thumb span {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.work-body { padding: 24px; }
.work-body .tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.work-body h3 { margin-top: 8px; font-size: 19px; }
.work-body p { color: var(--muted); font-size: 14px; margin-bottom: 12px; }

.work-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
}

/* ---------- Project modal ---------- */

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(16, 27, 44, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay[hidden] { display: none; }

.modal {
  background: var(--white);
  border-radius: 20px;
  max-width: 640px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(16, 27, 44, 0.06);
  font-size: 20px;
  line-height: 1;
  color: var(--ink);
  z-index: 2;
}
.modal-close:hover { background: rgba(16, 27, 44, 0.12); }

.modal-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.modal-body { padding: 32px; }
.modal-body h3 { font-size: 24px; margin-top: 8px; }
.modal-body > p { color: var(--muted); font-size: 15px; }

.modal-facts {
  display: grid;
  gap: 20px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.modal-facts h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.modal-facts p { font-size: 14px; color: var(--ink-soft); margin-bottom: 0; }

@media (min-width: 620px) {
  .modal-facts { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- About ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.about-panel {
  background: var(--ink);
  border-radius: 24px;
  padding: 48px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.about-panel h3 { font-size: 22px; }
.about-panel p { color: rgba(255,255,255,0.7); font-size: 15px; }

.about-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}
.about-facts div strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  color: var(--accent);
}
.about-facts div span { font-size: 13px; color: rgba(255,255,255,0.6); }

/* ---------- Pricing ---------- */

.pricing-single {
  max-width: 780px;
  margin: 0 auto;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px;
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.price-card .tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  text-align: center;
}

.price-amount-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 16px 0 18px;
  flex-wrap: wrap;
}

.price-plus {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.price-figure {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.price-period {
  font-size: 14px;
  color: var(--muted);
}
.price-card.featured .price-period { color: rgba(255,255,255,0.6); }

.price-desc {
  color: var(--muted);
  font-size: 15px;
  text-align: center;
  max-width: 48ch;
  margin-left: auto;
  margin-right: auto;
}
.price-card.featured .price-desc { color: rgba(255,255,255,0.75); }

.price-cancel {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--accent);
  margin: -8px 0 0;
}

.price-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin: 12px 0 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.price-columns h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.price-list li {
  position: relative;
  padding-left: 26px;
  font-size: 14px;
  font-weight: 600;
}
.price-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(244, 96, 10, 0.22);
}
.price-list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 8px;
  width: 6px;
  height: 3px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

.price-note {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  max-width: 60ch;
  margin: 32px auto 0;
}

@media (max-width: 760px) {
  .price-card { padding: 32px; }
  .price-columns { grid-template-columns: 1fr; gap: 24px; }
}

/* ---------- Testimonial ---------- */

.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 44px 56px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.testimonial blockquote {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(20px, 2.6vw, 26px);
  margin: 0 0 24px;
  font-weight: 500;
}
.testimonial .who { color: var(--muted); font-size: 14px; font-weight: 700; }

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
}

.contact-info h2 { font-size: clamp(26px, 3.4vw, 34px); }
.contact-info p { color: var(--muted); }

.contact-list { margin-top: 28px; }
.contact-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
}
.contact-list li .icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(244, 96, 10, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-list li .icon svg { width: 18px; height: 18px; stroke: var(--accent); }
.contact-list li span { color: var(--muted); font-weight: 400; display: block; font-size: 13px; }

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 700; }

.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  color: var(--ink);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.field textarea { resize: vertical; min-height: 120px; }

.form-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
  margin-bottom: 0;
}

.form-success {
  background: rgba(34, 128, 88, 0.08);
  border: 1px solid rgba(34, 128, 88, 0.25);
  color: #1c6b45;
  border-radius: 10px;
  padding: 24px;
  font-weight: 600;
  text-align: center;
}

/* ---------- CTA band ---------- */

.cta-band {
  background: var(--ink);
  border-radius: 28px;
  padding: 52px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-band h2 { font-size: clamp(26px, 3.6vw, 36px); }
.cta-band p { color: rgba(255,255,255,0.7); max-width: 50ch; margin-left: auto; margin-right: auto; }
.cta-band .hero-actions { justify-content: center; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-brand img { height: 30px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; max-width: 32ch; }

.footer-col h4 {
  color: var(--white);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col li { margin-bottom: 12px; font-size: 14px; }
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-social { display: flex; gap: 14px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-social a:hover { background: var(--accent); border-color: var(--accent); }
.footer-social svg { width: 16px; height: 16px; stroke: currentColor; }

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .process-list { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  section { padding: 48px 0; }
  .grid-3, .work-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-panel, .cta-band, .testimonial { padding: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

body.nav-open .mobile-nav { display: flex; }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 24px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.mobile-nav a {
  padding: 12px 0;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}
.mobile-nav .btn { margin-top: 12px; }


/* ==========================================================================
   Added: multi-page layout, local SEO sections, accessibility
   ========================================================================== */

:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
.skip-link { position: absolute; left: -9999px; top: 8px; background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 8px; z-index: 200; }
.skip-link:focus { left: 16px; }

.nav-links a[aria-current="page"] { color: var(--accent); }
.header-phone { font-weight: 700; font-size: 15px; color: var(--ink); white-space: nowrap; }
.header-phone:hover { color: var(--accent); }
.call-icon { display: none; width: 42px; height: 42px; border-radius: 50%; background: var(--accent); align-items: center; justify-content: center; }
.call-icon svg { width: 20px; height: 20px; stroke: #fff; }
@media (max-width: 1080px) { .nav-links { gap: 22px; } .header-phone { display: none; } }
@media (max-width: 760px) { .call-icon { display: inline-flex; } .header-cta { gap: 12px; } }

.hero-trust { display: flex; gap: 36px; margin-top: 40px; flex-wrap: wrap; }
.hero-trust div strong { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 22px; }
.hero-trust div span { font-size: 13px; color: var(--muted); }
.hero-visual .orbit-core svg { width: 100%; height: 100%; }

.card-link { display: inline-block; margin-top: 16px; font-weight: 700; font-size: 14px; color: var(--accent); }
.card-link:hover { text-decoration: underline; }

.areas { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.area-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; max-width: 860px; margin: 0 auto; }
.area-list li, .area-list a { display: inline-block; padding: 8px 16px; border-radius: 999px; background: var(--bg); border: 1px solid var(--border); font-weight: 600; font-size: 14px; }
.area-list a { border-color: var(--accent); color: var(--accent); }
.area-list a:hover { background: var(--accent); color: #fff; }

.faq { max-width: 780px; margin: 0 auto; }
.faq details { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; }
.faq summary { cursor: pointer; padding: 20px 56px 20px 24px; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 17px; list-style: none; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 24px; top: 50%; transform: translateY(-50%); font-size: 24px; color: var(--accent); }
.faq details[open] summary::after { content: "\2013"; }
.faq details > div { padding: 0 24px 20px; color: var(--muted); }
.faq details > div p:last-child { margin-bottom: 0; }

/* Inner pages */
.breadcrumbs { font-size: 13px; color: var(--muted); padding-top: 24px; }
.breadcrumbs ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.breadcrumbs li + li::before { content: "/"; margin-right: 6px; opacity: .5; }
.breadcrumbs a:hover { color: var(--accent); }
.page-hero { padding: 32px 0 40px; }
.page-hero h1 { font-size: clamp(32px, 4.6vw, 50px); max-width: 20ch; letter-spacing: -0.01em; }
.page-hero .lede { font-size: 19px; color: var(--muted); max-width: 60ch; }
.prose { max-width: 760px; }
.prose h2 { font-size: clamp(24px, 3vw, 32px); margin-top: 8px; }
.prose p, .prose li { font-size: 17px; }
.prose p { color: var(--ink-soft); }
.split { display: grid; grid-template-columns: 1.3fr 0.9fr; gap: 56px; align-items: start; }
.aside-card { background: var(--ink); color: #fff; border-radius: 24px; padding: 36px; position: sticky; top: 110px; }
.aside-card h2, .aside-card h3 { font-size: 22px; }
.aside-card p { color: rgba(255,255,255,.75); font-size: 15px; }
.aside-card .price-figure { color: #fff; }
.aside-card .btn { margin-top: 12px; }
.aside-card a.phone { display: block; text-align: center; margin-top: 14px; font-weight: 700; color: #fff; }
.checklist { display: flex; flex-direction: column; gap: 12px; margin: 0 0 1.2em; }
.checklist li { position: relative; padding-left: 30px; }
.checklist li::before { content: ""; position: absolute; left: 0; top: 5px; width: 18px; height: 18px; border-radius: 50%; background: rgba(244,96,10,.18); }
.checklist li::after { content: ""; position: absolute; left: 6px; top: 10px; width: 6px; height: 3px; border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent); transform: rotate(-45deg); }
.aside-card .checklist li { font-size: 15px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }
.footer-col li a { color: inherit; }
.footer-areas { font-size: 13px; color: rgba(255,255,255,.55); padding-bottom: 24px; }
@media (max-width: 980px) { .split { grid-template-columns: 1fr; } .aside-card { position: static; } }
.card h2.h3 { font-size: 19px; }
.price-columns h3.h4 { font-family: 'Manrope', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.contact-list a:hover { color: var(--accent); }
.prose a, .faq a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
@media (max-width: 760px) {
  .grid-4 { grid-template-columns: 1fr; }
  .hero { padding-top: 36px; }
  .hero-visual { display: none; }
  .hero-trust { gap: 14px; margin-top: 28px; display: grid; grid-template-columns: repeat(3, 1fr); }
  .hero-trust div strong { font-size: 16px; }
  .hero-trust div span { font-size: 12px; line-height: 1.3; display: block; }
  .hero-actions .btn { width: 100%; }
}

/* ==========================================================================
   v3: problem-led homepage sections
   ========================================================================== */
.btn-sm { padding: 11px 20px; font-size: 14px; }
.cta-note { margin-top: 16px; font-size: 14px; font-weight: 600; color: var(--muted); }
.hero-v3 h1 { font-size: clamp(34px, 4.6vw, 54px); text-wrap: balance; }
.section-head.left { text-align: left; margin-left: 0; max-width: 720px; }
.section-head h2 { text-wrap: balance; }

.facts-band { padding: 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--white); }
.facts-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.facts-grid div { padding: 28px 24px; border-left: 1px solid var(--border); }
.facts-grid div:first-child { border-left: 0; padding-left: 0; }
.facts-grid strong { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 26px; color: var(--ink); }
.facts-grid span { font-size: 13px; color: var(--muted); }

.cost { background: var(--ink); color: #fff; padding: 72px 0; }
.cost .section-head h2 { color: #fff; font-size: clamp(26px, 3.4vw, 36px); }
.cost .section-head p { color: rgba(255,255,255,.7); }
.cost-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 8px; }
.cost-item .icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(244,96,10,.16); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.cost-item .icon svg { width: 22px; height: 22px; stroke: var(--accent); }
.cost-item h3 { font-size: 18px; color: #fff; }
.cost-item p { font-size: 15px; color: rgba(255,255,255,.7); margin: 0; }

.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pillar { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; display: flex; flex-direction: column; }
.pillar h3 { font-size: 22px; margin-bottom: 18px; }
.pillar h4 { font-family: 'Manrope', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.pillar .checklist li { font-size: 15px; }
.pillar-change { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--border); }
.pillar-change p { font-size: 15px; font-weight: 600; margin: 0; }

.standards-sec { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.standards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px 40px; max-width: 1000px; margin: 0 auto; }
.standards li { position: relative; padding-left: 34px; }
.standards li::before { content: ""; position: absolute; left: 0; top: 2px; width: 22px; height: 22px; border-radius: 50%; background: var(--accent); }
.standards li::after { content: ""; position: absolute; left: 7px; top: 8px; width: 8px; height: 4px; border-left: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(-45deg); }
.standards strong { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 17px; margin-bottom: 4px; }
.standards span { font-size: 15px; color: var(--muted); }

.industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--border); border-left: 1px solid var(--border); }
.industry { padding: 28px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.industry h3 { font-size: 18px; }
.industry p { font-size: 15px; color: var(--muted); margin: 0; }

.about-panel .eyebrow { margin-bottom: 8px; }
.about-panel h3 { font-size: 28px; margin-bottom: 4px; }

@media (max-width: 980px) {
  .cost-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars, .standards { grid-template-columns: 1fr 1fr; }
  .industry-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .header-cta .btn-sm { display: none; }
  .facts-grid div { padding: 18px 12px; }
  .facts-grid strong { font-size: 19px; }
  .cost { padding: 52px 0; }
  .cost-grid, .pillars, .standards, .industry-grid { grid-template-columns: 1fr; }
  .pillar { padding: 26px; }
}
.area-list li:has(> a) { padding: 0; border: 0; background: none; }
@media (max-width: 760px) {
  .facts-grid { grid-template-columns: 1fr; }
  .facts-grid div { padding: 16px 0; border-left: 0; display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
  .facts-grid div + div { border-top: 1px solid var(--border); }
  .facts-grid span { text-align: right; }
}
.cost-item .fix { margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.9); }
.cost-item .fix strong { color: var(--accent); }
.cost-item { display: flex; flex-direction: column; }
.cost-item .fix { margin-top: auto; }
.cost-item > p:not(.fix) { margin-bottom: 16px; }
.aside-cta { padding: 20px; }
.aside-cta .btn { margin-top: 0; }
.aside-cta { background: none; padding: 0; border-radius: 0; }
.page-hero + section { padding-top: 8px; }
.page-hero .hero-actions { margin-top: 24px; }
.prose h2 + p, .prose h2 + ul { margin-top: 0; }
.prose * + h2 { margin-top: 36px; }
.cost-item .fix { margin-top: 0; }
.cost-cta { margin-top: 56px; padding-top: 48px; border-top: 1px solid rgba(255,255,255,.12); text-align: center; }
.cost-cta h3 { font-size: clamp(24px, 3vw, 32px); color: #fff; }
.cost-cta p { color: rgba(255,255,255,.7); max-width: 52ch; margin: 0 auto; }

/* ---- Color rhythm pass: dark band high on the page, light checklist below pricing ---- */
.standards-sec { background: var(--ink); border: 0; }
.standards-sec .section-head h2 { color: #fff; }
.standards-sec .section-head p { color: rgba(255,255,255,.7); }
.standards-sec .standards strong { color: #fff; }
.standards-sec .standards span { color: rgba(255,255,255,.7); }

.cost { background: var(--white); color: var(--ink); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cost .section-head h2, .cost-item h3, .cost-cta h3 { color: var(--ink); }
.cost .section-head p, .cost-item p, .cost-cta p { color: var(--muted); }
.cost-item .icon { background: rgba(244,96,10,.1); }
.cost-item .fix { border-top-color: var(--border); color: var(--ink-soft); }
.cost-cta { border-top-color: var(--border); }
.cost-cta .btn-outline.on-dark { border-color: var(--ink); color: var(--ink); }
.cost-cta .btn-outline.on-dark:hover { background: var(--ink); color: #fff; }

.areas { background: var(--bg); border: 0; }
.area-list li { background: var(--white); }

/* ==========================================================================
   Mobile pass: built for the phone
   ========================================================================== */
.field input, .field select, .field textarea { font-size: 16px; } /* stops iOS zoom-on-focus */
.card-link { padding: 10px 0; margin-top: 6px; }
.mobile-cta, .swipe-hint { display: none; }

@media (max-width: 760px) {
  .hide-sm { display: none; }
  .wrap { padding: 0 20px; }
  section { padding: 44px 0; }
  section.tight { padding: 36px 0; }
  .section-head { margin-bottom: 24px; }
  .section-head h2 { font-size: 27px; }
  .section-head p { font-size: 16px; }

  /* header */
  .site-header .wrap { height: 64px; }
  .brand img { height: 30px; }
  .nav-toggle { padding: 10px; margin-right: -10px; }
  .call-icon { width: 44px; height: 44px; }
  .mobile-nav a { padding: 14px 0; font-size: 17px; }

  /* hero */
  .hero { padding: 28px 0 8px; }
  .hero::before { display: none; }
  .hero h1, .hero-v3 h1 { font-size: 38px; line-height: 1.08; }
  .hero .lede { font-size: 17px; }
  .hero-actions { margin-top: 24px; gap: 12px; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; padding: 16px 20px; font-size: 16px; }
  .cta-note { text-align: center; font-size: 13px; }

  /* services: swipeable cards with a peek of the next one */
  .swipe-hint { display: block; text-align: center; font-size: 13px; font-weight: 700; color: var(--accent); margin: -8px 0 14px; }
  .pillars { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 14px; margin: 0 -20px; padding: 4px 20px 16px; scroll-padding: 0 20px; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .pillars::-webkit-scrollbar { display: none; }
  .pillar { flex: 0 0 86%; scroll-snap-align: start; padding: 24px; }
  .pillar h3 { font-size: 20px; margin-bottom: 14px; }

  /* built right: tighter two-line items */
  .standards { gap: 18px; }
  .standards span { font-size: 14px; }

  /* industries: compact tiles, titles only */
  .industry-grid { grid-template-columns: 1fr 1fr; border: 0; gap: 10px; }
  .industry { border: 1px solid var(--border); border-radius: 12px; padding: 16px; background: var(--white); display: flex; align-items: center; }
  .industry h3 { font-size: 15px; margin: 0; line-height: 1.3; }
  .industry p { display: none; }

  /* pricing: clean stacked figures */
  .price-card { padding: 28px 22px; }
  .price-amount-row { flex-direction: column; gap: 0; margin: 10px 0 14px; }
  .price-plus { display: none; }
  .price-figure { font-size: 40px; }
  .price-columns { gap: 20px; }

  /* checklist: icon beside the text */
  .cost-grid { gap: 26px; }
  .cost-item { display: grid; grid-template-columns: 44px 1fr; column-gap: 14px; }
  .cost-item .icon { grid-row: 1 / span 3; margin: 0; }
  .cost-item h3 { margin-bottom: 6px; }
  .cost-item > p:not(.fix) { margin-bottom: 10px; font-size: 15px; }
  .cost-item .fix { padding-top: 10px; font-size: 15px; }
  .cost-cta { margin-top: 36px; padding-top: 32px; }
  .cost-cta h3 { font-size: 24px; }

  /* service area chips */
  .area-list { gap: 8px; }
  .area-list li, .area-list a { padding: 9px 14px; font-size: 14px; }

  /* FAQ */
  .faq summary { font-size: 16px; padding: 18px 48px 18px 18px; }
  .faq details > div { padding: 0 18px 18px; }

  /* contact */
  .contact-grid { gap: 28px; }
  .contact-form { padding: 22px; }
  .contact-list li { padding: 8px 0; }
  .contact-list a { display: inline-block; padding: 8px 0; }

  /* footer */
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand p { max-width: none; }
  .footer-col li { margin-bottom: 2px; }
  .footer-col a { display: inline-block; padding: 9px 0; }
  .site-footer { padding: 48px 0 24px; }

  /* inner pages */
  .page-hero { padding: 20px 0 28px; }
  .page-hero h1 { font-size: 34px; }
  .page-hero .lede { font-size: 17px; }
  .breadcrumbs { padding-top: 16px; }

  /* sticky call bar */
  .mobile-cta { display: grid; grid-template-columns: 1fr 1.6fr; gap: 10px; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px)); background: rgba(250, 249, 245, 0.96);
    backdrop-filter: saturate(180%) blur(10px); border-top: 1px solid var(--border); box-shadow: 0 -8px 24px -12px rgba(16,27,44,.25);
    transform: translateY(110%); transition: transform .25s ease; }
  .mobile-cta.show { transform: translateY(0); }
  .mobile-cta .btn { padding: 14px 12px; font-size: 15px; width: 100%; }
  .mobile-cta .btn svg { width: 18px; height: 18px; stroke: currentColor; }
  body { padding-bottom: 76px; }
}
@media (max-width: 370px) {
  .hero h1, .hero-v3 h1 { font-size: 33px; }
  .industry-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .mobile-cta { transition: none; }
  html { scroll-behavior: auto; }
}
@media (max-width: 760px) {
  body { padding-bottom: 0; }
  .site-footer { padding-bottom: calc(96px + env(safe-area-inset-bottom, 0px)); }
  .cta-note { text-align: left; }
}
@media (max-width: 760px) { body.nav-open .mobile-cta { transform: translateY(110%); } .mobile-nav { padding: 12px 20px 24px; } }
/* service-area chips are all real links now */
.area-list li:has(> a) { padding: 0; border: 0; background: none; }
.area-list a { display: inline-block; background: var(--white); border: 1px solid var(--border); color: var(--ink); }
.area-list a:hover, .area-list a:focus-visible { border-color: var(--accent); color: var(--accent); background: var(--white); }
.footer-areas a { color: inherit; text-decoration: underline; text-decoration-color: rgba(255,255,255,.25); text-underline-offset: 3px; }
.footer-areas a:hover { color: var(--accent); }
