/* PrintPathway - Style A: light slate + teal, consulting-clean */

:root {
  --slate-950: #0f172a;
  --slate-900: #1e293b;
  --slate-800: #334155;
  --slate-700: #475569;
  --slate-600: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;

  --teal-800: #115e59;
  --teal-700: #0f766e;
  --teal-600: #0d9488;
  --teal-500: #14b8a6;
  --teal-100: #ccfbf1;
  --teal-50: #f0fdfa;

  --amber-600: #b45309;
  --amber-50: #fffbeb;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Public Sans", -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --shadow-sm: 0 1px 2px 0 rgb(15 23 42 / 0.06);
  --shadow-md: 0 8px 24px -8px rgb(15 23 42 / 0.14);
  --shadow-lg: 0 20px 45px -20px rgb(15 23 42 / 0.25);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--slate-800);
  background: var(--slate-50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--slate-950);
  line-height: 1.15;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.1rem, 4vw, 3rem); font-weight: 600; }
h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 600; }

p { margin: 0 0 1em; }
a { color: var(--teal-700); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
  background: var(--slate-950);
  color: white;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  z-index: 100;
}

/* Header */
.site-header {
  background: white;
  border-bottom: 1px solid var(--slate-200);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--slate-950);
  font-weight: 700;
  font-size: 1.05rem;
}
.brand:hover { text-decoration: none; }
.brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--teal-600), var(--teal-800));
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
}
.brand__name { font-family: var(--font-display); }

.site-nav {
  display: none;
  gap: 22px;
  margin-left: auto;
  align-items: center;
}
.site-nav a {
  color: var(--slate-700);
  font-weight: 500;
  font-size: 0.95rem;
}
.site-nav a:hover { color: var(--teal-700); text-decoration: none; }

@media (min-width: 900px) {
  .site-nav { display: flex; }
}

.site-header__cta { margin-left: 12px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: 12px 22px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 1rem;
  font-family: var(--font-body);
  transition: transform 0.08s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn--primary {
  background: var(--teal-600);
  color: white;
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { background: var(--teal-700); text-decoration: none; }
.btn--outline {
  background: transparent;
  color: var(--slate-900);
  border-color: var(--slate-300);
}
.btn--outline:hover { border-color: var(--teal-600); color: var(--teal-700); text-decoration: none; }
.btn--sm { padding: 8px 16px; font-size: 0.9rem; }

/* Hero */
.hero {
  position: relative;
  background:
    linear-gradient(100deg, rgba(240, 253, 250, 0.94) 0%, rgba(240, 253, 250, 0.88) 38%, rgba(248, 250, 252, 0.55) 62%, rgba(248, 250, 252, 0.3) 100%),
    url("/images/hero-office-print.jpg");
  background-size: cover;
  background-position: right center;
  border-bottom: 1px solid var(--slate-200);
  padding: 72px 0 60px;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, var(--slate-50) 100%);
  pointer-events: none;
}
.hero .wrap {
  position: relative;
  z-index: 1;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-700);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hero__subhead {
  font-size: 1.15rem;
  color: var(--slate-700);
  max-width: 62ch;
}
.hero__actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

/* Sections */
.section { padding: 56px 0; }
.section--tinted { background: white; border-top: 1px solid var(--slate-200); border-bottom: 1px solid var(--slate-200); }
.section__head { max-width: 68ch; margin-bottom: 32px; }
.section__eyebrow {
  color: var(--teal-700);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}

/* Two-column pains/outcomes */
.two-col {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 860px) {
  .two-col { grid-template-columns: 1fr 1fr; }
}

.check-list, .pain-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.check-list li, .pain-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  font-size: 0.98rem;
  color: var(--slate-800);
}
.pain-list li::before {
  content: "!";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--amber-50);
  color: var(--amber-600);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.check-list li::before {
  content: "\2713";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--teal-100);
  color: var(--teal-700);
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Steps */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  counter-reset: step;
}
@media (min-width: 860px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
}
.steps li {
  counter-increment: step;
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 22px;
  position: relative;
}
.steps li::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--slate-950);
  color: white;
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 14px;
}

/* Tech reality cards */
.reality-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .reality-grid { grid-template-columns: repeat(2, 1fr); }
}
.reality-card {
  background: var(--slate-950);
  color: var(--slate-100);
  border-radius: var(--radius-lg);
  padding: 22px;
}
.reality-card h3 { color: white; font-size: 1.05rem; }
.reality-card p { color: var(--slate-300); margin: 0; font-size: 0.95rem; }

/* Extra sections / bullet blocks */
.content-section { margin-bottom: 40px; }
.content-section__bullets {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.content-section__bullets li {
  padding-left: 22px;
  position: relative;
}
.content-section__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-500);
}
.content-section__closing {
  margin-top: 14px;
  color: var(--slate-600);
  font-style: italic;
}

/* Topic grid on Home */
.topic-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .topic-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1020px) {
  .topic-grid { grid-template-columns: repeat(3, 1fr); }
}
.topic-card {
  display: block;
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.15s ease, transform 0.15s ease;
  height: 100%;
}
.topic-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  text-decoration: none;
}
.topic-card h3 { margin-bottom: 8px; }
.topic-card p { color: var(--slate-600); margin: 0; font-size: 0.95rem; }
.topic-card__arrow { color: var(--teal-600); font-weight: 700; margin-top: 12px; display: inline-block; }

/* Related pages */
.related-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.related-list a {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid var(--slate-300);
  border-radius: 999px;
  color: var(--slate-800);
  font-size: 0.9rem;
  font-weight: 500;
}
.related-list a:hover {
  border-color: var(--teal-600);
  color: var(--teal-700);
  text-decoration: none;
}

/* Partner cards */
.partner-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .partner-grid { grid-template-columns: repeat(2, 1fr); }
}
.partner-card {
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 22px;
}
.partner-card h3 { margin-bottom: 8px; color: var(--teal-800); }
.partner-card p { margin: 0; color: var(--slate-600); }

/* Lead form */
.lead-form-panel {
  background: var(--slate-950);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--slate-100);
}
.lead-form-panel h2 { color: white; }
.lead-form-panel > p { color: var(--slate-300); max-width: 60ch; }

.lead-form { margin-top: 24px; }
.form-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .form-grid--2 { grid-template-columns: 1fr 1fr; }
}
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--slate-200);
}
.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field select,
.form-field textarea {
  background: var(--slate-900);
  border: 1px solid var(--slate-700);
  border-radius: var(--radius-sm);
  padding: 11px 12px;
  color: white;
  font-family: var(--font-body);
  font-size: 0.98rem;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--slate-600); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: 2px solid var(--teal-500);
  outline-offset: 1px;
}
.form-field .field-validation-error, .validation-summary-errors {
  color: #fca5a5;
  font-size: 0.85rem;
}

fieldset.form-fieldset {
  border: 1px solid var(--slate-700);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  margin: 0;
}
fieldset.form-fieldset legend {
  font-weight: 600;
  color: var(--slate-100);
  padding: 0 6px;
  font-size: 0.92rem;
}
.checkbox-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
  margin-top: 8px;
}
@media (min-width: 700px) {
  .checkbox-grid { grid-template-columns: 1fr 1fr; }
}
.checkbox-grid label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-weight: 400;
  font-size: 0.92rem;
  color: var(--slate-200);
}
.checkbox-grid input[type="checkbox"] { margin-top: 3px; }

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.lead-form__submit { margin-top: 22px; }

/* Thank you page */
.thankyou-hero { text-align: center; padding: 96px 0 64px; }
.thankyou-hero__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--teal-100);
  color: var(--teal-700);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
}

/* Footer */
.site-footer {
  background: var(--slate-950);
  color: var(--slate-300);
  padding: 40px 0 28px;
  margin-top: 40px;
}
.site-footer__inner { display: flex; flex-direction: column; gap: 18px; }
.site-footer__brand { display: flex; align-items: center; gap: 10px; color: white; font-weight: 700; }
.site-footer__links { display: flex; gap: 16px; flex-wrap: wrap; }
.site-footer__links a { color: var(--slate-300); font-size: 0.9rem; }
.site-footer__links a:hover { color: var(--teal-400, #2dd4bf); }
.site-footer__legal { font-size: 0.82rem; color: var(--slate-600); margin: 0; }
.site-footer__legal a { color: var(--slate-600); margin-left: 12px; text-decoration: underline; }
.site-footer__legal a:hover { color: var(--teal-400, #2dd4bf); }
