:root {
  --ink: #191919;
  --text: #37352f;
  --muted: #787774;
  --line: #e9e9e7;
  --paper: #ffffff;
  --canvas: #f7f6f3;
  --blue: #2383e2;
  --peach: #fdecc8;
  --sky: #d3e5ef;
  --mint: #dbeddb;
  --yellow: #fbf3db;
  --radius: 12px;
  --shadow: 0 8px 24px rgba(25, 25, 25, 0.06);
  --font: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--canvas);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.wrap {
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 max(24px, calc((100% - 1080px) / 2));
  background: rgba(247, 246, 243, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled { border-bottom-color: var(--line); background: rgba(247, 246, 243, 0.96); }

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.03em;
}
.logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 13px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-dark { background: var(--blue); color: #fff; }
.btn-dark:hover { background: #1a6ec2; }
.btn-lg { padding: 12px 18px; font-size: 15px; }

.hero { padding: 56px 0 8px; text-align: center; }
.eyebrow {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}
h1, h2, h3 { color: var(--ink); letter-spacing: -0.04em; }
h1 {
  max-width: 820px;
  margin: 0 auto;
  font-size: clamp(40px, 6.4vw, 64px);
  font-weight: 600;
  line-height: 1.08;
}
h1 em { font-style: italic; font-weight: 600; }
.lede {
  max-width: 560px;
  margin: 20px auto 28px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}
.hero-cta { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.fine { margin: 14px 0 0; color: var(--muted); font-size: 13px; }

.hero-mosaic {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 12px;
  margin: 48px auto 0;
}
.mosaic-main,
.mosaic-side img {
  width: 100%;
  object-fit: cover;
  border-radius: 16px;
  background: #eceae6;
}
.mosaic-main { height: 460px; }
.mosaic-side { display: grid; gap: 12px; }
.mosaic-side img { height: 224px; }
.mosaic-note {
  position: absolute;
  left: 20px;
  bottom: 20px;
  max-width: 280px;
  text-align: left;
}
.note {
  padding: 14px 16px;
  border-radius: var(--radius);
  text-align: left;
  box-shadow: var(--shadow);
}
.note small { display: block; font-size: 11px; color: var(--muted); margin-bottom: 4px; }
.note strong { display: block; font-size: 14px; color: var(--ink); }
.note p { margin: 6px 0 0; font-size: 13px; color: var(--text); }
.note-yellow { background: var(--yellow); }

.logos {
  padding: 40px 0 16px;
  border-bottom: 1px solid var(--line);
}
.logos-label {
  margin: 0 0 16px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}
.logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.brand-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.brand-chip svg { width: 16px; height: 16px; flex-shrink: 0; }

.section { padding: 88px 0; }
.section > h2, .split-copy h2, .trust-card h2, .book-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 600;
  line-height: 1.15;
  max-width: 640px;
}
.section-copy { max-width: 580px; color: var(--muted); margin: 0 0 36px; font-size: 17px; }

.services-section { background: var(--paper); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}
.service {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--canvas);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.service:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.num {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  background: rgba(35, 131, 226, 0.08);
  padding: 2px 8px;
  border-radius: 6px;
}
.service h3 { margin: 14px 0 8px; font-size: 20px; }
.service p { margin: 0; color: var(--muted); font-size: 14px; }
.service ul { margin: 18px 0 0; padding: 0; list-style: none; }
.service li {
  position: relative;
  padding: 6px 0 6px 18px;
  font-size: 14px;
  color: var(--text);
}
.service li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
  font-size: 12px;
}
.service li strong { color: var(--ink); }

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.tile {
  border-radius: var(--radius);
  overflow: hidden;
  padding: 0 0 20px;
}
.tile img { height: 180px; width: 100%; object-fit: cover; }
.tile h3, .tile p { padding: 0 18px; }
.tile h3 { margin: 16px 0 8px; font-size: 18px; font-weight: 600; }
.tile p { margin: 0; font-size: 14px; color: var(--text); line-height: 1.5; }
.tile p strong { color: var(--ink); }
.tile-peach { background: var(--peach); }
.tile-sky { background: var(--sky); }
.tile-mint { background: var(--mint); }

.journey {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}
.journey-col {
  padding: 26px;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
}
.journey-col span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.journey-col ol { margin: 16px 0 0; padding: 0; list-style: none; }
.journey-col li {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-size: 15px;
  color: var(--text);
}
.journey-col li strong { color: var(--ink); }
.journey-after { background: var(--ink); color: #fff; border-color: var(--ink); }
.journey-after span { color: #8ec5fc; }
.journey-after li { color: #d6d6d4; border-top-color: #333; }
.journey-after li strong { color: #fff; }

.mid-cta {
  margin-top: 32px;
  padding: 24px 28px;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.mid-cta p { margin: 0; font-weight: 600; color: var(--ink); font-size: 16px; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split-photo { border-radius: 16px; overflow: hidden; background: #eceae6; }
.split-photo img { width: 100%; height: 460px; object-fit: cover; }
.split-copy p { color: var(--muted); }

.business-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 20px;
}
.business-pills span {
  display: inline-block;
  padding: 5px 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.checks { list-style: none; padding: 0; margin: 20px 0 28px; }
.checks li {
  position: relative;
  padding: 8px 0 8px 28px;
  color: var(--text);
  font-size: 15px;
}
.checks li strong { color: var(--ink); }
.checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: var(--blue) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2' d='M3 8.5l3 3 7-7'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.checks.light li { color: #eceae6; }
.checks.light li::before { background-color: #fff; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23191919' stroke-width='2' d='M3 8.5l3 3 7-7'/%3E%3C/svg%3E"); }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}
.steps article {
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.steps span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}
.steps h3 { margin: 16px 0 8px; font-size: 18px; }
.steps p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.5; }
.steps p strong { color: var(--ink); }

.trust-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  align-items: center;
}
.trust-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
}
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 16px;
}
.trust-badge {
  display: inline-block;
  padding: 4px 10px;
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
}
.trust-card p { color: var(--muted); font-size: 15px; margin: 0 0 10px; }
.trust-card p strong { color: var(--ink); }
.trust-card a { color: var(--blue); font-weight: 500; text-decoration: none; }
.trust-card a:hover { text-decoration: underline; }

.faq { margin-top: 28px; width: 100%; max-width: 100%; }
.faq details { border-bottom: 1px solid var(--line); padding: 18px 0; }
.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--muted); font-weight: 400; }
.faq details[open] summary::after { content: "–"; }
.faq p { margin: 12px 0 0; color: var(--muted); font-size: 15px; }

.book {
  background: var(--canvas);
  padding: 48px 0 80px;
  width: 100%;
}
.book-header {
  text-align: center;
  margin-bottom: 28px;
}
.book-heading {
  color: var(--ink);
  max-width: 680px;
  margin: 0 auto 12px;
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 600;
  line-height: 1.15;
}
.book-sub {
  color: var(--muted);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}
.book-frame-full {
  width: 100%;
  overflow: hidden;
}
.book-frame-full iframe {
  display: block;
  width: 100%;
  height: 760px;
  border: none;
}

@media (max-width: 768px) {
  .book-frame-full iframe {
    height: 1020px;
  }
}

.footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 32px 0 100px;
}
.footer p, .footer small { margin: 0; color: var(--muted); font-size: 13px; }

.sticky {
  display: none;
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 50;
  background: var(--blue);
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  padding: 14px;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(35, 131, 226, 0.4);
  transition: background 0.15s ease;
}
.sticky:hover { background: #1a6ec2; }
.sticky.is-hidden { display: none !important; }

@media (max-width: 900px) {
  .pain-grid,
  .journey,
  .service-grid,
  .split,
  .steps,
  .trust-card,
  .hero-mosaic,
  .footer { grid-template-columns: 1fr; }
  .mosaic-main { height: 280px; }
  .mosaic-side img { height: 180px; }
  .mosaic-note { position: static; max-width: none; margin-top: 12px; }
  .split-photo img { height: 280px; }
  .mid-cta { flex-direction: column; align-items: flex-start; }
  .sticky { display: block; }
  .section { padding: 64px 0; }
  .hero { padding-top: 40px; }
  .footer { padding-bottom: 96px; }
}

@media (max-width: 560px) {
  .wrap { width: calc(100% - 32px); }
  h1 { font-size: 34px; }
  .lede { font-size: 16px; }
  .hero-cta .btn { width: 100%; }
}
