:root {
  --ink: #1d2528;
  --muted: #607075;
  --paper: #f6f3ec;
  --panel: #ffffff;
  --line: #d8e1df;
  --teal: #0f6d68;
  --teal-dark: #0a4d49;
  --coral: #c95f45;
  --gold: #aa7a18;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
body { margin: 0; background: var(--paper); color: var(--ink); }
a { color: inherit; }
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 28px;
  border-bottom: 1px solid var(--line);
  background: white;
}
.brand { font-weight: 900; text-decoration: none; }
nav { display: flex; flex-wrap: wrap; gap: 14px; color: var(--teal-dark); font-weight: 800; }
nav a { text-decoration: none; }
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 38px;
  align-items: center;
  max-width: 1160px;
  min-height: calc(100vh - 74px);
  margin: 0 auto;
  padding: 48px 28px;
}
.eyebrow { margin: 0 0 8px; color: var(--coral); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: 0; }
h1, h2, h3, p { letter-spacing: 0; }
h1 { margin: 0; max-width: 760px; font-size: clamp(40px, 7vw, 82px); line-height: .95; }
.lead { max-width: 680px; color: var(--muted); font-size: 20px; line-height: 1.5; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 12px 16px; border: 0; font-weight: 900; text-decoration: none; }
.primary { background: var(--teal); color: white; }
.secondary { background: var(--ink); color: white; }
.tertiary { background: white; color: var(--teal-dark); border: 1px solid var(--line); }
.section-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: -4px 0 22px; }
.inline-actions { margin-top: 18px; }
.cover-panel { border: 1px solid var(--line); background: white; padding: 14px; box-shadow: 0 18px 44px rgba(24, 39, 42, .12); }
.cover-panel img { display: block; width: 100%; height: auto; }
.band, .notice, .text-page, .access-page { max-width: 1160px; margin: 0 auto; padding: 48px 28px; }
.section-title { margin-bottom: 20px; }
.section-title h2, .notice h2 { margin: 0; font-size: 34px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.feature-grid article, .notice, .access-card, .text-page { border: 1px solid var(--line); background: white; }
.feature-grid article { padding: 20px; }
.feature-grid h3 { margin: 0 0 8px; }
.feature-grid p, .notice p, .text-page p, .access-card p { color: var(--muted); line-height: 1.55; }
.step-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.step-grid article { position: relative; border: 1px solid var(--line); background: white; padding: 22px; min-height: 230px; }
.step-grid span { display: inline-grid; place-items: center; width: 38px; height: 38px; margin-bottom: 18px; background: var(--teal); color: white; font-weight: 900; }
.step-grid h3 { margin: 0 0 8px; font-size: 22px; }
.step-grid p { margin: 0; color: var(--muted); line-height: 1.55; }
.example-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.example-card { display: grid; grid-template-columns: 190px minmax(0, 1fr); gap: 18px; border: 1px solid var(--line); background: white; padding: 18px; }
.example-card h3 { margin: 0 0 8px; }
.example-card p { margin: 0 0 10px; color: var(--muted); line-height: 1.5; }
.example-card ul { margin: 0; padding-left: 18px; color: var(--ink); line-height: 1.45; }
.example-visual { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border: 1px solid var(--line); background: #e8ebe4; }
.example-actions { margin: 18px 0 0; }
.notice { margin-bottom: 48px; }
.share-section .share-copy { margin-top: 18px; padding: 18px; border: 1px solid var(--line); background: #fbfcfa; }
.share-section .share-copy strong { display: block; margin-bottom: 6px; }
.share-section .share-copy p { margin: 0; color: var(--ink); }
footer { padding: 22px 28px; color: var(--muted); border-top: 1px solid var(--line); background: white; }
.access-page { display: grid; place-items: center; min-height: calc(100vh - 74px); }
.access-card { width: min(100%, 520px); padding: 28px; }
.access-card h1 { font-size: 36px; line-height: 1.05; }
form { display: grid; gap: 14px; margin-top: 22px; }
label { display: grid; gap: 7px; font-weight: 900; }
input { width: 100%; border: 1px solid var(--line); padding: 12px; font: inherit; }
.error { display: none; color: #893a2b !important; font-weight: 900; }
.show-error .error { display: block; }
.fine-print { font-size: 13px; }
.text-page { margin-top: 48px; }
.text-page h1 { font-size: 42px; }
.roi-landing { max-width: none; }
.landing-hero {
  max-width: 1160px;
  margin: 0 auto;
  padding: 64px 28px 32px;
}
.landing-hero h1 { font-size: clamp(42px, 7vw, 78px); }
.landing-hero .lead { max-width: 780px; }
.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}
.home-proof { margin-top: 18px; }
.book-action { margin-top: 12px; }
.roi-promo-main { margin-top: -18px; }
.proof-strip span, .keyword-list a {
  border: 1px solid var(--line);
  background: white;
  color: var(--teal-dark);
  padding: 9px 11px;
  font-weight: 900;
  text-decoration: none;
}
.landing-band { padding-top: 36px; }
.roi-callout { margin-top: 20px; }
.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}
.mini-grid div {
  border: 1px solid var(--line);
  background: #fbfcfa;
  padding: 14px;
}
.mini-grid strong, .mini-grid span { display: block; }
.mini-grid span { margin-top: 5px; color: var(--muted); line-height: 1.45; }
.keyword-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.faq-list h3 { margin: 20px 0 6px; }
.faq-list p { margin: 0; }
@media (max-width: 820px) {
  .site-header, nav { align-items: flex-start; flex-direction: column; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .cover-panel { max-width: 360px; }
  .feature-grid { grid-template-columns: 1fr; }
  .step-grid { grid-template-columns: 1fr; }
  .step-grid article { min-height: auto; }
  .example-grid { grid-template-columns: 1fr; }
  .example-card { grid-template-columns: 1fr; }
  .mini-grid { grid-template-columns: 1fr; }
}

.quiz-page { display: grid; grid-template-columns: minmax(0, 560px) minmax(0, 1fr); gap: 18px; max-width: 1160px; margin: 0 auto; padding: 48px 28px; }
.quiz-card, .result-card { border: 1px solid var(--line); background: white; padding: 28px; }
.quiz-card h1 { font-size: 46px; line-height: 1; }
.lead.small { font-size: 17px; }
.quiz-form { display: grid; gap: 14px; margin-top: 22px; }
.quiz-form select, .quiz-form input { width: 100%; border: 1px solid var(--line); background: white; padding: 12px; font: inherit; }
.result-card h2 { margin: 0 0 12px; font-size: 38px; }
.result-grid { display: grid; grid-template-columns: 1fr; gap: 14px; margin: 18px 0; }
.result-grid > div { border: 1px solid var(--line); padding: 14px; background: #fbfcfa; }
.quiz-promo .button { margin-top: 10px; }
@media (max-width: 900px) { .quiz-page { grid-template-columns: 1fr; } }
@media print { .site-header, .quiz-card, footer, .result-card .actions { display: none; } .quiz-page { display: block; padding: 0; } .result-card { border: 0; padding: 0; } }

textarea { width: 100%; border: 1px solid var(--line); padding: 12px; font: inherit; resize: vertical; }
.thanks { display: none; color: var(--teal-dark) !important; font-weight: 900; }
.show-thanks .thanks { display: block; }

.exists { display: none; }
.show-exists .exists { display: block; }
.access-card .actions { margin-top: 18px; }

.expired { display: none; }
.show-expired .expired { display: block; }

.chatbot-widget { position: fixed; right: 18px; bottom: 18px; z-index: 50; font-family: inherit; }
.chatbot-toggle { border: 0; background: #11835d; color: white; padding: 13px 16px; font-weight: 900; box-shadow: 0 12px 30px rgba(24, 39, 42, .22); cursor: pointer; }
.chatbot-panel { width: min(380px, calc(100vw - 32px)); border: 1px solid var(--line); background: white; box-shadow: 0 18px 50px rgba(24, 39, 42, .22); }
.chatbot-head { display: flex; justify-content: space-between; gap: 12px; padding: 14px; background: var(--ink); color: white; }
.chatbot-head strong, .chatbot-head span { display: block; }
.chatbot-head span { margin-top: 3px; color: #d8e1df; font-size: 12px; }
.chatbot-close { border: 0; background: transparent; color: white; font: inherit; font-weight: 900; cursor: pointer; }
.chatbot-log { display: grid; gap: 10px; max-height: 280px; overflow: auto; padding: 14px; background: #fbfcfa; }
.chatbot-message { max-width: 92%; padding: 10px 12px; border: 1px solid var(--line); background: white; }
.chatbot-message p { margin: 0; line-height: 1.45; }
.chatbot-message.user { justify-self: end; background: #e9f4ef; border-color: #b9d6c8; }
.chatbot-message.bot { justify-self: start; }
.chatbot-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.chatbot-actions a { background: var(--teal); color: white; padding: 7px 9px; text-decoration: none; font-weight: 800; font-size: 13px; }
.chatbot-suggestions { display: flex; gap: 7px; overflow-x: auto; padding: 0 14px 12px; background: #fbfcfa; }
.chatbot-suggestions button { flex: 0 0 auto; border: 1px solid var(--line); background: white; color: var(--teal-dark); padding: 7px 9px; font-weight: 800; cursor: pointer; }
.chatbot-form { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 8px; margin: 0; padding: 12px; border-top: 1px solid var(--line); background: white; }
.chatbot-form input { min-width: 0; }
.chatbot-form button { border: 0; background: var(--teal); color: white; padding: 0 13px; font-weight: 900; cursor: pointer; }

@media (max-width: 520px) {
  .chatbot-widget { right: 10px; bottom: 10px; left: 10px; }
  .chatbot-panel { width: 100%; }
  .chatbot-toggle { margin-left: auto; display: block; }
}
