/* Morrowpeak site styles
   Palette: deep blue #173A5E, signal yellow #F5B700, ink #1B232C, steel #5B6875, light #EEF1F4
   Type: Barlow Semi Condensed (headings, buttons), Source Sans 3 (body) */

:root {
  --blue: #173A5E;
  --blue-dark: #0F2842;
  --blue-soft: #E6EDF4;
  --yellow: #F5B700;
  --yellow-dark: #DDA300;
  --yellow-soft: #FFF3C4;
  --ink: #1B232C;
  --steel: #5B6875;
  --line: #D6DCE3;
  --light: #EEF1F4;
  --paper: #F7F8FA;
  --white: #FFFFFF;
  --green: #2F7D4F;
  --red: #B3261E;

  --font-head: "Barlow Semi Condensed", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Source Sans 3", "Source Sans Pro", "Helvetica Neue", Arial, sans-serif;

  --radius: 3px;
  --container: 1140px;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-padding-top: 96px; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.08;
  margin: 0 0 0.45em;
  color: var(--blue);
  letter-spacing: 0;
}
h1 { font-size: 3.4rem; }
h2 { font-size: 2.4rem; }
h3 { font-size: 1.45rem; font-weight: 600; line-height: 1.2; }
p { margin: 0 0 1em; }

a { color: var(--blue); text-underline-offset: 3px; }
a:hover { color: var(--blue-dark); }

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

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

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0; padding: 0; margin: -1px;
}

.skip-link {
  position: absolute; left: 12px; top: -48px; z-index: 100;
  background: var(--yellow); color: var(--ink); padding: 10px 14px; font-weight: 700;
}
.skip-link:focus { top: 12px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.2;
  padding: 12px 22px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.btn--lg { font-size: 1.2rem; padding: 15px 28px; }
.btn--block { display: block; width: 100%; text-align: center; }
.btn--primary { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }
.btn--primary:hover { background: var(--yellow-dark); border-color: var(--yellow-dark); color: var(--ink); }
.btn--secondary { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn--secondary:hover { background: var(--blue); color: var(--white); }
.btn--ghost-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.75); }
.btn--ghost-light:hover { background: var(--white); color: var(--blue); border-color: var(--white); }

/* ---------- Top bars ---------- */
.demo-banner { background: var(--yellow-soft); border-bottom: 1px solid #E9D48A; font-size: .9rem; color: #4A3A00; }
.demo-banner p { margin: 0; padding: 8px 0; }

.utility-bar { background: var(--blue-dark); color: #C4D0DC; font-size: .88rem; }
.utility-bar__inner { display: flex; justify-content: space-between; gap: 16px; }
.utility-bar p { margin: 0; padding: 7px 0; }

/* ---------- Header / nav ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: var(--white); border-bottom: 1px solid var(--line); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; min-height: 78px; gap: 24px; }

.logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.logo__mark { width: 40px; height: 28px; }
.logo__word { font-family: var(--font-head); font-weight: 700; font-size: 1.75rem; color: var(--blue); letter-spacing: .01em; }
.logo--light .logo__word { color: var(--white); }
.logo__text { display: flex; flex-direction: column; line-height: 1; }
.logo__tag { font-size: .8rem; font-weight: 600; color: var(--steel); letter-spacing: .02em; margin-top: 3px; }
.logo--light .logo__tag { display: none; }

.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav__list { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.site-nav__link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-body); font-size: 1.02rem; font-weight: 600;
  color: var(--ink); text-decoration: none;
  padding: 10px 14px; background: none; border: 0; cursor: pointer;
}
.site-nav__link svg { width: 12px; height: 12px; transition: transform .15s ease; }
.site-nav__link:hover, .site-nav__link.is-current { color: var(--blue); }
.site-nav__link.is-current { box-shadow: inset 0 -3px 0 var(--yellow); }

.has-menu { position: relative; }
.mega {
  position: absolute; top: calc(100% + 17px); left: -14px; width: 600px;
  background: var(--white); border: 1px solid var(--line); border-top: 3px solid var(--yellow);
  box-shadow: 0 14px 30px rgba(15, 40, 66, .14);
  visibility: hidden; opacity: 0; transform: translateY(-4px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s;
}
.has-menu:hover .mega, .has-menu:focus-within .mega, .has-menu.is-open .mega { visibility: visible; opacity: 1; transform: none; }
.has-menu:hover .site-nav__trigger svg, .has-menu.is-open .site-nav__trigger svg { transform: rotate(180deg); }
.mega__list { list-style: none; margin: 0; padding: 14px; display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.mega__item { display: flex; gap: 12px; padding: 12px; text-decoration: none; border-radius: var(--radius); }
.mega__item:hover { background: var(--paper); }
.mega__icon { flex: 0 0 32px; color: var(--blue); }
.mega__icon svg { width: 30px; height: 30px; }
.mega__name { display: block; font-family: var(--font-head); font-weight: 600; font-size: 1.2rem; color: var(--ink); line-height: 1.2; }
.mega__text { display: block; font-size: .92rem; color: var(--steel); line-height: 1.4; margin-top: 2px; }
.mega__foot { display: flex; justify-content: space-between; align-items: center; gap: 12px; background: var(--paper); border-top: 1px solid var(--line); padding: 12px 26px; font-size: .93rem; }
.mega__foot p { margin: 0; color: var(--steel); }
.mega__foot a { font-weight: 600; white-space: nowrap; }

.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); cursor: pointer; position: relative; }
.nav-toggle__bars, .nav-toggle__bars::before, .nav-toggle__bars::after {
  position: absolute; left: 11px; width: 20px; height: 2px; background: var(--ink); content: "";
}
.nav-toggle__bars { top: 21px; }
.nav-toggle__bars::before { top: -6px; left: 0; }
.nav-toggle__bars::after { top: 6px; left: 0; }

/* ---------- Hero ---------- */
.hero { background: linear-gradient(180deg, var(--paper) 0%, var(--white) 100%); border-bottom: 1px solid var(--line); }
.hero__inner {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: 56px; align-items: center;
  padding: 72px 24px 80px;
}
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: .95rem; color: var(--steel); margin-bottom: 18px; }
.eyebrow::before { content: ""; width: 10px; height: 10px; background: var(--yellow); border-radius: 2px; }
.hero h1 { font-size: 3.4rem; line-height: 1.04; max-width: 13em; color: var(--ink); }
.hero__sub { font-size: 1.18rem; line-height: 1.6; color: var(--steel); max-width: 34em; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero__facts { list-style: none; margin: 26px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px 22px; }
.hero__facts li { display: flex; align-items: center; gap: 7px; font-weight: 600; font-size: .96rem; }
.hero__facts svg { width: 18px; height: 18px; color: var(--green); }
.hero__visual { justify-self: end; width: 100%; max-width: 500px; }
.hero__caption { margin: 12px 2px 0; font-size: .86rem; color: var(--steel); }

/* Sample monthly report (hero visual) */
.report { margin: 0; background: var(--white); border: 1px solid var(--line); border-radius: 6px; box-shadow: 0 18px 40px rgba(15, 40, 66, .12); overflow: hidden; }
.report__bar { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 12px 18px; background: var(--blue); color: var(--white); }
.report__title { font-family: var(--font-head); font-weight: 600; font-size: 1.1rem; }
.report__kpis { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; border-bottom: 1px solid var(--line); }
.report__kpi { padding: 14px 12px; border-left: 1px solid var(--line); }
.report__kpi:first-child { border-left: 0; }
.report__kpi dt { font-size: .76rem; color: var(--steel); line-height: 1.3; }
.report__kpi dd { margin: 4px 0 0; font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; line-height: 1.1; color: var(--ink); white-space: nowrap; }
.report__review { padding: 16px 18px; border-bottom: 1px solid var(--line); }
.report__review-head { display: flex; align-items: center; gap: 10px; }
.report__review-head .avatar { width: 34px; height: 34px; font-size: .8rem; }
.report__review-head p { margin: 0; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; font-size: .95rem; }
.report__review-text { margin: 10px 0 0; font-size: .97rem; line-height: 1.5; }
.report .review-card__reply { margin-top: 12px; }
.report .review-card__foot { margin: 8px 0 0; }
.report__log { list-style: none; margin: 0; padding: 12px 18px 14px; background: var(--paper); }
.report__log li { display: flex; gap: 8px; align-items: flex-start; font-size: .92rem; margin: 3px 0; }
.report__log svg { flex: 0 0 16px; width: 16px; height: 16px; margin-top: 3px; color: var(--green); }
.muted { color: var(--steel); font-size: .88rem; }

/* ---------- Stats band ---------- */
.stats { background: var(--blue-dark); color: var(--white); padding: 56px 0 60px; }
.stats__heading { color: var(--white); font-size: 1.9rem; margin-bottom: 28px; }
.stats__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin: 0; }
.stats__item { padding: 4px 28px 0; border-left: 1px solid rgba(255, 255, 255, .16); }
.stats__item:first-child { border-left: 0; padding-left: 0; }
.stats__item dt { font-family: var(--font-head); font-weight: 700; font-size: 3.2rem; line-height: 1; color: var(--yellow); }
.stats__item dd { margin: 10px 0 0; color: #D5DEE8; font-size: 1rem; line-height: 1.5; }

/* ---------- Before / after listings ---------- */
.listings { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.listing__label { font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; margin-bottom: 10px; color: var(--steel); }
.listing--after .listing__label { color: var(--blue); }
.listing__card { background: var(--white); border: 1px solid var(--line); border-radius: 6px; }
.listing--after .listing__card { border: 2px solid var(--blue); box-shadow: 0 12px 30px rgba(23, 58, 94, .12); }
.listing__head { padding: 18px 20px 14px; border-bottom: 1px solid var(--line); }
.listing__name { margin: 0; font-size: 1.25rem; font-weight: 700; }
.listing__meta { margin: 4px 0 0; display: flex; align-items: center; flex-wrap: wrap; gap: 6px; color: var(--steel); font-size: .92rem; }
.listing__meta strong { color: var(--ink); }
.listing__notes { list-style: none; margin: 12px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.listing__notes li { display: inline-flex; align-items: center; gap: 6px; font-size: .86rem; font-weight: 600; padding: 3px 10px 3px 7px; border-radius: 2px; }
.listing__notes svg { width: 15px; height: 15px; }
.listing__notes .is-bad { background: #FBEAEA; color: var(--red); }
.listing__notes .is-good { background: #E7F3EC; color: var(--green); }
.listing__review { padding: 14px 20px; border-bottom: 1px solid var(--line); font-size: .96rem; }
.listing__review:last-child { border-bottom: 0; }
.listing__review > p { margin: 0 0 6px; }
.listing__who { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.listing__noreply { color: var(--red); font-size: .88rem; font-weight: 600; margin: 8px 0 0 !important; }
.listing__reply { margin-top: 10px; background: var(--paper); border-left: 3px solid var(--blue); padding: 10px 12px; }
.listing__reply p { margin: 0; font-size: .94rem; line-height: 1.5; }
.listing__reply .listing__reply-label { font-size: .82rem; font-weight: 700; color: var(--blue); margin-bottom: 3px; }
.listings__caption { margin: 16px 0 0; font-size: .86rem; color: var(--steel); }

/* ---------- Timeline ---------- */
.timeline { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 3px solid var(--line); }
.timeline__item { position: relative; padding: 26px 26px 0 0; }
.timeline__item::before { content: ""; position: absolute; top: -9px; left: 0; width: 15px; height: 15px; border-radius: 50%; background: var(--yellow); border: 3px solid var(--white); box-shadow: 0 0 0 1px var(--line); }
.timeline__when { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--blue); margin-bottom: 6px; }
.timeline h3 { font-size: 1.3rem; margin-bottom: 6px; }
.timeline p:last-child { color: var(--steel); margin: 0; }

/* ---------- Plan tabs (how it works) ---------- */
.plan-tabs__list { display: inline-flex; flex-wrap: wrap; gap: 6px; padding: 5px; margin-bottom: 40px; background: var(--paper); border: 1px solid var(--line); border-radius: 6px; }
.plan-tabs__tab { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; min-width: 150px; padding: 10px 18px; background: transparent; border: 0; border-radius: 4px; cursor: pointer; text-align: left; font: inherit; color: var(--ink); }
.plan-tabs__tab:hover { background: var(--white); }
.plan-tabs__tab[aria-selected="true"] { background: var(--blue); color: var(--white); }
.plan-tabs__name { font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; line-height: 1.1; }
.plan-tabs__price { font-size: .9rem; color: var(--steel); }
.plan-tabs__tab[aria-selected="true"] .plan-tabs__price { color: #C9D6E3; }
.plan-tabs__panel:focus-visible { outline-offset: 8px; }
.plan-tabs__foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 36px; padding-top: 22px; border-top: 1px solid var(--line); }
.plan-tabs__foot p { margin: 0; font-weight: 600; color: var(--steel); }

/* ---------- Without / with (stakes) ---------- */
.stakes { display: grid; grid-template-columns: 1fr 1fr; column-gap: 20px; }
.stakes__head, .stakes__cell { display: flex; gap: 12px; align-items: flex-start; margin: 0; padding: 16px 22px; }
.stakes svg { flex: 0 0 22px; width: 22px; height: 22px; margin-top: 2px; }
.stakes__head { font-family: var(--font-head); font-weight: 700; font-size: 1.4rem; color: var(--white); border-radius: 6px 6px 0 0; align-items: center; }
.stakes__head--bad { background: var(--red); }
.stakes__head--good { background: var(--green); }
.stakes__cell { font-size: 1.08rem; font-weight: 600; line-height: 1.45; border-bottom: 1px solid; }
.stakes__cell--bad { background: #FBEDEC; color: #7A1A14; border-color: #F1D2CF; }
.stakes__cell--bad svg { color: var(--red); }
.stakes__cell--good { background: #EAF5EE; color: #1E5134; border-color: #CFE6D8; }
.stakes__cell--good svg { color: var(--green); }
.stakes__cell:nth-last-child(-n+2) { border-bottom: 0; border-radius: 0 0 6px 6px; }
.stakes__foot { display: flex; align-items: center; justify-content: flex-end; gap: 20px; flex-wrap: wrap; margin-top: 28px; }
.stakes__foot p { margin: 0; font-weight: 600; color: var(--steel); }

/* ---------- Review card (hero + examples) ---------- */
.review-card {
  margin: 0; background: var(--white); color: var(--ink);
  border-radius: 4px; border-top: 4px solid var(--yellow);
  box-shadow: 0 22px 48px rgba(0, 0, 0, .32);
  padding: 22px 24px 18px;
}
.example-box .review-card, .detail .review-card { box-shadow: none; border: 1px solid var(--line); border-top: 4px solid var(--yellow); }
.review-card__head { display: grid; grid-template-columns: 44px 1fr auto; gap: 12px; align-items: center; }
.avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--blue-soft); color: var(--blue); display: grid; place-items: center; font-weight: 700; font-size: .95rem; }
.review-card__name { margin: 0; font-weight: 700; line-height: 1.2; }
.review-card__meta { margin: 2px 0 0; display: flex; align-items: center; gap: 8px; font-size: .88rem; color: var(--steel); }
.review-card__text { margin: 14px 0 0; }
.review-card__text p { margin: 0; font-size: 1.02rem; line-height: 1.5; }
.review-card__reply { margin-top: 14px; background: var(--paper); border-left: 3px solid var(--blue); padding: 12px 14px; }
.review-card__reply p { margin: 0; font-size: .98rem; line-height: 1.5; }
.review-card__reply .review-card__reply-label { font-size: .86rem; font-weight: 700; color: var(--blue); margin-bottom: 4px; }
.review-card__foot { margin-top: 12px; font-size: .85rem; color: var(--steel); }

.review-card--animate .review-card__reply,
.review-card--animate .review-card__foot { opacity: 0; transform: translateY(8px); transition: opacity .5s ease, transform .5s ease; }
.review-card--animate.is-in .review-card__reply,
.review-card--animate.is-in .review-card__foot { opacity: 1; transform: none; }
.review-card--animate.is-in .review-card__foot { transition-delay: .25s; }

.stars { display: inline-flex; gap: 1px; }
.stars svg { width: 15px; height: 15px; }
.stars .on { fill: var(--yellow); }
.stars .off { fill: var(--line); }

.tag {
  display: inline-block; font-size: .78rem; font-weight: 600; line-height: 1.4;
  padding: 2px 8px; border: 1px solid var(--line); border-radius: 2px;
  color: var(--steel); background: var(--paper);
}
.tag--sample { background: var(--yellow-soft); border-color: #E9D48A; color: #5A4500; }

/* ---------- Commitments ---------- */
.commitments { border-bottom: 1px solid var(--line); background: var(--white); }
.commitments__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.commitment { padding: 28px 26px; border-left: 1px solid var(--line); }
.commitment:first-child { border-left: 0; padding-left: 0; }
.commitment__title { font-family: var(--font-head); font-weight: 600; font-size: 1.35rem; color: var(--blue); margin: 0 0 4px; line-height: 1.2; }
.commitment__text { font-size: .95rem; color: var(--steel); margin: 0; line-height: 1.5; }

/* ---------- Sections ---------- */
.section { padding: 88px 0; }
.section--tight { padding: 48px 0 72px; }
.section--tint { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.section-head { max-width: 720px; margin-bottom: 40px; }
.section-head p { font-size: 1.12rem; color: var(--steel); margin: 0; }
.section-head--split { max-width: none; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: end; }
.section-head--split h2 { margin: 0; }
.section-head--center { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- Service strip ---------- */
.service-strip { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.service-strip--three { grid-template-columns: repeat(3, 1fr); }
.service-strip__item { display: flex; flex-direction: column; padding: 30px 26px 8px; border-right: 1px solid var(--line); border-top: 4px solid transparent; margin-top: -1px; }
.service-strip__item:first-child { padding-left: 0; }
.service-strip__item:last-child { border-right: 0; }
.service-strip__item.is-main { border-top-color: var(--yellow); }
.service-strip__icon { color: var(--blue); margin-bottom: 14px; }
.service-strip__icon svg { width: 36px; height: 36px; }
.service-strip h3 { margin-bottom: 8px; }
.service-strip h3 a { color: var(--ink); text-decoration: none; }
.service-strip h3 a:hover { text-decoration: underline; }
.service-strip p { color: var(--steel); font-size: .98rem; line-height: 1.55; }
.service-strip__price { margin-top: auto; font-weight: 600; color: var(--blue) !important; font-size: .95rem !important; }

/* ---------- Feature rows ---------- */
.feature-row { padding: 72px 0; border-top: 1px solid var(--line); }
.feature-row--main { background: var(--paper); }
.feature-row__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.feature-row--flip .feature-row__media { order: 2; }
.feature-row__media img { width: 100%; aspect-ratio: 25 / 18; object-fit: cover; border-radius: var(--radius); background: #C9D2DC; }
.feature-row__copy h2 { font-size: 2.2rem; }
.feature-row__copy > p { font-size: 1.08rem; color: var(--steel); }
.feature-row__foot { display: flex; align-items: center; flex-wrap: wrap; gap: 14px 22px; margin-top: 26px; }
.feature-row__price { font-weight: 600; color: var(--steel); }
.note-line { display: inline-block; font-size: .88rem; font-weight: 700; color: #5A4500; background: var(--yellow-soft); border: 1px solid #E9D48A; border-radius: 2px; padding: 2px 10px; margin-bottom: 14px; }

.checklist { list-style: none; margin: 18px 0 0; padding: 0; }
.checklist li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px; line-height: 1.5; }
.checklist svg { flex: 0 0 20px; width: 20px; height: 20px; margin-top: 3px; color: var(--green); }
.checklist--lg li { font-size: 1.05rem; margin-bottom: 14px; }

/* ---------- Steps ---------- */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.steps__item { position: relative; padding-top: 64px; }
.steps__item::before { content: ""; position: absolute; top: 21px; left: 44px; right: -40px; height: 2px; background: var(--line); }
.steps__item:last-child::before { display: none; }
.steps__num {
  position: absolute; top: 0; left: 0; width: 44px; height: 44px; border-radius: 50%;
  background: var(--blue); color: var(--white); display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: 1.3rem;
}
.steps h3 { margin-bottom: 6px; }
.steps p { color: var(--steel); margin: 0; }

.steps--compact { grid-template-columns: 1fr; gap: 22px; }
.steps--compact .steps__item { padding: 4px 0 0 62px; min-height: 44px; }
.steps--compact .steps__item::before { display: none; }

/* ---------- Plans ---------- */
.billing-toggle { display: flex; width: max-content; margin: 0 auto 36px; padding: 4px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.billing-toggle__btn { font: 600 1rem var(--font-body); color: var(--steel); background: none; border: 0; border-radius: 2px; padding: 8px 18px; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; }
.billing-toggle__btn.is-active { background: var(--blue); color: var(--white); }
.billing-toggle__save { font-size: .78rem; font-weight: 700; background: var(--yellow); color: var(--ink); padding: 1px 7px; border-radius: 2px; }

.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.plan { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: 4px; padding: 32px 28px; display: flex; flex-direction: column; }
.plan--featured { border: 2px solid var(--blue); box-shadow: 0 12px 32px rgba(23, 58, 94, .13); }
.plan__badge { position: absolute; top: -14px; left: 26px; margin: 0; background: var(--blue); color: var(--white); font-size: .84rem; font-weight: 700; padding: 3px 10px; border-radius: 2px; }
.plan__name { font-size: 1.9rem; color: var(--ink); margin-bottom: 4px; }
.plan__for { color: var(--steel); font-size: .98rem; min-height: 3em; }
.plan__price { margin: 6px 0 2px; display: flex; align-items: baseline; gap: 8px; }
.plan__amount { font-family: var(--font-head); font-weight: 700; font-size: 3.2rem; line-height: 1; color: var(--ink); }
.plan__period { color: var(--steel); }
.plan__equiv { font-size: .9rem; color: var(--steel); margin-bottom: 22px; }
.plan__features { list-style: none; margin: 24px 0 0; padding: 20px 0 0; border-top: 1px solid var(--line); }
.plan__features li { display: flex; gap: 10px; margin-bottom: 10px; font-size: .98rem; line-height: 1.45; }
.plan__features svg { flex: 0 0 18px; width: 18px; height: 18px; margin-top: 3px; color: var(--green); }
.pricing-preview__more { text-align: center; margin: 32px 0 0; font-weight: 600; }

/* ---------- Testimonials ---------- */
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote { position: relative; margin: 0; background: var(--white); border: 1px solid var(--line); border-radius: 4px; padding: 30px 28px 26px; display: flex; flex-direction: column; }
.quote .tag--sample { position: absolute; top: 16px; right: 16px; }
.quote blockquote { margin: 14px 0 20px; }
.quote blockquote p { font-size: 1.1rem; line-height: 1.55; margin: 0; }
.quote figcaption { margin-top: auto; border-top: 1px solid var(--line); padding-top: 14px; }
.quote__who { display: block; font-weight: 700; }
.quote__role { display: block; font-size: .92rem; color: var(--steel); }

/* ---------- FAQ ---------- */
.faq-section { border-top: 1px solid var(--line); }
.section--tint.faq-section, .section--tint + .faq-section { border-top: 0; }
.faq-section__inner { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 64px; }
.faq-section__intro p { color: var(--steel); }
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary { list-style: none; cursor: pointer; position: relative; padding: 20px 44px 20px 0; font-weight: 600; font-size: 1.12rem; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__icon { position: absolute; right: 8px; top: 50%; width: 16px; height: 16px; margin-top: -8px; }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; left: 0; top: 7px; width: 16px; height: 2px; background: var(--blue); transition: transform .15s ease; }
.faq__icon::after { transform: rotate(90deg); }
.faq__item[open] .faq__icon::after { transform: rotate(0deg); }
.faq__item p { color: var(--steel); margin: -4px 0 22px; max-width: 62ch; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; background: var(--blue); color: var(--white); overflow: hidden; }
.cta-band__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .18; }
.cta-band__inner { position: relative; display: flex; justify-content: space-between; align-items: center; gap: 40px; padding: 76px 24px; }
.cta-band h2 { color: var(--white); font-size: 2.5rem; margin-bottom: 10px; }
.cta-band p { color: #D5DEE8; font-size: 1.12rem; margin: 0; max-width: 36em; }
.cta-band__actions { display: flex; gap: 14px; flex-shrink: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--blue-dark); color: #B7C4D3; padding-top: 64px; font-size: .96rem; }
.site-footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.4fr; gap: 40px; }
.site-footer__brand p { margin: 14px 0 0; max-width: 26em; }
.site-footer__hours { color: #8FA1B5; }
.site-footer__heading { font-family: var(--font-body); font-size: 1rem; font-weight: 700; color: var(--white); margin: 6px 0 14px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 8px; }
.site-footer a { color: #D5DEE8; text-decoration: none; }
.site-footer a:hover { color: var(--white); text-decoration: underline; }
.site-footer__credits { font-size: .88rem; line-height: 1.6; }
.site-footer__bottom { margin-top: 52px; padding: 20px 0 22px; border-top: 1px solid rgba(255, 255, 255, .12); font-size: .88rem; }
.site-footer__bottom p { margin: 0; }

/* ---------- Inner page heroes ---------- */
.page-hero { position: relative; background: var(--blue-dark); color: var(--white); overflow: hidden; }
.page-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: rgba(12, 32, 54, .8); }
.page-hero__inner { position: relative; z-index: 1; padding: 56px 24px 72px; }
.page-hero h1 { color: var(--white); font-size: 3.1rem; max-width: 18em; margin-top: 18px; }
.page-hero p { color: #DCE4EC; font-size: 1.18rem; max-width: 40em; margin: 0; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; font-size: .9rem; color: #AFC0D2; }
.breadcrumb a { color: #D5DEE8; }

.plain-hero { background: var(--paper); border-bottom: 1px solid var(--line); padding: 64px 0 56px; }
.plain-hero--short { padding: 48px 0 40px; }
.plain-hero h1 { font-size: 3.1rem; }
.plain-hero p { font-size: 1.2rem; color: var(--steel); max-width: 40em; margin: 0; }

/* ---------- Service detail ---------- */
.detail { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, .9fr); gap: 64px; align-items: start; }
.detail h2 { font-size: 2rem; }
.detail__h2-gap { margin-top: 52px; }
.detail__side { position: sticky; top: 104px; }
.price-box { border: 1px solid var(--line); border-top: 4px solid var(--yellow); border-radius: var(--radius); padding: 24px 26px 26px; background: var(--white); }
.price-box__label { font-size: .92rem; font-weight: 700; color: var(--steel); margin-bottom: 4px; }
.price-box__price { font-family: var(--font-head); font-weight: 700; font-size: 1.75rem; line-height: 1.15; margin-bottom: 8px; }
.price-box__note { font-size: .95rem; color: var(--steel); }
.price-box .btn + .btn { margin-top: 10px; }
.example-box { margin-top: 24px; }
.example-box__title { font-family: var(--font-head); font-weight: 600; font-size: 1.3rem; margin-bottom: 4px; }
.example-box > .checklist { border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px 8px; margin-top: 10px; }

.chat-mock { border: 1px solid var(--line); border-radius: 4px; background: var(--white); padding: 18px; }
.chat-mock__q { margin: 0 0 14px auto; max-width: 88%; width: max-content; background: var(--blue); color: var(--white); padding: 10px 14px; border-radius: 14px 14px 3px 14px; font-size: .98rem; line-height: 1.45; }
.chat-mock__a { background: var(--paper); border-radius: 14px 14px 14px 3px; padding: 14px 16px 4px; font-size: .98rem; }
.chat-mock__a ol { margin: 0 0 10px; padding-left: 22px; }
.chat-mock__a li { margin-bottom: 4px; }
.chat-mock__a .is-you { font-weight: 700; }
.chat-mock__a .is-you::marker { color: var(--blue); }
.chat-mock__a .is-you { background: var(--yellow-soft); padding: 0 6px; margin-left: -6px; border-radius: 2px; }
.chat-mock__caption { margin: 12px 0 0; font-size: .85rem; color: var(--steel); font-style: italic; }

/* ---------- Pricing page ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 4px; background: var(--white); }
.compare { width: 100%; border-collapse: collapse; min-width: 640px; }
.compare th, .compare td { padding: 15px 18px; border-bottom: 1px solid var(--line); text-align: center; }
.compare tbody tr:last-child th, .compare tbody tr:last-child td { border-bottom: 0; }
.compare thead th { font-family: var(--font-head); font-weight: 700; font-size: 1.4rem; color: var(--ink); background: var(--paper); }
.compare__price { display: block; font-family: var(--font-body); font-weight: 400; font-size: .92rem; color: var(--steel); }
.compare tbody th { text-align: left; font-weight: 600; }
.compare td { color: var(--steel); font-size: .98rem; }
.compare .yes svg { width: 22px; height: 22px; color: var(--green); display: inline-block; vertical-align: middle; }
.compare .no svg { width: 20px; height: 20px; color: #9AA6B2; display: inline-block; vertical-align: middle; }

.onetime { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.onetime__item { border: 1px solid var(--line); border-radius: 4px; padding: 28px; display: flex; flex-direction: column; justify-content: space-between; }
.onetime__item h3 { font-size: 1.7rem; color: var(--ink); }
.onetime__item p { color: var(--steel); }
.onetime__item a:not(.btn) { font-weight: 600; }
.onetime__buy { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; border-top: 1px solid var(--line); margin-top: 22px; padding-top: 20px; }
.onetime__item .onetime__price { color: var(--ink); }
.onetime__price { font-family: var(--font-head); font-weight: 700; font-size: 2.2rem; margin: 0; line-height: 1; }
.onetime__price span { font-family: var(--font-body); font-weight: 400; font-size: .95rem; color: var(--steel); margin-left: 8px; }

/* ---------- About ---------- */
.about-hero { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: 56px; align-items: center; }
.plain-hero .about-hero__intro { font-size: 1.28rem; line-height: 1.55; color: var(--ink); max-width: 34em; }
.about-hero__media img { border-radius: var(--radius); aspect-ratio: 4 / 3; object-fit: cover; background: #C9D2DC; }
.principles { display: grid; grid-template-columns: 1fr 1fr; gap: 36px 56px; }
.principle { border-left: 4px solid var(--yellow); padding-left: 22px; }
.principle p { color: var(--steel); margin: 0; }

/* ---------- Get started ---------- */
.signup { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, .8fr); gap: 56px; align-items: start; }
.plan-picker { border: 0; padding: 0; margin: 0 0 28px; display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 12px; }
.plan-picker legend { font-family: var(--font-head); font-weight: 600; font-size: 1.5rem; color: var(--blue); margin-bottom: 12px; padding: 0; }
.plan-picker__option { display: flex; gap: 10px; align-items: flex-start; border: 1px solid var(--line); border-radius: var(--radius); padding: 14px; cursor: pointer; background: var(--white); }
.plan-picker__option:hover { border-color: var(--blue); }
.plan-picker__option:has(input:checked) { border: 2px solid var(--blue); padding: 13px; background: #F4F7FA; }
.plan-picker__option input { accent-color: var(--blue); margin-top: 4px; }
.plan-picker__name { display: block; font-weight: 700; }
.plan-picker__price { display: block; font-size: .92rem; color: var(--steel); }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 600; font-size: .98rem; margin-bottom: 6px; }
.field__optional { font-weight: 400; color: var(--steel); }
.field input, .field textarea {
  width: 100%; font: inherit; color: var(--ink);
  border: 1px solid #B9C3CE; border-radius: var(--radius); padding: 12px 14px; background: var(--white);
}
.field input:focus, .field textarea:focus { outline: 3px solid rgba(245, 183, 0, .6); outline-offset: 0; border-color: var(--blue); }
.field input[aria-invalid="true"] { border-color: var(--red); }
.form-error { color: var(--red); font-weight: 600; }
.form-notice { margin-top: 18px; background: var(--yellow-soft); border: 1px solid #E9D48A; border-radius: var(--radius); padding: 14px 16px; color: #4A3A00; }

.signup__side { background: var(--paper); border: 1px solid var(--line); border-radius: 4px; padding: 30px 28px; }
.signup__side h2 { font-size: 1.7rem; margin-bottom: 22px; }
.steps--stack .steps__item { padding-left: 58px; }
.steps--stack .steps__num { width: 38px; height: 38px; font-size: 1.1rem; }
.steps--stack h3 { font-size: 1.2rem; }
.signup__reassure { margin: 22px 0 0; padding-top: 18px; border-top: 1px solid var(--line); font-size: .95rem; color: var(--steel); }

/* ---------- Responsive ---------- */
@media (max-width: 1060px) {
  .hero h1 { font-size: 3.1rem; }
  .service-strip { grid-template-columns: 1fr 1fr; }
  .service-strip__item { padding: 28px 24px 10px; border-bottom: 1px solid var(--line); }
  .service-strip__item:nth-child(2n) { border-right: 0; }
  .service-strip__item:nth-child(2n+1) { padding-left: 0; }
  .commitments__grid { grid-template-columns: 1fr 1fr; }
  .commitment:nth-child(3) { border-left: 0; padding-left: 0; }
  .commitment:nth-child(n+3) { border-top: 1px solid var(--line); }
}

@media (max-width: 960px) {
  .nav-toggle { display: inline-block; }
  .site-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    display: none; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--white); border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 24px rgba(15, 40, 66, .12);
    padding: 8px 24px 24px;
    max-height: calc(100vh - 80px); overflow-y: auto;
  }
  .site-nav.is-open { display: flex; }
  .site-nav__list { flex-direction: column; align-items: stretch; }
  .site-nav__link { width: 100%; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 1.08rem; }
  .site-nav__link.is-current { box-shadow: none; }
  .mega { position: static; width: auto; border: 0; box-shadow: none; display: none; visibility: visible; opacity: 1; transform: none; }
  .has-menu:hover .mega, .has-menu:focus-within .mega { display: none; }
  .has-menu.is-open .mega { display: block; }
  .mega__list { grid-template-columns: 1fr; padding: 6px 0; }
  .mega__foot { display: none; }
  .site-nav__cta { margin-top: 18px; text-align: center; }

  .hero__inner { grid-template-columns: 1fr; padding: 48px 24px 56px; gap: 40px; }
  .hero__visual { justify-self: start; }
  .stakes { grid-template-columns: 1fr; }
  .stakes__head--bad { order: 0; }
  .stakes__cell--bad { order: 1; }
  .stakes__head--good { order: 2; margin-top: 20px; }
  .stakes__cell--good { order: 3; }
  .stakes__cell--bad:nth-last-child(2) { border-bottom: 0; border-radius: 0 0 6px 6px; }
  .stakes__cell--good:nth-last-child(-n+2) { border-radius: 0; }
  .stakes__cell--good:last-child { border-radius: 0 0 6px 6px; }
  .stakes__foot { justify-content: flex-start; }
  .listings { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr 1fr; gap: 28px 0; border-top: 0; }
  .timeline__item { border-top: 3px solid var(--line); }
  .section-head--split { grid-template-columns: 1fr; gap: 14px; }
  .feature-row__inner { grid-template-columns: 1fr; gap: 32px; }
  .feature-row--flip .feature-row__media { order: 0; }
  .plans { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .plan__for { min-height: 0; }
  .testimonials__grid { grid-template-columns: 1fr; max-width: 640px; }
  .faq-section__inner { grid-template-columns: 1fr; gap: 20px; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .detail { grid-template-columns: 1fr; gap: 44px; }
  .detail__side { position: static; }
  .about-hero { grid-template-columns: 1fr; gap: 36px; }
  .signup { grid-template-columns: 1fr; }
  .onetime { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  body { font-size: 16.5px; }
  h1, .hero h1, .page-hero h1, .plain-hero h1 { font-size: 2.35rem; }
  .report__kpis { grid-template-columns: 1fr 1fr; }
  .report__kpi:nth-child(3) { border-left: 0; }
  .report__kpi:nth-child(n+3) { border-top: 1px solid var(--line); }
  .stats__grid { grid-template-columns: 1fr; gap: 24px; }
  .stats__item { border-left: 0; padding-left: 0; }
  .stats__item dt { font-size: 2.7rem; }
  .timeline { grid-template-columns: 1fr; }
  .logo__tag { font-size: .72rem; }
  .plan-tabs__list { display: flex; }
  .plan-tabs__tab { flex: 1 1 0; min-width: 0; padding: 10px 12px; }
  h2, .cta-band h2 { font-size: 1.95rem; }
  .feature-row__copy h2 { font-size: 1.85rem; }
  .section { padding: 64px 0; }
  .feature-row { padding: 56px 0; }
  .utility-bar__right { display: none; }
  .hero__sub { font-size: 1.08rem; }
  .hero__actions .btn { width: 100%; text-align: center; }
  .commitments__grid { grid-template-columns: 1fr; }
  .commitment { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); }
  .commitment:first-child { border-top: 0; }
  .service-strip, .service-strip--three { grid-template-columns: 1fr; }
  .service-strip__item { border-right: 0; padding: 26px 0 10px !important; }
  .steps { grid-template-columns: 1fr; gap: 28px; }
  .steps__item { padding: 4px 0 0 62px; min-height: 44px; }
  .steps__item::before { display: none; }
  .principles { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .cta-band__actions { flex-direction: column; width: 100%; }
  .cta-band__actions .btn { text-align: center; }
  .onetime__buy .btn { width: 100%; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .review-card--animate .review-card__reply, .review-card--animate .review-card__foot { opacity: 1; transform: none; }
}
