/* ============================================================
   Spero Dynamics - shared stylesheet
   Modern, clean, self-contained (no external dependencies).
   ============================================================ */

:root {
  --bg: #fafaf8;
  --surface: #ffffff;
  --ink: #101418;
  --ink-soft: #4b5563;
  --ink-faint: #596579;
  --line: #e5e7eb;
  --accent: #4f46e5;
  --accent-dark: #3730c9;
  --accent-soft: #eef0ff;
  --dark: #0b1120;
  --dark-soft: #111a2e;
  --radius: 14px;
  --shadow-sm: 0 1px 2px rgba(16, 20, 24, .05);
  --shadow-md: 0 8px 24px rgba(16, 20, 24, .08);
  --shadow-lg: 0 20px 50px rgba(16, 20, 24, .12);
  --maxw: 1120px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
          Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -.02em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  flex: none;
}

.brand small {
  display: block;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav a {
  font-size: .95rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color .15s;
}

.nav a:hover { color: var(--ink); }

.nav a.active { color: var(--ink); font-weight: 600; }

.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: .6rem 1.15rem;
  border-radius: 999px;
  font-weight: 600 !important;
  transition: background .15s, transform .15s;
}

.nav-cta:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.nav-toggle {
  min-height: 44px;
  min-width: 44px;
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: .5rem;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 600;
  font-size: .98rem;
  padding: .85rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .15s;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  border-color: var(--line);
  background: var(--surface);
  color: var(--ink);
}

.btn-ghost:hover { border-color: var(--ink-faint); transform: translateY(-1px); }

.btn-light {
  background: #fff;
  color: var(--dark);
}

.btn-light:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }

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

.hero {
  padding: 6.5rem 0 5rem;
  position: relative;
  overflow: hidden;
}



.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: .45rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.4vw, 3.9rem);
  line-height: 1.08;
  letter-spacing: -.03em;
  font-weight: 800;
  max-width: 15ch;
}

.hero h1 .em { color: var(--accent); }

.hero-sub {
  margin-top: 1.4rem;
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 2.2rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 3.2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.stat b {
  display: block;
  font-size: 1.7rem;
  letter-spacing: -.02em;
  font-weight: 800;
}

.stat span {
  font-size: .85rem;
  color: var(--ink-faint);
  font-weight: 500;
}

/* Page hero (subpages) */
.page-hero { padding: 4.5rem 0 3rem; }
.page-hero h1 {
  font-size: clamp(2rem, 4.4vw, 3rem);
  letter-spacing: -.03em;
  line-height: 1.1;
  font-weight: 800;
}
.page-hero p {
  margin-top: 1rem;
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 60ch;
}

/* ---------------- Sections ---------------- */

.section { padding: 4.5rem 0; }
.section-tight { padding: 3rem 0; }

.section-head { max-width: 56ch; margin-bottom: 2.8rem; }

.kicker {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .7rem;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  letter-spacing: -.025em;
  line-height: 1.15;
  font-weight: 800;
}

.section-head p { margin-top: .9rem; color: var(--ink-soft); font-size: 1.05rem; }

/* ---------------- Card grid ---------------- */

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem;
  box-shadow: var(--shadow-sm);
  transition: transform .18s, box-shadow .18s, border-color .18s;
}

.card:hover {
  border-color: #d3d6e4;
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  color: var(--accent);
}

.card h3 {
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -.01em;
  margin-bottom: .45rem;
}

.card p { font-size: .95rem; color: var(--ink-soft); }

.card ul { margin-top: .8rem; padding-left: 1.1rem; }
.card ul li { font-size: .92rem; color: var(--ink-soft); margin-bottom: .35rem; }

/* ---------------- Dark band ---------------- */

.band-dark {
  background: var(--dark);
  color: #e8ebf4;
  position: relative;
  overflow: hidden;
}



.band-dark .kicker { color: #a5b0ff; }

.band-dark .section-head h2 { color: #fff; }
.band-dark .section-head p { color: #aab3c8; }

.band-dark .card {
  background: var(--dark-soft);
  border-color: rgba(255, 255, 255, .08);
  color: #e8ebf4;
  box-shadow: none;
}

.band-dark .card:hover { border-color: rgba(255, 255, 255, .2); }

.band-dark .card h3 { color: #fff; }
.band-dark .card p, .band-dark .card li { color: #aab3c8; }

.band-dark .card-icon {
  background: rgba(79, 70, 229, .25);
  color: #b9c0ff;
}

/* Split comparison (proactive vs reactive) */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.compare .col {
  border-radius: var(--radius);
  padding: 1.9rem;
  border: 1px solid var(--line);
  background: var(--surface);
}

.compare .col.good {
  background: var(--accent-soft);
  border-color: #d9dcff;
}

.compare .col h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.compare .col ul { list-style: none; }

.compare .col li {
  padding-left: 1.6rem;
  position: relative;
  margin-bottom: .65rem;
  font-size: .95rem;
  color: var(--ink-soft);
}

.compare .col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .5em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink-faint);
}

.compare .col.good li::before { background: var(--accent); }

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

.cta-band {
  background: var(--accent);
  color: #fff;
  border-radius: calc(var(--radius) + 6px);
  padding: 3rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
}

.cta-band h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  letter-spacing: -.02em;
  font-weight: 800;
  line-height: 1.15;
}

.cta-band p { margin-top: .5rem; max-width: 46ch; }

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

.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.price-card .price {
  font-size: 2.3rem;
  font-weight: 800;
  letter-spacing: -.03em;
}

.price-card .price small {
  font-size: .95rem;
  font-weight: 500;
  color: var(--ink-faint);
}

.price-card .note {
  font-size: .85rem;
  color: var(--ink-faint);
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px dashed var(--line);
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.field { margin-bottom: 1.15rem; }

.field label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: .4rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  font-size: .95rem;
  padding: .7rem .9rem;
  border: 1px solid var(--ink-faint);
  border-radius: 10px;
  background: var(--bg);
  color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
}

.field textarea { min-height: 120px; resize: vertical; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.checkbox-field {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  font-size: .9rem;
  color: var(--ink-soft);
}

.checkbox-field input { width: auto; margin-top: .3rem; accent-color: var(--accent); }

.contact-info { display: flex; flex-direction: column; gap: 1.1rem; }

.info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow-sm);
}

.info-card h3 {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--ink-faint);
  margin-bottom: .5rem;
  font-weight: 700;
}

.info-card p { font-size: .98rem; }

.info-card a.phone {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--accent);
}

.info-card .hint { color: var(--ink-faint); font-size: .85rem; margin-top: .3rem; }

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

.about-figure {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.portrait-card {
  background: var(--dark);
  border-radius: calc(var(--radius) + 6px);
  padding: 1.25rem;
  color: #fff;
  position: sticky;
  top: 96px;
}

.portrait-card .name {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-top: 1.5rem;
}

.portrait-card .role {
  color: #aab3c8;
  font-size: .95rem;
  margin-top: .2rem;
}

.portrait-card .loc {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .92rem;
  color: #aab3c8;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.portrait-card .loc a { color: #fff; font-weight: 600; }

.about-copy p { margin-bottom: 1.15rem; color: var(--ink-soft); }
.about-copy p strong { color: var(--ink); }

.pull-quote {
  margin: 2rem 0;
  padding: 1.5rem 1.75rem;
  border-left: 3px solid var(--accent);
  background: var(--accent-soft);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -.01em;
  line-height: 1.45;
}

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

.site-footer {
  border-top: 1px solid var(--line);
  padding: 3rem 0 2.5rem;
  margin-top: 2rem;
  background: var(--surface);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-brand p {
  color: var(--ink-faint);
  font-size: .9rem;
  margin-top: .9rem;
  max-width: 34ch;
}

.footer-nav {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.footer-nav h4 {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--ink-faint);
  margin-bottom: .8rem;
  font-weight: 700;
}

.footer-nav a {
  display: block;
  font-size: .92rem;
  color: var(--ink-soft);
  margin-bottom: .5rem;
}

.footer-nav a:hover { color: var(--ink); }

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .82rem;
  color: var(--ink-faint);
}

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

@media (max-width: 900px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
  .about-figure { grid-template-columns: 1fr; }
  .portrait-card { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: .5rem 1.5rem 1rem;
    display: none;
  }

  .nav.open { display: flex; }

  .nav a { padding: .8rem 0; font-size: 1rem; }

  .nav-cta { margin-top: .6rem; text-align: center; justify-content: center; }

  .nav-toggle { display: block; }

  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .grid, .grid-2, .compare { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero { padding: 4rem 0 3.5rem; }
  .hero-stats { gap: 1.5rem; }
  .cta-band { padding: 2.2rem 1.8rem; }
}

/* Accessible shared interactions */
:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }
.band-dark :focus-visible, .cta-band :focus-visible, .portrait-card :focus-visible { outline-color: #fff; }
.skip-link { position: fixed; top: .5rem; left: 1rem; z-index: 100; padding: .75rem 1rem; background: var(--dark); color: #fff; transform: translateY(-180%); }
.skip-link:focus { transform: translateY(0); outline-color: var(--accent); }
main, [id] { scroll-margin-top: 6rem; }
main:focus { outline: none; }
::placeholder { color: var(--ink-faint); opacity: 1; }
.btn { font-family: inherit; justify-content: center; text-align: center; max-width: 100%; min-height: 44px; }
button:disabled { background: #e5e7eb; color: #4b5563; border-color: #b8bec8; cursor: not-allowed; box-shadow: none; transform: none; }
.nav a { min-height: 44px; display: inline-flex; align-items: center; }
.nav a[aria-current="page"]:not(.nav-cta) { text-decoration: underline; text-underline-offset: .35em; }
.text-link { color: var(--accent); text-decoration: underline; text-underline-offset: .2em; font-weight: 600; }
p a:not(.btn), .prose a:not(.btn), .form-notice a { text-decoration: underline; text-underline-offset: .2em; }
.band-dark .text-link { color: #c6ceff; }
.honeypot { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }

/* AI-first content spine, using the existing palette and type */
h1, h2, h3 { text-wrap: balance; }
p, li { text-wrap: pretty; }
.hero { padding: 5rem 0 3.5rem; }
.hero h1 { max-width: 18ch; }
.hero-note, .page-hero .hero-note { font-size: .9rem; color: var(--ink-faint); margin-top: 1rem; max-width: 65ch; }
.trust-strip { display: flex; flex-wrap: wrap; gap: 2rem 3rem; border-top: 1px solid var(--line); padding-top: 1.75rem; margin-top: 3rem; }
.trust-strip span { font-size: .88rem; color: var(--ink-soft); }
.trust-strip strong { display: block; color: var(--ink); font-size: 1rem; margin-bottom: .2rem; }
.section-surface { background: var(--surface); border-block: 1px solid var(--line); }
.section-start { padding-top: 1rem; }
.section-actions { margin-top: 2rem; }
.offer-steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem; list-style: none; }
.offer-steps li { border-top: 1px solid var(--line); padding-top: 1.25rem; }
.step-label { display: block; color: var(--accent); font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: .75rem; }
.offer-steps h3 { font-size: 1.2rem; line-height: 1.35; margin-bottom: .8rem; }
.offer-steps p { font-size: .98rem; color: var(--ink-soft); }
.band-dark .offer-steps li { border-color: #3a4560; }
.band-dark .step-label { color: #b9c0ff; }
.band-dark .offer-steps p, .band-dark .prose { color: #bfc8db; }
.split-story { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; align-items: start; }
.split-story .section-head { margin-bottom: 0; }
.prose { color: var(--ink-soft); }
.prose p, .prose ul { margin-bottom: 1.2rem; }
.prose ul { padding-left: 1.2rem; }
.prose li { margin-bottom: .8rem; }
.owner-intro { display: grid; grid-template-columns: 180px 1fr; gap: 2.5rem; align-items: center; max-width: 850px; }
.owner-intro img { width: 180px; height: 220px; object-fit: cover; object-position: center 25%; border-radius: var(--radius); }
.owner-intro h2 { font-size: 1.8rem; line-height: 1.2; }
.owner-intro p { color: var(--ink-soft); margin: 1rem 0; }
.process-list { border-top: 1px solid var(--line); }
.process-step { display: grid; grid-template-columns: 180px 1fr; gap: 2.5rem; padding: 2.5rem 0; border-bottom: 1px solid var(--line); }
.process-step h2 { font-size: 1.55rem; line-height: 1.3; margin-bottom: 1rem; }
.process-step p, .process-step li { color: var(--ink-soft); max-width: 72ch; }
.process-step ul { padding-left: 1.2rem; margin-top: 1rem; }
.process-step li { margin-bottom: .7rem; }
.process-step strong { color: var(--ink); }
.workflow-example { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); list-style: none; background: var(--accent-soft); border: 1px solid #d9dcff; border-radius: var(--radius); }
.workflow-example li { padding: 1.75rem; }
.workflow-example li + li { border-left: 1px solid #d9dcff; }
.workflow-example h3 { margin-bottom: .6rem; font-size: 1.1rem; }
.workflow-example p { font-size: .95rem; color: var(--ink-soft); }
.example-note { margin-top: 1.25rem; font-size: .93rem; color: var(--ink-soft); max-width: 85ch; }
.pricing-grid { max-width: 900px; }
.price-card h3 { color: var(--accent); font-size: 1rem; }
.price-card .price small { margin-left: .25rem; }
.portrait-card img { width: 100%; height: auto; border-radius: 10px; }
.portrait-card figcaption { padding: 0 .4rem .4rem; }
.portrait-card .name { margin-top: 1rem; }
.about-copy h2 { font-size: 1.6rem; line-height: 1.3; margin: 1.5rem 0 1rem; }
.about-copy h2:first-child { margin-top: 0; }
.form-intro { margin-bottom: 1.5rem; color: var(--ink-soft); font-size: .93rem; }
.form-notice, .field-hint { color: var(--ink-faint); font-size: .85rem; margin-top: .8rem; }
.field-hint { margin-top: .4rem; }
#form-status { margin: 1rem 0; color: var(--ink-soft); font-size: .95rem; }
#form-status:empty { display: none; }
#form-status[data-state="error"] { color: #9c2020; }
#form-status[data-state="success"] { color: #17633d; }
#turnstile-container { max-width: 100%; }
.submit-button { width: 100%; }
.checkbox-field input { flex: none; width: 20px; height: 20px; }
.checkbox-field label { font-weight: 400; cursor: pointer; min-height: 44px; }
.info-card h2 { font-size: 1.05rem; line-height: 1.4; margin-bottom: .6rem; }
.footer-nav p { font-size: .9rem; color: var(--ink-soft); max-width: 25ch; margin-bottom: .6rem; }
.footer-nav a { min-height: 30px; }
.footer-nav h2 { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-faint); margin-bottom: .8rem; }
.policy-copy { max-width: 760px; }
.policy-copy h2 { font-size: 1.4rem; margin: 2rem 0 .8rem; color: var(--ink); }
.policy-copy h2:first-child { margin-top: 0; }

@media (max-width: 1000px) { .nav { gap: 1rem; } }
@media (max-width: 900px) {
  .split-story { grid-template-columns: 1fr; gap: 1.5rem; }
  .about-figure { grid-template-columns: minmax(0, .85fr) minmax(0, 1.2fr); gap: 2rem; }
  .offer-steps { gap: 1.25rem; }
}
@media (max-width: 700px) {
  .hero { padding: 3rem 0; }
  .page-hero { padding: 3rem 0 2rem; }
  .section { padding: 3rem 0; }
  .section-start { padding-top: 0; }
  .section-head { margin-bottom: 2rem; }
  .offer-steps, .workflow-example, .about-figure { grid-template-columns: 1fr; }
  .offer-steps { gap: 1.75rem; }
  .workflow-example li + li { border-left: 0; border-top: 1px solid #d9dcff; }
  .process-step { grid-template-columns: 1fr; gap: .5rem; padding: 2rem 0; }
  .owner-intro { grid-template-columns: 100px 1fr; gap: 1.25rem; align-items: start; }
  .owner-intro img { width: 100px; height: 135px; }
  .owner-intro h2 { font-size: 1.5rem; }
  .portrait-card { max-width: 420px; }
  .contact-form { padding: 1.25rem; }
  .footer-nav { gap: 2rem; }
  .footer-nav a { min-height: 44px; display: flex; align-items: center; }
  .trust-strip { gap: 1.25rem; }
}
@media (max-width: 380px) {
  .container { width: calc(100% - 2rem); }
  .brand { font-size: 1rem; }
  .owner-intro { grid-template-columns: 1fr; }
  .cta-band, .price-card { padding: 1.5rem; }
  .contact-form { padding: 1rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
  .btn:hover, .nav-cta:hover, .card:hover { transform: none; }
}
