/* ==========================================================================
   Zeemy public site, 2026 design system
   Palette and type from the brand logo: blue #1E7BFF, deep #0B3FBF, sky
   #3AA0FF, navy #0D1B3E. Headlines DM Serif Display, body DM Sans.
   One rule that runs the whole site: blue is spent on the hero and the
   primary action; everything else is light so the action stands out.
   ========================================================================== */

:root {
  --z-blue: #1E7BFF;
  --z-blue-deep: #0B3FBF;
  --z-sky: #3AA0FF;
  --z-navy: #0D1B3E;
  --z-ink: #0D1B3E;
  --z-ink-2: #3B4863;
  --z-muted: #4B5670;
  --z-grey: #6B7280;
  --z-line: #E6EAF1;
  --z-line-2: #DDE3EC;
  --z-wash: #F6F7FA;
  --z-wash-blue: #EAF3FF;
  --z-blue-tint: #DCEBFF;
  --z-blue-tint-2: #BFD9FF;
  --z-green: #0F8A4B;
  --z-green-bg: #E6F7EE;
  --z-amber: #B45309;
  --z-amber-bg: #FEF3E2;
  --z-serif: "DM Serif Display", Georgia, "Times New Roman", serif;
  --z-sans: "DM Sans", "Segoe UI", Arial, sans-serif;
  --z-radius: 16px;
  --z-container: 1280px;
  --z-gutter: 80px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--z-sans);
  color: var(--z-ink);
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--z-blue); text-decoration: none; }
a:hover { color: var(--z-blue-deep); }
h1, h2, h3, h4, p, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }
button { font: inherit; }
.z-serif { font-family: var(--z-serif); font-weight: 400; }
.z-sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.z-wrap { max-width: var(--z-container); margin: 0 auto; padding: 0 var(--z-gutter); }
/* grid and flex children default to min-width:auto, which lets a wide
   screenshot push a column past the viewport on phones; zero it everywhere */
.z-hero__in > *, .z-split > *, .z-grid-3 > *, .z-grid-2 > *, .z-plans > *, .z-contact > *, .z-quote > *, .z-band__in > *, .z-footer__grid > *, .z-card--row > * { min-width: 0; }

/* --------------------------------------------------------------------------
   Buttons and chips
   -------------------------------------------------------------------------- */
.z-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; font-size: 17px; line-height: 1;
  padding: 17px 30px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.z-btn:hover { transform: translateY(-1px); }
.z-btn--primary { background: var(--z-blue); color: #FFFFFF; box-shadow: 0 8px 24px rgba(30, 123, 255, .28); }
.z-btn--primary:hover { background: var(--z-blue-deep); color: #FFFFFF; }
.z-btn--white { background: #FFFFFF; color: var(--z-blue-deep); box-shadow: 0 10px 30px rgba(4, 22, 70, .35); }
.z-btn--white:hover { color: var(--z-blue-deep); background: #F2F7FF; }
.z-btn--outline { background: transparent; color: var(--z-ink); border-color: var(--z-ink); }
.z-btn--outline:hover { background: var(--z-ink); color: #FFFFFF; }
.z-btn--sm { font-size: 15px; padding: 12px 22px; }
.z-btn--block { width: 100%; }
/* an inline icon inside running text should never outgrow the text */
p a > svg, li a > svg, small a > svg { width: 1em; height: 1em; vertical-align: -0.15em; display: inline; }
.z-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 17px; }
.z-link svg { width: 18px; height: 18px; }
.z-link--white, .z-link--white:hover { color: #FFFFFF; }

.z-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.z-chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 600; color: var(--z-ink);
  background: #FFFFFF; border: 1px solid var(--z-line-2);
  padding: 11px 18px; border-radius: 999px; transition: background .15s ease, border-color .15s ease;
}
.z-chip:hover { border-color: var(--z-blue); color: var(--z-ink); }
.z-chip svg { width: 18px; height: 18px; }
.z-chip--glass { color: #FFFFFF; background: rgba(255, 255, 255, .14); border-color: rgba(255, 255, 255, .4); }
.z-chip--glass:hover { color: #FFFFFF; background: rgba(255, 255, 255, .24); }
.z-chip--solid { color: #FFFFFF; background: var(--z-blue); border-color: var(--z-blue); }
.z-chip--solid:hover { color: #FFFFFF; }
.z-chip--wash { background: var(--z-wash); border-color: var(--z-line); font-size: 16px; padding: 14px 20px; }
.z-chip--add { color: var(--z-blue); background: #FFFFFF; border: 1px dashed #9EC4FF; font-size: 16px; padding: 14px 20px; }
.z-eyebrow { font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--z-blue); }
.z-eyebrow--grey { color: var(--z-grey); }
.z-eyebrow--light { color: var(--z-blue-tint-2); }
.z-pill { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #FFFFFF; background: rgba(255, 255, 255, .14); border: 1px solid rgba(255, 255, 255, .4); padding: 8px 14px; border-radius: 999px; }
.z-pill svg { width: 16px; height: 16px; }
.z-tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .5px; padding: 5px 10px; border-radius: 999px; }
.z-tag--green { color: var(--z-green); background: var(--z-green-bg); }
.z-tag--amber { color: var(--z-amber); background: var(--z-amber-bg); }
.z-tag--blue { color: #FFFFFF; background: var(--z-blue); }

/* --------------------------------------------------------------------------
   Nav
   -------------------------------------------------------------------------- */
.z-nav { position: relative; z-index: 50; background: #FFFFFF; }
.z-nav__in { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 18px var(--z-gutter); max-width: var(--z-container); margin: 0 auto; }
.z-nav__brand { display: flex; align-items: center; gap: 10px; color: var(--z-ink); font-size: 25px; font-weight: 700; letter-spacing: -.5px; }
.z-nav__brand:hover { color: var(--z-ink); }
.z-nav__brand svg { width: 38px; height: 38px; }
.z-nav__links { display: flex; align-items: center; gap: 36px; font-size: 15px; font-weight: 600; }
.z-nav__links > li { position: relative; }
.z-nav__links a, .z-nav__links button { color: var(--z-ink-2); background: none; border: 0; padding: 8px 0; cursor: pointer; font-weight: 600; font-size: 15px; display: inline-flex; align-items: center; gap: 6px; }
.z-nav__links a:hover, .z-nav__links button:hover, .z-nav__links .is-active { color: var(--z-blue); }
.z-nav__links svg { width: 14px; height: 14px; }
.z-nav__menu { position: absolute; left: -16px; top: 100%; width: min(900px, calc(100vw - 48px)); max-height: calc(100vh - 96px); overflow-y: auto; background: #FFFFFF; border: 1px solid var(--z-line); border-radius: 14px; box-shadow: 0 20px 50px rgba(13, 27, 62, .14); padding: 10px; display: none; grid-template-columns: 1fr 1fr 1fr; gap: 2px; }
.z-nav__links > li:hover .z-nav__menu, .z-nav__links > li:focus-within .z-nav__menu { display: grid; }
.z-industries { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; }
.z-industries a { display: flex; flex-direction: column; gap: 10px; background: #FFFFFF; border: 1px solid var(--z-line); border-radius: 14px; padding: 20px; color: var(--z-ink); font-weight: 700; font-size: 16px; line-height: 1.3; }
.z-industries a:hover { border-color: var(--z-blue); color: var(--z-ink); }
.z-industries a svg { width: 24px; height: 24px; color: var(--z-blue); }
.z-industries small { font-weight: 500; font-size: 13px; color: var(--z-grey); line-height: 1.4; }
@media (max-width: 1100px) { .z-industries { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 520px) { .z-industries { grid-template-columns: 1fr 1fr; gap: 10px; } .z-industries a { padding: 14px; font-size: 14px; } }
.z-nav__menu a { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 10px; color: var(--z-ink); }
.z-nav__menu a:hover { background: var(--z-wash-blue); color: var(--z-ink); }
.z-nav__menu svg { width: 18px; height: 18px; color: var(--z-blue); }
.z-nav__menu small { display: block; font-weight: 500; color: var(--z-grey); font-size: 13px; }
.z-nav__actions { display: flex; align-items: center; gap: 12px; }
.z-nav__login { font-size: 15px; font-weight: 600; color: var(--z-ink-2); padding: 12px 18px; }
.z-nav__login:hover { color: var(--z-blue); }
.z-nav__burger { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; background: none; border: 0; cursor: pointer; color: var(--z-ink); }
.z-nav__burger svg { width: 24px; height: 24px; }
.z-nav__drawer { display: none; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.z-hero { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--z-blue) 0%, var(--z-blue-deep) 100%); color: #FFFFFF; }
.z-hero__in { position: relative; display: grid; grid-template-columns: 7fr 5fr; gap: 56px; align-items: center; padding: 72px var(--z-gutter) 80px; max-width: var(--z-container); margin: 0 auto; }
.z-hero__in--even { grid-template-columns: 1fr 1fr; gap: 48px; }
.z-hero__mark { position: absolute; right: -160px; bottom: -220px; width: 760px; height: 760px; opacity: .14; pointer-events: none; }
.z-hero__mark--tl { right: auto; left: -180px; top: -220px; bottom: auto; }
.z-hero__bg { position: absolute; right: 0; top: 0; width: 78%; height: 100%; object-fit: cover; object-position: right 40%; opacity: .34; mix-blend-mode: luminosity; -webkit-mask-image: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 55%); mask-image: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 55%); pointer-events: none; }
.z-hero__shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,63,191,0) 60%, rgba(11,63,191,.55) 100%); pointer-events: none; }
.z-hero__copy { position: relative; display: flex; flex-direction: column; gap: 24px; }
.z-hero__title { font-family: var(--z-serif); font-size: 70px; line-height: 1.02; letter-spacing: -1.5px; color: #FFFFFF; text-wrap: balance; }
.z-hero__title--md { font-size: 64px; letter-spacing: -1.4px; }
.z-hero__lead { font-size: 20px; line-height: 1.6; color: var(--z-blue-tint); max-width: 600px; text-wrap: pretty; }
.z-hero__actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.z-hero__note { font-size: 14px; font-weight: 600; color: var(--z-blue-tint); margin-top: 2px; }
.z-hero__sub { display: flex; flex-direction: column; gap: 12px; margin-top: 6px; }
.z-hero--center .z-hero__in { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 18px; }
.z-hero--center .z-hero__lead { max-width: 640px; }
.z-hero--band .z-hero__in { padding-bottom: 200px; }
.z-hero--short .z-hero__in { padding-bottom: 64px; }
.z-hero--form .z-hero__in { display: flex; flex-direction: column; gap: 14px; padding: 64px var(--z-gutter) 160px; }

/* product visual: browser frame */
.z-frame { position: relative; display: flex; flex-direction: column; padding: 28px 0; }
.z-frame__glow { position: absolute; inset: -40px -60px; background: radial-gradient(closest-side, rgba(255,255,255,.35), rgba(255,255,255,0)); pointer-events: none; }
.z-frame__win { position: relative; margin-left: 28px; border-radius: 14px; overflow: hidden; box-shadow: 0 30px 70px rgba(4, 22, 70, .45); border: 1px solid rgba(255,255,255,.5); background: #FFFFFF; }
.z-frame__bar { display: flex; align-items: center; gap: 6px; padding: 10px 14px; background: #F1F4F9; border-bottom: 1px solid #E3E8F0; font-size: 12px; font-weight: 600; color: var(--z-grey); }
.z-frame__bar i { width: 10px; height: 10px; border-radius: 999px; background: #D7DEE9; }
.z-frame__bar span { margin-left: 10px; }
.z-frame__chip { position: absolute; left: 0; bottom: 8px; background: #FFFFFF; border-radius: 12px; box-shadow: 0 12px 30px rgba(4, 22, 70, .3); padding: 12px 16px; display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 700; color: var(--z-ink); }
.z-frame__chip i, .z-dot { width: 10px; height: 10px; border-radius: 999px; background: var(--z-green); flex-shrink: 0; }

/* product visual: layered estimate card over calendar strip */
.z-stage { position: relative; height: 470px; }
.z-stage__cal { position: absolute; right: -20px; top: 0; width: 520px; border-radius: 14px; overflow: hidden; box-shadow: 0 30px 70px rgba(4, 22, 70, .45); border: 1px solid rgba(255,255,255,.5); background: #FFFFFF; opacity: .96; }
.z-stage__calbar { display: flex; align-items: center; justify-content: space-between; padding: 10px 14px; background: #F1F4F9; border-bottom: 1px solid #E3E8F0; font-size: 12px; font-weight: 700; color: var(--z-grey); }
.z-stage__calbar b { color: var(--z-blue); font-weight: 700; }
.z-stage__card { position: absolute; left: 0; top: 140px; width: 400px; }
.z-stage__chip { position: absolute; right: 40px; bottom: 0; background: #FFFFFF; border-radius: 12px; box-shadow: 0 12px 30px rgba(4, 22, 70, .3); padding: 12px 16px; display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 700; color: var(--z-ink); }

/* estimate / invoice card */
.z-est { background: #FFFFFF; border-radius: 18px; box-shadow: 0 30px 70px rgba(4, 22, 70, .4); padding: 26px; display: flex; flex-direction: column; gap: 14px; color: var(--z-ink); }
.z-est__head { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.z-est__id { font-size: 12px; font-weight: 700; color: var(--z-grey); letter-spacing: 1px; }
.z-est__name { font-family: var(--z-serif); font-size: 22px; }
.z-est__lines { display: flex; flex-direction: column; gap: 9px; font-size: 14px; color: var(--z-ink-2); border-top: 1px solid #EEF1F6; padding-top: 12px; }
.z-est__lines div { display: flex; justify-content: space-between; gap: 12px; }
.z-est__lines b { font-weight: 700; }
.z-est__total { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid #EEF1F6; padding-top: 12px; font-size: 14px; color: var(--z-grey); }
.z-est__total b { font-size: 26px; font-weight: 700; color: var(--z-ink); }
.z-est__btn { text-align: center; font-size: 14px; font-weight: 700; color: #FFFFFF; background: var(--z-blue); padding: 12px; border-radius: 999px; }

/* --------------------------------------------------------------------------
   Bands and sections
   -------------------------------------------------------------------------- */
.z-band { background: var(--z-navy); color: #FFFFFF; }
.z-band__in { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; padding: 26px var(--z-gutter); max-width: var(--z-container); margin: 0 auto; }
.z-band__item { display: flex; align-items: center; justify-content: center; gap: 12px; font-size: 16px; font-weight: 700; text-align: center; }
.z-band__item svg { width: 22px; height: 22px; color: var(--z-sky); flex-shrink: 0; }

.z-section { padding: 96px 0; }
.z-section--wash { background: var(--z-wash); }
.z-section--tight { padding-top: 0; }
.z-section__head { display: flex; flex-direction: column; gap: 14px; max-width: 760px; margin-bottom: 44px; }
.z-section__head--center { align-items: center; text-align: center; margin-left: auto; margin-right: auto; }
.z-h2 { font-family: var(--z-serif); font-size: 46px; line-height: 1.1; letter-spacing: -1px; color: var(--z-ink); text-wrap: pretty; }
.z-h2--sm { font-size: 40px; }
.z-h2--lg { font-size: 48px; }
.z-h3 { font-size: 22px; font-weight: 700; color: var(--z-ink); }
.z-lead { font-size: 18px; line-height: 1.6; color: var(--z-muted); }
.z-p { font-size: 16px; line-height: 1.6; color: var(--z-muted); }
.z-split { display: grid; grid-template-columns: 5fr 7fr; gap: 64px; align-items: center; }
.z-split--top { align-items: start; }
.z-split--47 { grid-template-columns: 4fr 8fr; }

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

.z-card { display: flex; flex-direction: column; gap: 16px; background: var(--z-wash); border-radius: var(--z-radius); padding: 24px 24px 32px; }
.z-card--white { background: #FFFFFF; box-shadow: 0 10px 30px rgba(13, 27, 62, .06); }
.z-card--line { background: #FFFFFF; border: 1px solid var(--z-line); padding: 28px; }
.z-card__img { width: 100%; height: 190px; object-fit: cover; object-position: top; border-radius: 10px; border: 1px solid var(--z-line); }
.z-card__img--photo { object-position: center; }
.z-card__shot { position: relative; height: 190px; border-radius: 10px; overflow: hidden; border: 1px solid var(--z-line); }
.z-card__shot img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.z-card__shot-chip { position: absolute; left: 12px; bottom: 12px; background: #FFFFFF; border-radius: 10px; box-shadow: 0 8px 20px rgba(13, 27, 62, .2); padding: 8px 12px; display: flex; flex-direction: column; gap: 2px; }
.z-card__shot-chip small { font-size: 10px; font-weight: 700; color: var(--z-grey); letter-spacing: 1px; }
.z-card__shot-chip b { font-size: 13px; font-weight: 700; color: var(--z-ink); }
.z-card__time { font-size: 13px; font-weight: 700; color: var(--z-blue); letter-spacing: 1.5px; }
.z-card__icon { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; background: var(--z-wash-blue); }
.z-card__icon svg { width: 22px; height: 22px; color: var(--z-blue); }
.z-card--row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: center; }
.z-card--row .z-card__img { height: 170px; }
.z-card__num { font-family: var(--z-serif); font-size: 44px; color: var(--z-blue); line-height: 1; }

/* founder proof */
.z-quote { background: #FFFFFF; border-radius: 20px; border: 1px solid var(--z-line); padding: 44px 56px; display: grid; grid-template-columns: 96px 1fr; gap: 32px; align-items: center; }
.z-quote__photo { width: 96px; height: 96px; border-radius: 999px; overflow: hidden; border: 2px solid var(--z-wash-blue); }
.z-quote__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.z-quote__text { font-family: var(--z-serif); font-size: 26px; line-height: 1.4; color: var(--z-ink); text-wrap: pretty; }
.z-quote__by { display: block; margin-top: 12px; font-size: 15px; font-weight: 600; color: var(--z-grey); }

/* pricing */
.z-toggle { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.4); border-radius: 999px; padding: 6px; }
.z-toggle button { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 700; color: #FFFFFF; background: transparent; border: 0; padding: 10px 20px; border-radius: 999px; cursor: pointer; }
.z-toggle button.is-on { color: var(--z-blue-deep); background: #FFFFFF; }
.z-toggle .z-save { font-size: 12px; font-weight: 700; color: var(--z-blue-deep); background: #FFD666; padding: 4px 9px; border-radius: 999px; }
.z-plans { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; align-items: end; }
.z-plans--overlap { position: relative; margin-top: -140px; }
.z-plan { position: relative; display: flex; flex-direction: column; gap: 18px; background: #FFFFFF; border: 1px solid #E3E8F0; border-radius: 20px; padding: 36px; box-shadow: 0 20px 50px rgba(4, 22, 70, .14); }
.z-plan--hot { border: 2px solid var(--z-blue); box-shadow: 0 30px 70px rgba(30, 123, 255, .28); }
.z-plan__badge { position: absolute; top: -15px; left: 36px; font-size: 12px; font-weight: 700; letter-spacing: .5px; color: #FFFFFF; background: var(--z-blue); padding: 7px 14px; border-radius: 999px; }
.z-plan__name { font-size: 15px; font-weight: 700; letter-spacing: 1px; color: var(--z-grey); text-transform: uppercase; }
.z-plan--hot .z-plan__name { color: var(--z-blue); }
.z-plan__price { display: flex; align-items: baseline; gap: 8px; }
.z-plan__price b { font-family: var(--z-serif); font-weight: 400; font-size: 56px; letter-spacing: -1px; color: var(--z-ink); line-height: 1; }
.z-plan__price span { font-size: 15px; color: var(--z-grey); }
.z-plan__alt { align-self: flex-start; font-size: 14px; font-weight: 600; color: var(--z-blue-deep); background: var(--z-wash-blue); padding: 6px 12px; border-radius: 999px; }
.z-plan__desc { font-size: 15px; line-height: 1.5; color: var(--z-muted); min-height: 46px; }
.z-plan__hint { text-align: center; font-size: 13px; color: var(--z-grey); }
.z-plan__list { display: flex; flex-direction: column; gap: 11px; font-size: 14px; color: var(--z-ink-2); border-top: 1px solid #EEF1F6; padding-top: 18px; }
.z-plan__list li { display: flex; align-items: center; gap: 10px; }
.z-plan__list li.is-key { font-weight: 700; }
.z-plan__list svg { width: 16px; height: 16px; color: var(--z-blue); flex-shrink: 0; }
.z-plans--mini .z-plan { padding: 22px 24px; gap: 6px; box-shadow: none; border-radius: 14px; }
.z-plans--mini .z-plan__price b { font-size: 36px; }
.z-plans--mini .z-plan__desc { min-height: 0; font-size: 14px; }

/* compare table */
.z-compare { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; border: 1px solid #E3E8F0; border-radius: 16px; overflow: hidden; }
.z-compare > div { padding: 16px 24px; border-top: 1px solid #EEF1F6; font-size: 15px; color: var(--z-ink); display: flex; align-items: center; }
.z-compare > div:nth-child(-n+4) { border-top: 0; background: var(--z-wash); font-size: 14px; font-weight: 700; padding: 18px 24px; }
.z-compare > div:nth-child(4n+2), .z-compare > div:nth-child(4n+3), .z-compare > div:nth-child(4n+4) { justify-content: center; text-align: center; }
.z-compare > div:nth-child(4n+3) { background: #F8FBFF; }
.z-compare > div:nth-child(3) { background: var(--z-wash-blue); color: var(--z-blue); }
.z-compare > div:nth-child(1) { font-size: 13px; letter-spacing: 1px; color: var(--z-grey); }
.z-compare b { font-weight: 700; }
.z-compare svg { width: 20px; height: 20px; color: var(--z-blue); }
.z-compare i { width: 14px; height: 2px; background: #C9D1DE; border-radius: 2px; display: block; }
.z-compare__foot { background: var(--z-wash) !important; padding: 20px 24px !important; }

/* FAQ */
.z-faq { display: flex; flex-direction: column; gap: 12px; }
.z-faq details { border: 1px solid var(--z-line); border-radius: 14px; background: #FFFFFF; }
.z-faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 22px 26px; font-size: 18px; font-weight: 700; color: var(--z-ink); }
.z-faq summary::-webkit-details-marker { display: none; }
.z-faq summary svg { width: 20px; height: 20px; color: var(--z-grey); flex-shrink: 0; transition: transform .2s ease; }
.z-faq details[open] summary svg { transform: rotate(180deg); }
.z-faq details p { padding: 0 26px 22px; font-size: 15px; line-height: 1.65; color: var(--z-muted); }
.z-faq--big summary { font-size: 19px; padding: 24px 28px; }
.z-faq--big details p { font-size: 16px; padding: 0 28px 24px; }
.z-faq-groups { display: flex; flex-direction: column; gap: 56px; }
.z-faq-group h2 { font-family: var(--z-serif); font-size: 36px; letter-spacing: -.8px; margin-bottom: 14px; }
.z-index { display: flex; flex-direction: column; gap: 4px; position: sticky; top: 24px; }
.z-index a { font-size: 16px; font-weight: 600; color: var(--z-ink-2); padding: 12px 16px; border-radius: 10px; }
.z-index a:hover, .z-index a.is-active { color: var(--z-blue); background: var(--z-wash-blue); }
.z-index__cta { margin-top: 24px; background: var(--z-navy); border-radius: 16px; padding: 24px; display: flex; flex-direction: column; gap: 12px; color: #FFFFFF; }
.z-index__cta .z-serif { font-size: 22px; line-height: 1.3; }
.z-index__cta small { font-size: 14px; color: #B8C4DC; line-height: 1.5; }
.z-index__cta a.z-link { justify-content: center; font-size: 14px; color: #FFFFFF; }

/* callouts */
.z-callout { background: var(--z-wash); border-radius: 20px; padding: 40px 48px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.z-callout .z-serif { font-size: 28px; }
.z-callout p { font-size: 16px; color: var(--z-muted); margin-top: 6px; }
.z-cta { background: var(--z-navy); border-radius: 24px; padding: 64px; display: flex; align-items: center; justify-content: space-between; gap: 40px; color: #FFFFFF; }
.z-cta h2 { font-family: var(--z-serif); font-size: 44px; letter-spacing: -.5px; color: #FFFFFF; text-wrap: pretty; max-width: 680px; }
.z-cta p { font-size: 17px; color: #B8C4DC; margin-top: 12px; }
.z-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.z-stat { display: flex; flex-direction: column; gap: 6px; border-top: 2px solid var(--z-ink); padding-top: 20px; }
.z-stat b { font-family: var(--z-serif); font-weight: 400; font-size: 56px; letter-spacing: -1px; color: var(--z-ink); line-height: 1; }
.z-stat span { font-size: 16px; font-weight: 700; }
.z-stat small { font-size: 14px; color: var(--z-grey); }

/* contact */
.z-contact { position: relative; display: grid; grid-template-columns: 5fr 7fr; gap: 32px; margin-top: -100px; align-items: start; }
.z-contact__box { background: #FFFFFF; border: 1px solid #E3E8F0; border-radius: 20px; padding: 32px; box-shadow: 0 20px 50px rgba(4, 22, 70, .14); display: flex; flex-direction: column; gap: 22px; }
.z-contact__row { display: flex; gap: 14px; align-items: flex-start; }
.z-contact__row small { font-size: 13px; font-weight: 700; color: var(--z-grey); letter-spacing: 1px; display: block; }
.z-contact__row b { font-size: 18px; font-weight: 700; color: var(--z-ink); display: block; }
.z-contact__row span { font-size: 14px; color: var(--z-grey); }
.z-contact__links { background: var(--z-wash); border-radius: 16px; padding: 24px 28px; display: flex; flex-direction: column; gap: 12px; margin-top: 16px; }
.z-contact__links a { display: flex; justify-content: space-between; align-items: center; font-size: 15px; font-weight: 700; color: var(--z-ink); }
.z-contact__links a svg { width: 16px; height: 16px; color: var(--z-blue); }
.z-form { background: #FFFFFF; border: 1px solid #E3E8F0; border-radius: 20px; padding: 36px; box-shadow: 0 20px 50px rgba(4, 22, 70, .14); display: flex; flex-direction: column; gap: 18px; }
.z-form h2 { font-family: var(--z-serif); font-size: 30px; letter-spacing: -.5px; }
.z-field { display: flex; flex-direction: column; gap: 8px; }
.z-field label { font-size: 14px; font-weight: 700; color: var(--z-ink); }
.z-field input, .z-field textarea, .z-field select { font: inherit; font-size: 15px; color: var(--z-ink); border: 1px solid var(--z-line-2); border-radius: 12px; padding: 14px 16px; background: #FFFFFF; width: 100%; }
.z-field input:focus, .z-field textarea:focus, .z-field select:focus { outline: 2px solid var(--z-blue); outline-offset: 1px; border-color: var(--z-blue); }
.z-field textarea { min-height: 140px; resize: vertical; }
.z-radios { display: flex; flex-wrap: wrap; gap: 8px; }
.z-radios label { cursor: pointer; }
.z-radios input { position: absolute; opacity: 0; width: 0; height: 0; }
.z-radios span { display: inline-block; font-size: 14px; font-weight: 600; color: var(--z-ink); background: var(--z-wash); border: 1px solid var(--z-line-2); padding: 10px 16px; border-radius: 999px; }
.z-radios input:checked + span { color: #FFFFFF; background: var(--z-blue); border-color: var(--z-blue); }
.z-radios input:focus-visible + span { outline: 2px solid var(--z-blue); outline-offset: 2px; }
.z-form__foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.z-form__foot small { font-size: 13px; color: var(--z-grey); max-width: 380px; line-height: 1.5; }
.z-form__msg { font-size: 15px; font-weight: 600; padding: 14px 16px; border-radius: 12px; }
.z-form__msg--ok { color: var(--z-green); background: var(--z-green-bg); }
.z-form__msg--err { color: #B42318; background: #FEE4E2; }

/* about */
.z-portrait { width: 340px; height: 400px; border-radius: 24px; overflow: hidden; border: 3px solid rgba(255,255,255,.6); box-shadow: 0 30px 70px rgba(4, 22, 70, .4); }
.z-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.z-caption { background: #FFFFFF; border-radius: 12px; box-shadow: 0 12px 30px rgba(4, 22, 70, .3); padding: 12px 18px; text-align: center; color: var(--z-ink); }
.z-caption b { display: block; font-size: 15px; }
.z-caption span { font-size: 13px; color: var(--z-grey); }
.z-letter { display: flex; flex-direction: column; gap: 22px; font-size: 19px; line-height: 1.7; color: var(--z-ink-2); }
.z-letter .z-sign { font-family: var(--z-serif); font-size: 30px; color: var(--z-ink); margin-top: 8px; }
.z-letter .z-sign small { display: block; font-family: var(--z-sans); font-size: 14px; color: var(--z-grey); margin-top: 4px; }

/* --------------------------------------------------------------------------
   Pricing guides (article layout)
   -------------------------------------------------------------------------- */
.z-crumbs { display: flex; gap: 10px; font-size: 14px; font-weight: 600; color: var(--z-blue-tint-2); }
.z-crumbs a { color: #FFFFFF; }
.z-article-grid { display: grid; grid-template-columns: 280px minmax(0, 1fr); gap: 64px; align-items: start; }
.z-article { max-width: 760px; font-size: 17px; line-height: 1.7; color: var(--z-ink-2); }
.z-article > p { margin: 0 0 18px; }
.z-article__lead { font-size: 19px; color: var(--z-ink-2); }
.z-article h2 { font-family: var(--z-serif); font-size: 36px; line-height: 1.1; letter-spacing: -.8px; color: var(--z-ink); margin: 48px 0 16px; scroll-margin-top: 24px; }
.z-article h3 { font-size: 20px; font-weight: 700; color: var(--z-ink); margin: 28px 0 8px; }
.z-article__note { font-size: 15px; color: var(--z-grey); background: var(--z-wash); border-radius: 12px; padding: 14px 18px; }
.z-table-wrap { overflow-x: auto; margin: 8px 0 16px; border: 1px solid var(--z-line); border-radius: 14px; }
.z-table { width: 100%; border-collapse: collapse; font-size: 15px; min-width: 640px; }
.z-table th { text-align: left; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--z-grey); background: var(--z-wash); padding: 14px 16px; }
.z-table td { padding: 12px 16px; border-top: 1px solid #EEF1F6; vertical-align: top; color: var(--z-ink-2); }
.z-table td:first-child { color: var(--z-ink); font-weight: 600; }
.z-table td:nth-child(3) { background: #F8FBFF; color: var(--z-ink); }
.z-table td:last-child { font-size: 14px; color: var(--z-grey); }
.z-est--inline { box-shadow: 0 16px 40px rgba(13, 27, 62, .10); border: 1px solid var(--z-line); max-width: 460px; margin: 8px 0 20px; }
@media (max-width: 900px) {
  .z-article-grid { grid-template-columns: 1fr; gap: 24px; }
  .z-article-side .z-index { flex-direction: row; flex-wrap: wrap; }
  .z-article h2 { font-size: 28px; }
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.z-footer { border-top: 1px solid var(--z-line); background: #FFFFFF; }
.z-footer__in { max-width: var(--z-container); margin: 0 auto; padding: 64px var(--z-gutter) 28px; }
.z-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 40px; border-bottom: 1px solid var(--z-line); }
.z-footer__brand { display: flex; flex-direction: column; gap: 14px; }
.z-footer__brand p { font-size: 15px; color: var(--z-muted); max-width: 300px; line-height: 1.6; }
.z-footer h4 { font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--z-grey); margin-bottom: 14px; }
.z-footer__col li { margin-bottom: 10px; }
.z-footer__col a { font-size: 15px; font-weight: 600; color: var(--z-ink-2); }
.z-footer__col a:hover { color: var(--z-blue); }
.z-footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding-top: 24px; font-size: 14px; color: var(--z-grey); flex-wrap: wrap; }
.z-footer__bottom div { display: flex; gap: 24px; }
.z-footer__bottom a { color: var(--z-grey); }
.z-footer__social { display: flex; gap: 12px; }
.z-footer__social a { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 999px; background: var(--z-wash); color: var(--z-ink); }
.z-footer__social a:hover { background: var(--z-wash-blue); color: var(--z-blue); }
.z-footer__social svg { width: 18px; height: 18px; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1100px) {
  :root { --z-gutter: 40px; }
  .z-hero__title { font-size: 56px; }
  .z-hero__title--md { font-size: 52px; }
  .z-h2 { font-size: 40px; }
  .z-stage__cal { width: 440px; }
  .z-footer__grid { grid-template-columns: 1fr 1fr 1fr; }
  .z-nav__menu { width: 620px; grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .z-nav__links, .z-nav__login { display: none; }
  .z-nav__burger { display: flex; }
  .z-nav__actions .z-btn { font-size: 14px; padding: 11px 16px; }
  .z-nav__drawer { display: none; border-top: 1px solid var(--z-line); background: #FFFFFF; padding: 12px var(--z-gutter) 24px; }
  .z-nav__drawer.is-open { display: block; }
  .z-nav__drawer a { display: block; padding: 14px 0; font-size: 17px; font-weight: 600; color: var(--z-ink); border-bottom: 1px solid var(--z-line); }
  .z-nav__drawer .z-nav__drawer-sub a { padding-left: 16px; font-weight: 500; color: var(--z-ink-2); }
  .z-hero__in, .z-hero__in--even, .z-split, .z-split--47, .z-contact, .z-quote { grid-template-columns: 1fr; }
  .z-hero__in { gap: 40px; padding-top: 48px; padding-bottom: 56px; }
  .z-hero__bg { width: 100%; opacity: .22; -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 100%); mask-image: linear-gradient(180deg, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 100%); }
  .z-hero__mark { display: none; }
  .z-grid-3, .z-grid-2, .z-plans, .z-stats, .z-band__in { grid-template-columns: 1fr; }
  .z-plans--overlap { margin-top: -90px; }
  .z-stage { height: auto; }
  .z-stage__cal { display: none; }
  .z-stage__card { position: static; width: 100%; }
  .z-stage__chip { position: static; margin-top: 12px; align-self: flex-start; display: inline-flex; }
  .z-frame__win { margin-left: 0; }
  .z-compare { grid-template-columns: 1.4fr 1fr 1fr 1fr; font-size: 13px; }
  .z-compare > div { padding: 12px 10px; font-size: 13px; }
  .z-cta, .z-callout { flex-direction: column; align-items: flex-start; padding: 40px 28px; }
  .z-cta h2 { font-size: 34px; }
  .z-card--row { grid-template-columns: 1fr; }
  .z-index { position: static; flex-direction: row; flex-wrap: wrap; }
  .z-index__cta { display: none; }
  .z-footer__grid { grid-template-columns: 1fr 1fr; }
  .z-portrait { width: 100%; max-width: 340px; }
  .z-band__item { justify-content: flex-start; text-align: left; }
}
@media (max-width: 520px) {
  :root { --z-gutter: 20px; }
  .z-hero__title, .z-hero__title--md { font-size: 40px; letter-spacing: -.8px; }
  .z-hero__lead { font-size: 17px; }
  .z-hero__actions { flex-direction: column; align-items: stretch; }
  .z-hero__actions .z-btn { width: 100%; }
  .z-hero__actions .z-link { justify-content: center; }
  .z-hero__note { text-align: center; margin-top: 0; }
  .z-h2 { font-size: 30px; }
  .z-section { padding: 56px 0; }
  .z-quote { padding: 28px 24px; }
  .z-quote__text { font-size: 20px; }
  .z-plan__price b { font-size: 44px; }
  .z-compare { display: block; overflow-x: auto; }
  .z-compare > div { display: none; }
  .z-est { padding: 20px; }
  .z-footer__grid { grid-template-columns: 1fr; }
  .z-toggle button { padding: 10px 14px; font-size: 14px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .z-btn:hover { transform: none; }
}

/* --------------------------------------------------------------------------
   Industries hub (/industries)
   -------------------------------------------------------------------------- */
.z-table--wide { min-width: 700px; font-size: 14px; }
.z-table--wide td { padding: 10px 12px; }
.z-table--wide td:nth-child(3) { background: transparent; color: var(--z-ink-2); }
.z-table--wide td:last-child { font-size: 15px; color: var(--z-ink-2); }
.z-table--wide td a { font-weight: 700; color: var(--z-ink); }
.z-table--wide td a:hover { color: var(--z-blue); }
.z-trade-notes { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 8px 0 12px; }
.z-trade-note { border: 1px solid var(--z-line); border-radius: 14px; padding: 22px 24px; background: #FFFFFF; min-width: 0; }
.z-trade-note h3 { margin: 0 0 8px; font-size: 19px; }
.z-trade-note p { font-size: 15px; line-height: 1.6; margin: 0 0 12px; }
.z-trade-note__links { display: flex; flex-direction: column; gap: 6px; margin: 0 !important; }
.z-trade-note__links .z-link { font-size: 15px; }
.z-nav__menu-all { grid-column: 1 / -1; justify-content: center; font-weight: 700; color: var(--z-blue) !important; border-top: 1px solid var(--z-line); border-radius: 0 !important; margin-top: 6px; padding-top: 14px !important; }
@media (max-width: 760px) { .z-trade-notes { grid-template-columns: 1fr; } }

/* Hero badge above the H1 (homepage) */
.z-hero__badge { align-self: flex-start; margin-bottom: 6px; font-size: 15px; font-weight: 700; letter-spacing: .2px; padding: 10px 16px 10px 12px; background: rgba(255, 255, 255, .16); border-color: rgba(255, 255, 255, .45); backdrop-filter: blur(6px); }
.z-hero__badge svg { width: 18px; height: 18px; color: #7CF2B1; }

/* "Works with" row under the hero mockup (homepage) */
.z-hero__works { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px 20px; margin-top: 12px; }
.z-hero__works-label { flex-basis: 100%; text-align: center; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255, 255, 255, .55); }
.z-hero__works-item { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 600; color: #FFFFFF; opacity: .88; }
.z-hero__works-item svg { width: 18px; height: 18px; flex-shrink: 0; }
@media (max-width: 900px) { .z-hero__works { margin-top: 8px; gap: 8px 18px; } .z-hero__works-item { font-size: 14px; } }
.z-hero__visual { min-width: 0; }

/* Accent button: the one warm element on the blue hero */
.z-btn--accent { background: #FFC94A; color: #0D1B3E; box-shadow: 0 10px 26px rgba(4, 22, 70, .28); }
.z-btn--accent:hover { background: #FFD66E; color: #0D1B3E; }


/* ======================================================================
   Adjustments after the theme went live, September 2026
   ====================================================================== */

/* ---- sections breathed too much; 96px top and bottom on every one ---- */
.z-section { padding: 64px 0; }
.z-hero--band .z-hero__in { padding-bottom: 150px; }
.z-hero--form .z-hero__in { padding-top: 48px; padding-bottom: 120px; }

/* ---- "See a live demo" in the hero was a bare white text link beside a
        big yellow button; as a ghost button it reads as the second choice
        it is meant to be ---- */
.z-hero .z-link--white,
.z-band .z-link--white {
  padding: 15px 26px;
  border: 2px solid rgba(255, 255, 255, .75);
  border-radius: 999px;
  color: #FFFFFF;
  font-size: 16px;
  transition: background .15s ease, border-color .15s ease, color .15s ease, transform .15s ease;
}
.z-hero .z-link--white:hover,
.z-band .z-link--white:hover {
  background: #FFFFFF;
  border-color: #FFFFFF;
  color: var(--z-blue-deep);
  transform: translateY(-1px);
}

/* ---- footer: brand + four short link columns, then the nineteen trade
        pages as a row of chips, then the bottom bar. The trades used to sit
        in one column and towered over the others ---- */
.z-footer { background: #F7F9FC; }
.z-footer__in { padding: 56px var(--z-gutter) 24px; }
.z-footer__grid { grid-template-columns: 1.7fr 1fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 36px; border-bottom: 1px solid var(--z-line); }
.z-footer__col li { margin-bottom: 9px; }
.z-footer__col a { font-size: 14.5px; font-weight: 500; color: var(--z-ink-2); }
.z-footer__col a:hover { color: var(--z-blue); }
.z-footer__trades { padding: 28px 0; border-bottom: 1px solid var(--z-line); }
.z-footer__trades-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 14px; }
.z-footer__trades-head h4 { margin-bottom: 0; }
.z-footer__trades-head a { font-size: 14px; font-weight: 600; color: var(--z-blue); }
.z-footer__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.z-footer__chips a {
  display: inline-flex; align-items: center; padding: 7px 13px; border-radius: 999px;
  font-size: 13.5px; font-weight: 600; color: var(--z-ink-2);
  background: #FFFFFF; border: 1px solid var(--z-line);
  transition: color .15s, border-color .15s, background .15s;
}
.z-footer__chips a:hover { color: var(--z-blue); border-color: var(--z-blue); background: var(--z-wash-blue); }
.z-footer__bottom { padding-top: 20px; font-size: 13.5px; }
@media (max-width: 1024px) {
  .z-footer__grid { grid-template-columns: 1fr 1fr 1fr; }
  .z-footer__brand { grid-column: span 3; }
}
@media (max-width: 640px) {
  .z-footer__grid { grid-template-columns: 1fr 1fr; }
  .z-footer__brand { grid-column: span 2; }
}

/* ---- pricing cards: the grid aligned them to the bottom so they hung at
        different heights. Stretch them, and push the feature list so the
        buttons still line up ---- */
.z-plans { align-items: stretch; }
.z-plan { height: 100%; }
.z-plan__list { margin-top: auto; }
.z-plans--overlap .z-plan--hot { transform: translateY(-14px); }
@media (max-width: 900px) { .z-plans--overlap .z-plan--hot { transform: none; } }

/* ---- the navy card under the sticky page index. ".z-index a" colours every
        link in the index ink-on-white, which also hit the button inside this
        card: dark text on a blue button, and blue-on-navy on hover ---- */
.z-index .z-index__cta a.z-btn,
.z-index .z-index__cta a.z-btn:hover {
  color: #FFFFFF; background: var(--z-blue); border-radius: 12px;
  padding: 13px 16px; white-space: normal; text-align: center; line-height: 1.3;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
}
.z-index .z-index__cta a.z-btn:hover { background: #3A8DFF; }
.z-index .z-index__cta a.z-link,
.z-index .z-index__cta a.z-link:hover { color: #FFFFFF; background: transparent; padding: 4px 0; text-decoration: underline; text-underline-offset: 3px; }

/* ---- the framework's alerts. errorMsg() writes Bootstrap markup - a
        .toast bottom right, or a .modal - and expects Bootstrap's CSS and
        jQuery to place and show it. This theme loads neither, so the toast
        was landing as a plain block under the navbar. Styled natively here;
        site.js shows and dismisses them ---- */
.toast-container {
  position: fixed; right: 20px; bottom: 20px; z-index: 1200;
  display: flex; flex-direction: column; gap: 10px; max-width: min(380px, calc(100vw - 40px));
}
.toast {
  background: #FFFFFF; border: 1px solid var(--z-line); border-radius: 14px;
  box-shadow: 0 18px 44px rgba(4, 22, 70, .18);
  opacity: 0; transform: translateY(12px);
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
}
.toast.show { opacity: 1; transform: none; pointer-events: auto; }
.toast-header {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; border-bottom: 1px solid var(--z-line);
  font-size: 14px; color: var(--z-ink);
}
.toast-header .me-auto { margin-right: auto; }
.toast-body { padding: 14px 16px; font-size: 15px; line-height: 1.55; color: var(--z-ink-2); }
.toast-body .text-danger, .modal-body .text-danger { color: #C62828; }
.toast-body .text-success, .modal-body .text-success { color: #1B8A4C; }
.toast-body .text-warning, .modal-body .text-warning { color: #B36B00; }
.toast-body i, .modal-body i { margin-right: 6px; }

.btn-close {
  width: 28px; height: 28px; border: 0; border-radius: 999px; background: transparent;
  color: var(--z-grey); cursor: pointer; font-size: 0; position: relative; flex: 0 0 auto;
}
.btn-close:before { content: "\00d7"; font-size: 22px; line-height: 28px; }
.btn-close:hover { background: var(--z-wash); color: var(--z-ink); }

.modal.fade { display: none; }
.modal.fade.show {
  display: flex; align-items: center; justify-content: center;
  position: fixed; inset: 0; z-index: 1300; padding: 20px;
  background: rgba(13, 27, 62, .55);
}
.modal-dialog { width: 100%; max-width: 440px; margin: 0; }
.modal-content { background: #FFFFFF; border-radius: 18px; box-shadow: 0 30px 70px rgba(4, 22, 70, .35); overflow: hidden; }
.modal-header { display: flex; align-items: center; gap: 10px; padding: 14px 18px; border-bottom: 1px solid var(--z-line); }
.modal-header h6 { font-size: 15px; font-weight: 700; color: var(--z-ink); margin: 0; }
.modal-header .w-100 { flex: 1; }
.modal-header .btn-outline-danger { border: 0; background: transparent; cursor: pointer; color: var(--z-grey); padding: 4px 8px; border-radius: 8px; }
.modal-header .btn-outline-danger:hover { background: var(--z-wash); color: var(--z-ink); }
.modal-body { padding: 22px 20px; font-size: 15px; line-height: 1.55; color: var(--z-ink-2); }
.modal-body .display-3 { font-size: 44px; line-height: 1; }
.modal-body .display-3 i { margin: 0; }
.modal-body .mb-2 { margin-bottom: 10px; }
.modal-body .mb-3 { margin-bottom: 14px; }

/* ---- the side column on FAQs and the pricing guides. .z-index was sticky,
        but its container was only as tall as itself, so it had nowhere to
        stick within. The aside is the grid item, so the aside sticks. ---- */
.z-article-side { position: sticky; top: 24px; align-self: start; }
@media (max-width: 900px) { .z-article-side { position: static; } }

/* ---- FAQ search and counts ---- */
.z-faq-search { position: relative; margin-bottom: 28px; }
.z-faq-search svg { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; color: var(--z-grey); pointer-events: none; }
.z-faq-search input {
  width: 100%; padding: 16px 18px 16px 50px; font: inherit; font-size: 16px; color: var(--z-ink);
  border: 2px solid var(--z-line); border-radius: 14px; background: #FFFFFF; outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.z-faq-search input:focus { border-color: var(--z-blue); box-shadow: 0 0 0 4px rgba(30, 123, 255, .12); }
.z-faq-search input::placeholder { color: var(--z-grey); }
.z-faq-count {
  display: inline-block; vertical-align: middle; margin-left: 8px; padding: 2px 10px; border-radius: 999px;
  font-size: 13px; font-weight: 700; color: var(--z-blue); background: var(--z-wash-blue);
}
.z-faq-empty { padding: 28px 20px; text-align: center; color: var(--z-muted); background: var(--z-wash); border-radius: 14px; margin-bottom: 24px; }
.z-faq-group[hidden], .z-faq details[hidden] { display: none; }
.z-faq-group h2 { scroll-margin-top: 24px; }

/* ---- FAQs used an inline 300px/1fr grid, which the mobile media query
        could not override, so the page scrolled sideways on phones. It now
        shares the guides' grid, which already collapses to one column ---- */
.z-article-grid--faq { grid-template-columns: 300px minmax(0, 1fr); }
@media (max-width: 900px) { .z-article-grid--faq { grid-template-columns: 1fr; } }
/* the price table is 640px wide at minimum; a plain 1fr track grows to fit
   it instead of letting .z-table-wrap scroll, so phones scrolled sideways */
@media (max-width: 900px) { .z-article-grid { grid-template-columns: minmax(0, 1fr); } }

/* ---- trade page hero: the copy column is ~536px, and "Start free for
        pressure washing" plus "See a live demo" did not fit on one line, so
        the demo link dropped under the button. Slightly smaller controls,
        and no wrapping until the phone layout ---- */
.z-hero--trade .z-hero__actions { flex-wrap: nowrap; gap: 14px; }
.z-hero--trade .z-hero__actions .z-btn { font-size: 16px; padding: 15px 22px; }
.z-hero--trade .z-hero__actions .z-link { font-size: 15px; white-space: nowrap; }
@media (max-width: 640px) { .z-hero--trade .z-hero__actions { flex-wrap: wrap; } }

/* the three checks under it were in a fixed 3-column grid, so any long one
   broke onto two lines. Now each sits on one line and the row centres */
.z-band__in { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 44px; padding: 22px var(--z-gutter); }
.z-band__item { white-space: nowrap; font-size: 15px; gap: 10px; }
.z-band__item svg { width: 20px; height: 20px; }
@media (max-width: 640px) { .z-band__item { white-space: normal; text-align: left; justify-content: flex-start; } }

/* ---- pricing: the hero's bottom padding was trimmed to 150px while the
        cards still overlap it by 140px, so the popular card (raised a further
        14px, badge on top) sat right against the billing toggle ---- */
.z-hero--band .z-hero__in { padding-bottom: 204px; }
