/* Printslane — inspired by printslane.com */
:root {
  --bg: #ffffff;
  --bg-soft: #f7f7f7;
  --ink: #1b1b1b;
  --ink-2: #3d3d3d;
  --mute: #7e7e7e;
  --line: #e8e8e8;
  --brand: #dd1d26;
  --brand-dark: #b8171f;
  --amber: #f0a500;
  --white: #ffffff;
  --max: 1200px;
  --font: "Outfit", system-ui, sans-serif;
  --header-h: 4.25rem;
  --radius: 5px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--mute);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--brand);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}
a:hover { color: var(--ink); }

h1, h2, h3, h4 {
  font-family: var(--font);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 0.55em;
}

p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

.skip-link {
  position: absolute; left: 1rem; top: -100px; background: var(--ink);
  color: #fff; padding: 0.6rem 1rem; z-index: 1000;
}
.skip-link:focus { top: 1rem; }

/* Top promo bar — matches live site */
.top-bar {
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
}
.top-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.55rem 0;
  flex-wrap: wrap;
}
.top-bar__note { margin: 0; }
.top-bar__note strong { color: var(--amber); margin-right: 0.35rem; }
.top-bar__links { display: flex; gap: 1.25rem; }
.top-bar__links a { color: #ddd; text-decoration: none; }
.top-bar__links a:hover { color: #fff; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.98);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 1.25rem;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 0;
  z-index: 2;
}
.brand__logo {
  height: 42px;
  width: auto;
  display: block;
}
.brand__text { display: none; }

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}
.site-nav__list {
  display: flex;
  flex-wrap: nowrap;
  gap: 0 0.85rem;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-nav__list > li {
  display: flex;
  align-items: center;
  margin: 0;
  line-height: 1;
}
.site-header__cta {
  z-index: 2;
  white-space: nowrap;
  flex-shrink: 0;
}
.site-nav__list a {
  text-decoration: none;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  display: inline-flex;
  align-items: center;
}
.site-nav__list a:hover,
.site-nav__list a.is-active {
  color: var(--brand);
  border-bottom-color: var(--brand);
}

.has-mega { position: relative; }
.nav-parent {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: none;
  border: 0;
  margin: 0;
  padding: 0.35rem 0;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  appearance: none;
  -webkit-appearance: none;
  vertical-align: middle;
}
.nav-parent:hover,
.nav-parent.is-active,
.nav-parent[aria-expanded="true"] {
  color: var(--brand);
  border-bottom-color: var(--brand);
}
.nav-parent__caret {
  display: block;
  width: 0;
  height: 0;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 4px solid currentColor;
  opacity: 0.65;
  flex-shrink: 0;
  position: relative;
  top: 1px;
}
.mega-menu {
  position: absolute;
  top: calc(100% + 0.65rem);
  left: 50%;
  transform: translateX(-40%);
  width: min(920px, 92vw);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.12);
  z-index: 80;
  padding: 1.1rem 1.2rem 1.25rem;
}
.mega-menu[hidden] { display: none !important; }
.mega-menu__all {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand);
  text-decoration: none;
  margin-bottom: 0.85rem;
}
.mega-menu__all:hover { color: var(--brand-dark); }
.mega-menu__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem 1.25rem;
}
.mega-menu__parent {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand);
  text-decoration: none;
  margin-bottom: 0.45rem;
  border-bottom: none !important;
  padding: 0 !important;
}
.mega-menu__parent:hover { color: var(--brand-dark); }
.mega-menu__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mega-menu__col li + li { margin-top: 0.2rem; }
.mega-menu__col a {
  font-size: 0.88rem !important;
  font-weight: 450 !important;
  color: #555 !important;
  border-bottom: none !important;
  padding: 0.15rem 0 !important;
  text-decoration: none;
  text-transform: none;
  letter-spacing: normal;
}
.mega-menu__col a:hover { color: var(--brand) !important; }

.breadcrumbs {
  padding: 0.75rem 0 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0 0 0.75rem;
  font-size: 0.85rem;
  color: #777;
}
.breadcrumbs__item:not(:last-child)::after {
  content: "/";
  margin-left: 0.5rem;
  color: #bbb;
}
.breadcrumbs a { color: #555; text-decoration: none; }
.breadcrumbs a:hover { color: var(--brand); }

.need-lead {
  font-size: 1.12rem;
  line-height: 1.65;
  color: var(--ink);
}
.need-copy h2 {
  font-size: 1.25rem;
  margin: 1.6rem 0 0.65rem;
}
.need-copy p { margin: 0 0 0.9rem; color: #444; line-height: 1.7; }

.steps-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.step-card {
  padding: 1.25rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}
.step-card__num {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--brand);
  margin-bottom: 0.5rem;
}
.step-card h3 { font-size: 1.05rem; margin: 0 0 0.4rem; }
.step-card p { margin: 0; color: #555; font-size: 0.95rem; }

.footer-keywords {
  padding: 1.5rem 0 0.5rem;
  border-top: 1px solid #2a2a2a;
  margin-top: 1.5rem;
}
.footer-keywords__heading {
  font-size: 0.95rem;
  color: #fff;
  margin: 0 0 0.75rem;
  font-weight: 600;
}
.footer-keywords__cloud {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.85;
  color: #888;
}
.footer-keywords__cloud a {
  color: #aaa;
  text-decoration: none;
}
.footer-keywords__cloud a:hover { color: #fff; }
.footer-keywords__sep { color: #444; margin: 0 0.15rem; }
.site-footer__bottom a { color: #dd1d26; text-decoration: none; }

.steps-row--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.it-sections {
  display: grid;
  gap: 1.5rem;
  max-width: 820px;
}
.it-sections__item h2 {
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
}
.it-sections__item p {
  margin: 0;
  color: #444;
  line-height: 1.7;
}
.it-offer {
  padding: 1.2rem 1.15rem 1.3rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}
.it-offer h3 {
  font-size: 1.05rem;
  margin: 0 0 0.45rem;
  color: var(--ink);
}
.it-offer p {
  margin: 0;
  font-size: 0.92rem;
  color: #555;
  line-height: 1.55;
}
.it-print-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.it-print-band h2 {
  font-size: 1.35rem;
  margin: 0.25rem 0 0.5rem;
}
.it-print-band p {
  margin: 0;
  max-width: 560px;
  color: #555;
  line-height: 1.6;
}
.it-print-band a { color: var(--brand); }

@media (max-width: 980px) {
  .steps-row--4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .steps-row--4 { grid-template-columns: 1fr; }
}

.narrow { max-width: 760px; }
.text-center { text-align: center; }

.card-grid {
  display: grid;
  gap: 1.25rem;
}
.card-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.svc-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.svc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}
.svc-card__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}
.svc-card h3 {
  font-size: 1.05rem;
  margin: 0.9rem 1rem 0.35rem;
  color: var(--ink);
}
.svc-card p {
  margin: 0 1rem 1rem;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}
.svc-card--compact {
  padding: 1.1rem 1.15rem 1.2rem;
}
.svc-card--compact h3 { margin: 0 0 0.4rem; }
.svc-card--compact p { margin: 0 0 0.65rem; }
.svc-card .service-tile__more {
  margin: 0 1rem 1rem;
  display: inline-block;
}
.svc-card--compact .service-tile__more { margin: 0; }

.section--muted { background: #f7f7f8; }

.cross-links__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
}
.cross-links__item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.cross-links__item:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
}
.cross-links__label {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
}
.cross-links__blurb {
  font-size: 0.8rem;
  color: #777;
  line-height: 1.4;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  width: 2.6rem;
  height: 2.6rem;
  border-radius: var(--radius);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: var(--ink);
  position: relative;
}
.nav-toggle__bars::before,
.nav-toggle__bars::after { content: ""; position: absolute; left: 0; }
.nav-toggle__bars::before { top: -5px; }
.nav-toggle__bars::after { top: 5px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before {
  top: 0; transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after {
  top: 0; transform: rotate(-45deg);
}

/* Buttons — live site style */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 10px 28px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 500;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }

.btn--primary {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
.btn--primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: #fff;
}

.btn--ghost,
.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover,
.btn--outline:hover {
  background: var(--ink);
  color: #fff;
}

.btn--ink {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.btn--ink:hover { background: #000; color: #fff; }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* Split hero — matches live homepage */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 3.5rem 0 2.5rem;
  background: var(--bg);
}

.hero__copy { max-width: 34rem; }

.hero__brand {
  display: none;
}

.hero__headline {
  font-size: clamp(2rem, 4.2vw, 3.15rem);
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 1rem;
  line-height: 1.15;
}

.hero__support {
  font-size: 1.05rem;
  color: var(--mute);
  margin: 0 0 1.75rem;
  max-width: 32rem;
}

.hero__trust-line {
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  color: var(--ink-2);
}
.hero__trust-line strong {
  color: var(--brand);
}

.hero__visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-soft);
  min-height: 380px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.12);
}
.hero__visual img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

/* Highlight category cards — like live site Document / Books / Binding */
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.highlight-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--line);
  box-shadow: 0 8px 28px rgba(0,0,0,0.04);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.1);
  color: inherit;
}
.highlight-card__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eee;
}
.highlight-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.highlight-card:hover .highlight-card__img img {
  transform: scale(1.06);
}
.highlight-card__body {
  padding: 1.35rem 1.4rem 1.6rem;
}
.highlight-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}
.highlight-card p {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
}
.highlight-card__list {
  margin: 0 0 1rem;
}
.highlight-card__list li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.1rem;
  font-size: 0.9rem;
  color: var(--ink-2);
  border-bottom: 1px solid var(--line);
}
.highlight-card__list li:last-child { border-bottom: 0; }
.highlight-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}

/* Page banner hero for inner pages */
.page-banner {
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.page-banner__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.page-banner__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-banner__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(17,17,17,0.88) 0%, rgba(17,17,17,0.55) 55%, rgba(17,17,17,0.35) 100%);
}
.page-banner .container {
  padding: 3.25rem 0 2.5rem;
  position: relative;
}
.page-banner .section__eyebrow {
  color: var(--amber);
}
.page-banner h1 {
  color: #fff;
  font-size: clamp(1.9rem, 4vw, 2.85rem);
  max-width: 16ch;
}
.page-banner p {
  color: rgba(255,255,255,0.82);
  max-width: 36rem;
  margin: 0;
}

/* Photo CTA band */
.cta-photo {
  position: relative;
  padding: 4.5rem 0;
  color: #fff;
  isolation: isolate;
  background: var(--ink);
}
.cta-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: var(--cta-bg);
  background-size: cover;
  background-position: center;
  opacity: 0.45;
}
.cta-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(17,17,17,0.92) 0%, rgba(17,17,17,0.75) 50%, rgba(17,17,17,0.55) 100%);
}
.cta-photo__inner {
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 2rem;
  align-items: center;
}
.cta-photo .section__eyebrow { color: var(--amber); }
.cta-photo .cta-band__title { color: #fff; }
.cta-photo__lead {
  color: rgba(255,255,255,0.8);
  max-width: 36rem;
  margin: 0;
}
.cta-photo .btn--ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.cta-photo .btn--ghost:hover {
  background: #fff;
  color: var(--ink);
}

@media (max-width: 980px) {
  .highlight-grid,
  .cta-photo__inner {
    grid-template-columns: 1fr;
  }
  .hero__visual img { min-height: 280px; }
}


.hero__badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: #fff;
  color: var(--ink);
  padding: 0.65rem 1rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.hero__badge span {
  display: block;
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 500;
}

/* Trust / features strip */
.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  padding: 1.5rem 0 0;
}
.trust__item {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--bg-soft);
  border-radius: 10px;
}
.trust__value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 0.25rem;
}
.trust__label {
  margin: 0;
  font-size: 0.9rem;
  color: var(--mute);
}

/* Sections */
.section { padding: 4.5rem 0; }
.section--alt { background: var(--bg-soft); }
.section--ink {
  background: var(--ink);
  color: #b0b0b0;
}
.section--ink h2, .section--ink h3 { color: #fff; }

.section__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.65rem;
}
.section--ink .section__eyebrow { color: var(--amber); }

.section__title {
  font-size: clamp(1.75rem, 3.2vw, 2.4rem);
  max-width: 22ch;
  margin-bottom: 0.5em;
}
.section__lead {
  max-width: 40rem;
  margin-bottom: 2.25rem;
}
.section--ink .section__lead { color: #999; }
.section__head { margin-bottom: 2.25rem; }

/* Service cards — soft, like live Elementor cards */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-tile {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--line);
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease), border-color 0.25s;
}
.service-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  border-color: transparent;
  color: inherit;
}
.service-tile__img {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #eee;
}
.service-tile__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}
.service-tile:hover .service-tile__img img { transform: scale(1.05); }
.service-tile__body { padding: 1.25rem 1.35rem 1.5rem; }
.service-tile h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4em;
}
.service-tile p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--mute);
}
.service-tile__more {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand);
}

/* How it works */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.step.is-active,
.step:hover {
  border-color: var(--brand);
  box-shadow: 0 10px 28px rgba(221, 29, 38, 0.08);
}
.step__num {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--brand);
  margin-bottom: 0.75rem;
}
.step h3 { font-size: 1.2rem; }
.step p { margin: 0; font-size: 0.95rem; }

/* Feature trio under how-it-works style */
.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.feature {
  padding: 1.5rem;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--line);
}
.feature h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}
.feature p { margin: 0; font-size: 0.92rem; }

/* Testimonials */
.quote-rail {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.quote {
  margin: 0;
  padding: 1.75rem;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--line);
}
.quote blockquote {
  margin: 0 0 1.15rem;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--ink-2);
  font-weight: 500;
}
.quote cite {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--mute);
}
.quote cite strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
}

/* CTA band */
.cta-band {
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 2rem;
  align-items: center;
}
.cta-band__title {
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  max-width: 18ch;
  margin-bottom: 0.4em;
}
.section--ink .btn--ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.45);
}
.section--ink .btn--ghost:hover {
  background: #fff;
  color: var(--ink);
}

/* Inner page hero */
.page-hero {
  padding: 3rem 0 2.25rem;
  background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  max-width: 18ch;
}
.page-hero p {
  max-width: 38rem;
  margin: 0;
}

/* Pricing */
.price-tables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.price-table {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.price-table h3 {
  margin: 0;
  padding: 1rem 1.25rem;
  background: var(--ink);
  color: #fff;
  font-size: 1.05rem;
}
.price-table table { width: 100%; border-collapse: collapse; }
.price-table th, .price-table td {
  padding: 0.85rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
  color: var(--ink-2);
}
.price-table tr:last-child td { border-bottom: 0; }
.price-table td:last-child {
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}

.estimator {
  margin-top: 2rem;
  padding: 1.75rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  align-items: end;
}
.estimator h3 { grid-column: 1 / -1; margin: 0; }
.estimator__fields {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}
.estimator__result {
  background: var(--brand);
  color: #fff;
  padding: 1.35rem;
  border-radius: var(--radius);
}
.estimator__result p {
  margin: 0 0 0.25rem;
  font-size: 0.8rem;
  opacity: 0.85;
}
.estimator__result strong {
  font-size: 1.85rem;
  font-weight: 700;
}
.estimator__note {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.85rem;
}

/* Forms */
.form-grid { display: grid; gap: 1rem; }
.form-grid--2 { grid-template-columns: 1fr 1fr; }
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.35rem;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  font: inherit;
  color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(221, 29, 38, 0.12);
}
.field textarea { min-height: 130px; resize: vertical; }
.field .error {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.8rem;
  color: var(--brand);
}
.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color: var(--brand); }

.alert {
  padding: 0.9rem 1rem;
  border-radius: var(--radius);
  margin-bottom: 1.15rem;
  font-size: 0.95rem;
}
.alert--ok { background: #e8f5ec; color: #0f5132; border: 1px solid #b7dfc4; }
.alert--err { background: #fdecea; color: #7a1c14; border: 1px solid #f0b4ae; }
.contact-form-note {
  margin: 0 0 1.1rem;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}
.field .error[hidden] { display: none; }
.field.has-error .error { display: block; }

.contact-layout,
.quote-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap: 2.5rem;
  align-items: start;
}
.info-panel {
  padding: 1.75rem;
  background: var(--ink);
  color: #b8b8b8;
  border-radius: 12px;
}
.info-panel h2 { color: #fff; font-size: 1.4rem; }
.info-panel a { color: #fff; }
.info-panel p { margin-bottom: 0.85rem; }
.map-embed {
  margin-top: 1rem;
  border: 0;
  width: 100%;
  min-height: 210px;
  border-radius: 8px;
  filter: grayscale(0.35);
}

/* FAQ */
.faq-list { max-width: 760px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item__btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 0;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
  font-size: 1.1rem;
  color: var(--ink);
  font-weight: 600;
}
.faq-item__icon {
  flex-shrink: 0;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: rgba(221, 29, 38, 0.1);
  position: relative;
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  background: var(--brand);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq-item__icon::before { width: 10px; height: 2px; }
.faq-item__icon::after { width: 2px; height: 10px; }
.faq-item.is-open .faq-item__icon::after { opacity: 0; }
.faq-item__panel {
  display: none;
  padding: 0 0 1.25rem;
  color: var(--mute);
}
.faq-item.is-open .faq-item__panel { display: block; }

/* Premium FAQ page */
.faq-pro {
  padding: 3.5rem 0 4.5rem;
  background:
    radial-gradient(ellipse at top right, rgba(221, 29, 38, 0.06), transparent 45%),
    var(--bg);
}
.faq-pro__layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2rem;
  align-items: start;
}
.faq-pro__aside {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}
.faq-pro__card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.05);
}
.faq-pro__kicker {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
}
.faq-pro__aside-title {
  font-size: 1.35rem;
  margin-bottom: 1.1rem;
}
.faq-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1rem;
}
.faq-chip {
  border: 1px solid var(--line);
  background: var(--bg-soft);
  color: var(--ink-2);
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.faq-chip:hover {
  border-color: var(--brand);
  color: var(--brand);
}
.faq-chip.is-active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.faq-search input {
  width: 100%;
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  background: #fff;
  color: var(--ink);
  margin-bottom: 1.25rem;
}
.faq-search input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(221, 29, 38, 0.12);
}
.faq-pro__help {
  padding-top: 1.15rem;
  border-top: 1px solid var(--line);
}
.faq-pro__help-title {
  margin: 0 0 0.35rem;
  color: var(--ink);
  font-weight: 700;
  font-size: 1rem;
}
.faq-pro__help-text {
  margin: 0 0 1rem;
  font-size: 0.9rem;
}
.faq-pro__meta {
  margin-top: 1rem;
  font-size: 0.85rem;
}
.faq-pro__meta li + li { margin-top: 0.35rem; }
.faq-pro__meta a {
  color: var(--ink-2);
  text-decoration: none;
}
.faq-pro__meta a:hover { color: var(--brand); }

.faq-group + .faq-group { margin-top: 2rem; }
.faq-group__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--line);
}
.faq-group__head h2 {
  margin: 0;
  font-size: 1.25rem;
}
.faq-group__head span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--mute);
}
.faq-list--premium {
  max-width: none;
}
.faq-list--premium .faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-list--premium .faq-item:hover {
  border-color: rgba(221, 29, 38, 0.35);
}
.faq-list--premium .faq-item.is-open {
  border-color: var(--brand);
  box-shadow: 0 12px 32px rgba(221, 29, 38, 0.08);
}
.faq-list--premium .faq-item__btn {
  padding: 1.1rem 1.2rem;
  font-size: 1.02rem;
}
.faq-list--premium .faq-item__panel {
  padding: 0 1.2rem 1.15rem;
  color: var(--ink-2);
  line-height: 1.65;
}
.faq-list--premium .faq-item__panel p { margin: 0; }
.faq-item[hidden],
.faq-group[hidden] { display: none !important; }
.faq-empty {
  padding: 2rem;
  text-align: center;
  background: #fff;
  border: 1px dashed var(--line);
  border-radius: 12px;
  color: var(--mute);
}

/* Homepage FAQ — fill the empty right side */
.home-faq__layout {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap: 2.5rem;
  align-items: start;
}
.home-faq__intro .section__title {
  max-width: 12ch;
}
.home-faq__intro .section__lead {
  margin-bottom: 1.25rem;
}
.home-faq__points {
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.55rem;
}
.home-faq__points li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--ink-2);
  font-size: 0.95rem;
  font-weight: 500;
}
.home-faq__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
}
.home-faq__panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.05);
}
.home-faq__panel img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.home-faq__panel-body {
  padding: 1.25rem 1.35rem 1.45rem;
}
.home-faq__panel-title {
  margin: 0 0 0.35rem;
  color: var(--ink);
  font-weight: 700;
  font-size: 1.05rem;
}
.home-faq__panel-body p {
  margin: 0 0 1rem;
  font-size: 0.92rem;
}
.home-faq__list .faq-list--premium {
  max-width: none;
}

@media (max-width: 980px) {
  .faq-pro__layout {
    grid-template-columns: 1fr;
  }
  .faq-pro__aside {
    position: static;
  }
  .home-faq__layout {
    grid-template-columns: 1fr;
  }
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.blog-card {
  display: block;
  padding: 1.75rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.07);
  color: inherit;
}
.blog-card__date {
  font-size: 0.78rem;
  color: var(--mute);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.blog-card h2 { font-size: 1.25rem; margin: 0.45rem 0; }
.blog-card p { margin: 0; font-size: 0.95rem; }

.prose { max-width: 680px; color: var(--ink-2); }
.prose p { margin-bottom: 1.1em; }
.prose code {
  font-size: 0.9em;
  background: var(--bg-soft);
  padding: 0.1em 0.35em;
  border-radius: 3px;
}

/* Service detail */
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.detail-media {
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--line);
}
.detail-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.checklist { margin: 1.25rem 0; }
.checklist li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.4rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
}

/* Intro block under hero on home */
.intro-block {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}
.intro-block h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.site-footer {
  background: #111;
  color: #999;
  padding: 4rem 0 5.5rem;
  font-size: 0.95rem;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2rem;
  margin-bottom: 2.25rem;
}
.site-footer__logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 10px;
  padding: 0.65rem 0.9rem;
  margin-bottom: 1rem;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
.site-footer__logo-img {
  height: 40px;
  width: auto;
  display: block;
  filter: none;
}
.site-footer__logo {
  font-size: 1.4rem;
  color: #fff;
  margin: 0 0 0.65rem;
  font-weight: 700;
}
.site-footer__heading {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 0.9rem;
  font-weight: 600;
}
.site-footer__links a,
.site-footer__address a {
  color: #999;
  text-decoration: none;
}
.site-footer__links a:hover,
.site-footer__address a:hover { color: #fff; }
.site-footer__links li + li { margin-top: 0.4rem; }
.site-footer__address { font-style: normal; }
.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.35rem;
  border-top: 1px solid #2a2a2a;
  font-size: 0.85rem;
}
.site-footer__bottom p { margin: 0; }

/* Float Call / WhatsApp */
.float-bar {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  display: flex;
  gap: 0.45rem;
}
.float-bar__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 5.25rem;
  padding: 0.75rem 1.1rem;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.float-bar__btn--call { background: var(--ink); color: #fff; }
.float-bar__btn--wa { background: #25d366; color: #fff; }
.float-bar__btn:hover { color: #fff; filter: brightness(1.06); }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .service-tile:hover, .blog-card:hover { transform: none; }
}

@media (max-width: 980px) {
  .hero,
  .service-grid,
  .steps,
  .feature-row,
  .quote-rail,
  .price-tables,
  .blog-grid,
  .contact-layout,
  .quote-layout,
  .detail-layout,
  .cta-band,
  .estimator,
  .trust,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .hero { gap: 1.75rem; padding-top: 2rem; }
  .hero__visual img { min-height: 260px; }
  .estimator__fields { grid-template-columns: 1fr; }
  .form-grid--2 { grid-template-columns: 1fr; }

  .nav-toggle { display: inline-flex; }
  .site-header__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    column-gap: 0.75rem;
  }
  .site-header__cta {
    order: 2;
    margin-left: auto;
    margin-right: 0.5rem;
    padding: 0.55rem 0.9rem;
    font-size: 0.85rem;
  }
  .nav-toggle { order: 3; }
  .brand { order: 1; }
  .site-nav {
    order: 4;
    position: fixed;
    inset: calc(var(--header-h) + 2rem) 0 auto 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.35rem;
    gap: 0.85rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    width: 100%;
  }
  .site-nav.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
  .site-nav__list { flex-direction: column; align-items: stretch; gap: 0; flex-wrap: wrap; }
  .site-nav__list a {
    display: block;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
  }
  .has-mega { width: 100%; }
  .nav-parent {
    width: 100%;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--line);
  }
  .mega-menu {
    position: static;
    transform: none;
    width: 100%;
    box-shadow: none;
    border: 0;
    border-radius: 0;
    padding: 0.35rem 0 0.85rem 0.5rem;
    background: transparent;
  }
  .mega-menu__grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  .steps-row { grid-template-columns: 1fr; }
  .footer-keywords__cloud { font-size: 0.78rem; }
  .card-grid--3,
  .card-grid--4 { grid-template-columns: 1fr; }
  .cross-links__grid { grid-template-columns: 1fr 1fr; }

  .float-bar { left: 0.75rem; right: 0.75rem; }
  .float-bar__btn { flex: 1; }
  .site-footer { padding-bottom: 5rem; }
}

@media (max-width: 560px) {
  .top-bar__links { display: none; }
  .brand__logo { height: 34px; }
}
