/* My Smart Business Builder — shared styles (mobile-first) */

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

:root {
  --text: #22301f;
  --muted: #4c5a48;
  --green: #1d6b3c;
  --green-dark: #14532d;
  --pill-bg: #e2f1e6;
  --line: #d9e2d6;
  --card: #ffffff;
  --wash: #f6faf5;
  --focus: #0b5fff;
  --radius: 14px;
}

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;               /* 16px minimum */
  line-height: 1.5;
  color: var(--text);
  background: var(--wash);
}

.wrap {
  max-width: 45rem;              /* ~720px reading width */
  margin: 0 auto;
  padding: 0 1.25rem;
}

main { display: block; padding: 2rem 0 3rem; }

h1, h2, h3 { line-height: 1.25; margin: 0 0 0.75rem; }
h1 { font-size: 2rem; }
h2 { font-size: 1.375rem; margin-top: 2.25rem; }
h3 { font-size: 1.125rem; margin-top: 1.5rem; }
p { margin: 0 0 1rem; }

.eyebrow {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.5rem;
}

a { color: var(--green-dark); }
a:hover { color: var(--green); }

/* visible focus everywhere */
:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- skip link ---------- */
.skip {
  position: absolute;
  left: 0.5rem;
  top: -4rem;
  background: #fff;
  color: var(--text);
  padding: 0.75rem 1rem;
  z-index: 100;
  border: 2px solid var(--focus);
  border-radius: 8px;
  transition: top 0.15s ease;
}
.skip:focus { top: 0.5rem; }

/* ---------- header ---------- */
.site-header {
  background: var(--card);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.brand {
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.brand:hover { color: var(--green-dark); }

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.25rem;
  flex-wrap: wrap;
}
.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  white-space: nowrap;
}
.site-nav a:hover { background: var(--wash); }
.site-nav a[aria-current="page"] { background: var(--pill-bg); }

.menu-btn {
  display: none;
  min-height: 44px;
  min-width: 44px;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  font-weight: 700;
  border: 2px solid var(--line);
  border-radius: 999px;
  background: var(--card);
  color: var(--text);
  cursor: pointer;
}

/* ---------- hero ---------- */
.hero { padding: 2rem 0 1rem; }
.hero h1 { margin-bottom: 0.5rem; }
.hero .subhead { font-size: 1.25rem; color: var(--muted); margin-bottom: 1rem; }
.trust { color: var(--muted); font-size: 0.9375rem; margin-top: 1rem; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 44px;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  line-height: 1.25;
}
.btn-primary {
  background: var(--green);
  color: #fff;
}
.btn-primary:hover { background: var(--green-dark); color: #fff; }
.btn-secondary {
  background: var(--card);
  color: var(--green-dark);
  border-color: var(--green);
}
.btn-secondary:hover { background: var(--pill-bg); }
.btn-quiet {
  background: transparent;
  color: var(--muted);
  border-color: var(--line);
  font-weight: 600;
}
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.25rem 0;
}

/* ---------- cards / sections ---------- */
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 1.25rem 0;
}
.notice {
  background: var(--pill-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
}
.notice strong { display: block; margin-bottom: 0.25rem; }
.reminder {
  font-size: 0.9375rem;
  color: var(--muted);
  border-left: 4px solid var(--line);
  padding-left: 0.9rem;
  margin: 1rem 0;
}

ul.checklist, ol.tight { margin: 0 0 1rem; padding-left: 1.5rem; }
ul.checklist li, ol.tight li { margin-bottom: 0.6rem; }

/* ---------- builder ---------- */
.progress-wrap { margin: 0 0 1.5rem; }
.progress-label { font-weight: 700; margin-bottom: 0.4rem; }
.progress {
  height: 0.9rem;
  background: #e7ece5;
  border-radius: 999px;
  overflow: hidden;
}
.progress > span {
  display: block;
  height: 100%;
  background: var(--green);
  border-radius: 999px;
}
.question-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
}
.field { margin-bottom: 1.25rem; }
.field label, .field legend, .legend {
  display: block;
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}
fieldset { border: 0; margin: 0 0 1.25rem; padding: 0; }
.help { color: var(--muted); font-size: 0.9375rem; margin: 0.25rem 0 0.75rem; }

input[type="text"], textarea {
  width: 100%;
  font-size: 1rem;
  line-height: 1.5;
  padding: 0.75rem;
  border: 2px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--text);
  min-height: 44px;
}
textarea { min-height: 6.5rem; resize: vertical; }
input[type="text"]:focus, textarea:focus {
  border-color: var(--focus);
  outline: 3px solid var(--focus);
  outline-offset: 1px;
}

.radio-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 2px solid var(--line);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  margin-bottom: 0.6rem;
  cursor: pointer;
  min-height: 44px;
  background: #fff;
}
.radio-card:hover { border-color: var(--green); }
.radio-card input {
  width: 1.4rem;
  height: 1.4rem;
  flex: 0 0 auto;
  accent-color: var(--green);
}
.radio-card span { font-weight: 600; }

.error-summary {
  border: 3px solid #b3261e;
  border-radius: var(--radius);
  background: #fdecea;
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
}
.error-summary h2 { font-size: 1.125rem; margin: 0 0 0.5rem; color: #b3261e; }
.field-error { color: #b3261e; font-weight: 700; margin: 0.4rem 0; }
.input-invalid { border-color: #b3261e !important; }

.builder-nav { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
.builder-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
.linklike {
  background: none;
  border: 0;
  padding: 0.5rem 0.25rem;
  min-height: 44px;
  color: var(--green-dark);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}

.status-msg {
  background: var(--pill-bg);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  margin: 1rem 0;
  font-weight: 600;
}

.review-list { list-style: none; margin: 0 0 1.5rem; padding: 0; }
.review-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
}
.review-list .rl-label { font-weight: 700; }
.review-list .rl-value { color: var(--muted); text-align: right; }
.review-list .rl-edit { flex: 0 0 auto; }

.checkbox-row {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.9rem;
  cursor: pointer;
  min-height: 44px;
}
.checkbox-row input {
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0.15rem;
  flex: 0 0 auto;
  accent-color: var(--green);
}

/* live region (visually hidden) */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  clip: rect(0 0 0 0); clip-path: inset(50%);
  overflow: hidden; white-space: nowrap;
}

/* ---------- results ---------- */
.result-section {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 1.5rem 0;
}
.post {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.25rem;
  margin: 1rem 0;
  background: #fff;
}
.post h3 { margin-top: 0; }
.post p { white-space: pre-line; }

/* copy fallback textarea */
.copy-fallback { margin-top: 0.75rem; }
.copy-fallback textarea { min-height: 8rem; }

/* handoffs */
.handoff {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 1.5rem 0;
}
pre.details-block {
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1rem;
  white-space: pre-wrap;
  word-break: break-word;
  font-size: 0.9375rem;
}

/* ---------- modal ---------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 30, 20, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  z-index: 200;
}
.modal {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.75rem;
  max-width: 28rem;
  width: 100%;
}
.modal h2 { margin-top: 0; }

/* ---------- footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--card);
  padding: 2rem 0;
  margin-top: 2rem;
}
.site-footer .brand { margin-bottom: 0.5rem; }
.footer-nav ul {
  list-style: none;
  margin: 1rem 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1rem;
}
.footer-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-weight: 600;
}
.fine { color: var(--muted); font-size: 0.9375rem; }

/* ---------- examples ---------- */
.example-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 1.5rem 0;
}
.example-card details { margin-top: 1rem; }
.example-flag {
  color: var(--muted);
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
}
.example-card summary {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.example-card summary::-webkit-details-marker { display: none; }
.example-card summary:hover { background: var(--green-dark); }
.example-package { margin-top: 1.5rem; border-top: 1px solid var(--line); padding-top: 1rem; }

/* ---------- responsive ---------- */
@media (max-width: 40rem) {   /* 640px: phones */
  .menu-btn { display: inline-flex; }
  .site-nav {
    display: none;
    width: 100%;
    flex-basis: 100%;
  }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; align-items: stretch; }
  .site-nav a { display: flex; }
  .header-inner { flex-wrap: wrap; }
  .btn, .btn-row .btn { width: 100%; }
  .builder-nav .btn { width: 100%; }
  h1 { font-size: 1.75rem; }
  main { padding-top: 1.5rem; }
  .question-card { padding: 1.25rem 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- homepage visual redesign ---------- */
.site-header .wrap,
.site-footer .wrap {
  max-width: 75rem;
}

@media (min-width: 64rem) {
  .site-header .header-inner {
    flex-wrap: nowrap;
  }
  .site-header .site-nav ul {
    flex-wrap: nowrap;
  }
}

body[data-page="home"] {
  background: #f7faf7;
}

body[data-page="home"] main {
  padding-top: 0;
}

.home-wrap {
  max-width: 75rem;
}

.hero-banner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(28rem, 1.05fr);
  gap: 2.75rem;
  align-items: center;
  margin-top: 1.5rem;
  padding: 3.25rem;
  border: 1px solid #dbe8dc;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(230, 243, 226, .95), transparent 33%),
    linear-gradient(135deg, #ffffff 0%, #f1f8f1 54%, #e8f3e6 100%);
  box-shadow: 0 24px 60px rgba(28, 74, 45, .10);
}

.hero-banner::after {
  content: "";
  position: absolute;
  width: 17rem;
  height: 17rem;
  border-radius: 50%;
  right: -6rem;
  bottom: -8rem;
  background: rgba(242, 196, 92, .25);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  font-size: clamp(2.75rem, 5vw, 4.7rem);
  line-height: .98;
  letter-spacing: -0.045em;
  margin: 0 0 1.2rem;
  color: #123c2a;
}

.hero-copy .subhead {
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.35;
  color: #274b3b;
  font-weight: 700;
  max-width: 34rem;
}

.hero-copy > p:not(.subhead):not(.trust) {
  max-width: 35rem;
  font-size: 1.08rem;
  color: #405649;
}

.hero-cta {
  gap: .75rem;
  padding-inline: 1.8rem 1.2rem;
  box-shadow: 0 12px 24px rgba(29, 107, 60, .20);
}

.hero-cta span {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
}

.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-visual-mobile {
  display: none;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 886 / 555;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid rgba(20, 83, 45, .18);
  box-shadow: 0 24px 50px rgba(20, 60, 40, .20);
}

.hero-badge {
  position: absolute;
  left: -1.25rem;
  bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .05rem;
  padding: .75rem 1rem;
  border-radius: 14px;
  background: rgba(255,255,255,.96);
  border: 1px solid #dbe8dc;
  box-shadow: 0 12px 26px rgba(23, 66, 42, .16);
  color: #17452f;
}

.hero-badge span {
  font-size: .82rem;
  color: var(--muted);
}

.benefit-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 1.5rem 0 3.5rem;
  padding: 1.25rem;
  background: #123c2a;
  color: #fff;
  border-radius: 20px;
  box-shadow: 0 16px 34px rgba(18, 60, 42, .14);
}

.benefit-item {
  display: flex;
  gap: .85rem;
  align-items: center;
  min-width: 0;
}

.benefit-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 50%;
  background: #dff1e4;
  color: #14532d;
  font-weight: 900;
  font-size: 1.05rem;
}

.benefit-item div {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.benefit-item strong {
  font-size: .98rem;
}

.benefit-item span:last-child {
  margin-top: .2rem;
  font-size: .84rem;
  color: rgba(255,255,255,.75);
}

.home-section {
  margin: 4rem 0;
}

.section-intro {
  max-width: 44rem;
  margin-bottom: 1.75rem;
}

.section-intro h2,
.reassurance-section h2,
.action-card h2,
.final-cta h2 {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: #143c2c;
  margin-top: 0;
}

.section-intro > p {
  font-size: 1.06rem;
  color: var(--muted);
}

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

.package-card {
  margin: 0;
  padding: 1.35rem;
  min-height: 12rem;
  background: #fff;
  border: 1px solid #dbe5da;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(31, 66, 43, .06);
}

.package-card:nth-child(2n) {
  background: #f0f7ef;
}

.package-card h3 {
  font-size: 1.05rem;
  color: #163f2e;
  margin: .9rem 0 .55rem;
}

.package-card p {
  font-size: .93rem;
  color: var(--muted);
  margin: 0;
}

.package-icon {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  background: #e2f1e6;
  color: #17623a;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .04em;
}

.steps-section {
  padding: 2.5rem;
  border-radius: 24px;
  background: linear-gradient(135deg, #eef6ef, #f8fbf6);
  border: 1px solid #dbe7dc;
}

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

.step-card {
  position: relative;
  margin: 0;
  padding: 1.5rem;
  background: #fff;
  border-radius: 18px;
  border: 1px solid #dbe5da;
}

.step-card > span {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: #f4c35f;
  color: #3e310d;
  font-weight: 900;
  margin-bottom: .85rem;
}

.step-card h3 {
  margin-top: 0;
  color: #173f2e;
}

.step-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.reassurance-section {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 1.5rem;
  align-items: stretch;
}

.reassurance-section > div:first-child {
  padding: 2.25rem;
  border-radius: 22px;
  background: #163f2e;
  color: #fff;
}

.reassurance-section > div:first-child h2,
.reassurance-section > div:first-child .eyebrow {
  color: #fff;
}

.reassurance-section > div:first-child p {
  color: rgba(255,255,255,.82);
}

.promise-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.25rem;
  border-radius: 22px;
  background: #fff5d9;
  border: 1px solid #eddcab;
  color: #4f421f;
}

.promise-card strong {
  font-size: 1.35rem;
  color: #3f351a;
  margin-bottom: .75rem;
}

.promise-card p {
  margin: 0;
}

.action-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.action-card {
  margin: 0;
  padding: 2.25rem;
  border-radius: 22px;
  border: 1px solid #dce6dc;
  background: #fff;
  box-shadow: 0 12px 30px rgba(29, 66, 43, .06);
}

.action-card.handoff {
  background: linear-gradient(145deg, #eef7ef, #ffffff);
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin: 4rem 0 1rem;
  padding: 2.5rem;
  border-radius: 24px;
  background: linear-gradient(110deg, #153f2e, #1f7545);
  color: #fff;
  box-shadow: 0 18px 40px rgba(20, 65, 43, .18);
}

.final-cta h2,
.final-cta .eyebrow {
  color: #fff;
}

.final-cta p {
  margin-bottom: 0;
  color: rgba(255,255,255,.82);
}

.final-cta .btn-primary {
  flex: 0 0 auto;
  background: #fff;
  color: #14532d;
}

.final-cta .btn-primary:hover {
  background: #eef7ef;
  color: #0d4423;
}

@media (max-width: 68rem) {
  .hero-banner {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    max-width: 48rem;
  }
  .benefit-strip,
  .package-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


@media (max-width: 58rem) and (min-width: 40.01rem) {
  .site-header .menu-btn { display: inline-flex; }
  .site-header .site-nav {
    display: none;
    width: 100%;
    flex-basis: 100%;
  }
  .site-header .site-nav.open { display: block; }
  .site-header .site-nav ul {
    flex-direction: column;
    align-items: stretch;
  }
  .site-header .site-nav a { display: flex; }
  .site-header .header-inner { flex-wrap: wrap; }
}

@media (max-width: 48rem) {
  .home-wrap {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .hero-banner {
    margin-top: 1rem;
    padding: 1.5rem;
    gap: 1.5rem;
    border-radius: 22px;
  }
  .hero-copy h1 {
    font-size: clamp(2.45rem, 12vw, 3.4rem);
  }
  .hero-visual-desktop {
    display: none;
  }
  .hero-visual-mobile {
    display: block;
    margin: .35rem 0 .15rem;
  }
  .hero-visual img {
    border-radius: 16px;
  }
  .hero-badge {
    left: .75rem;
    bottom: .75rem;
  }
  .benefit-strip {
    grid-template-columns: 1fr;
    margin-bottom: 2.5rem;
  }
  .package-grid,
  .steps-grid,
  .reassurance-section,
  .action-grid {
    grid-template-columns: 1fr;
  }
  .steps-section,
  .reassurance-section > div:first-child,
  .promise-card,
  .action-card,
  .final-cta {
    padding: 1.5rem;
  }
  .package-card {
    min-height: auto;
  }
  .final-cta {
    align-items: stretch;
    flex-direction: column;
  }
  .final-cta .btn {
    width: 100%;
  }
}

@media (max-width: 22rem) {
  .hero-banner {
    padding: 1.15rem;
  }
  .hero-copy h1 {
    font-size: 2.25rem;
  }
  .benefit-strip,
  .steps-section,
  .action-card,
  .reassurance-section > div:first-child,
  .promise-card,
  .final-cta {
    border-radius: 18px;
  }
}

@media (max-width: 22rem) {
  .site-header .menu-btn { margin-left: auto; }
}

/* ---------- examples page visual redesign ---------- */
body[data-page="examples"] {
  background: #f7faf7;
}

body[data-page="examples"] main {
  padding-top: 0;
}

body[data-page="examples"] .examples-page > .wrap,
body[data-page="examples"] .examples-hero .wrap {
  max-width: 72rem;
}

.examples-hero {
  position: relative;
  overflow: hidden;
  padding: 3.25rem 0 2.5rem;
  background:
    radial-gradient(circle at 82% 18%, rgba(188, 225, 198, .72), transparent 26rem),
    linear-gradient(135deg, #eef8f0 0%, #f8fbf7 52%, #edf7ef 100%);
  border-bottom: 1px solid #dce8dc;
}

.examples-hero::before {
  content: "";
  position: absolute;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  left: -9rem;
  bottom: -12rem;
  background: rgba(29, 107, 60, .07);
}

.examples-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, .85fr);
  gap: 3rem;
  align-items: center;
}

.examples-hero-copy h1 {
  max-width: 13ch;
  font-size: clamp(2.45rem, 5vw, 4.4rem);
  letter-spacing: -.045em;
  line-height: 1.02;
  margin-bottom: 1rem;
}

.examples-lead {
  max-width: 42rem;
  font-size: 1.18rem;
  color: var(--muted);
}

.examples-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1.35rem;
}

.examples-proof-row span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: .45rem .8rem;
  border: 1px solid #c9ddcd;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  color: #2f4a34;
  font-weight: 700;
  font-size: .9rem;
}

.examples-hero-art {
  position: relative;
  min-height: 19rem;
}

.sample-sheet {
  position: absolute;
  width: min(17rem, 72%);
  height: 12.25rem;
  padding: 1.4rem;
  border: 1px solid #d6e5d8;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(24, 64, 35, .13);
}

.sheet-back { right: 3.5rem; top: .7rem; transform: rotate(8deg); opacity: .72; }
.sheet-mid { right: 1.7rem; top: 3.1rem; transform: rotate(2deg); }
.sheet-front { right: 5.5rem; top: 5.7rem; transform: rotate(-6deg); }

.sheet-line {
  display: block;
  width: 68%;
  height: .65rem;
  margin: .9rem 0;
  border-radius: 999px;
  background: #dce8dc;
}
.sheet-line.wide { width: 88%; background: #bcd9c2; }
.sheet-line.short { width: 47%; }
.sheet-badge,
.sheet-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 10px;
  background: #e2f1e6;
  color: #14532d;
  font-size: .72rem;
  font-weight: 900;
}
.sheet-check { border-radius: 50%; font-size: 1rem; }

.examples-content {
  padding-top: 2rem;
  padding-bottom: 1rem;
}

.examples-notice {
  max-width: 60rem;
  margin: 0 auto 2rem;
  background: #fff;
  border-left: 5px solid var(--green);
  box-shadow: 0 10px 30px rgba(31, 69, 40, .06);
}

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

body[data-page="examples"] .example-card {
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid #d4e2d5;
  border-radius: 22px;
  box-shadow: 0 14px 36px rgba(28, 66, 37, .07);
}

body[data-page="examples"] .example-card[open] {
  grid-column: 1 / -1;
  box-shadow: 0 18px 52px rgba(28, 66, 37, .11);
}

body[data-page="examples"] .example-card details {
  margin-top: 0;
}

body[data-page="examples"] .example-card-summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  min-height: 100%;
  padding: 1.55rem;
  border-radius: 0;
  background: #fff;
  color: var(--text);
  list-style: none;
  cursor: pointer;
}

body[data-page="examples"] .example-card-summary:hover {
  background: #fbfdfb;
}

body[data-page="examples"] .example-card[open] .example-card-summary {
  border-bottom: 1px solid #dce8dc;
  background: #f4faf5;
}



/* Creator / contact card */
.creator-card {
  display: grid;
  grid-template-columns: minmax(13rem, 20rem) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
  margin: 2rem 0;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(135deg, #f5faf5, #eef6ef);
  box-shadow: 0 12px 30px rgba(31, 69, 40, .06);
}
.creator-photo-wrap {
  overflow: hidden;
  border-radius: 18px;
  background: #dce9de;
  box-shadow: 0 10px 26px rgba(31, 69, 40, .12);
}
.creator-photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 8 / 9;
  object-fit: cover;
}
.creator-copy h2 { margin-top: .15rem; }
.creator-contact {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem .85rem;
  margin: 1rem 0 1.15rem;
}
.creator-contact a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: .55rem .8rem;
  border: 1px solid #c9ddcd;
  border-radius: 999px;
  background: #fff;
  color: var(--green-dark);
  font-weight: 750;
  text-decoration: none;
}
.creator-contact a:hover { border-color: var(--green); }
.creator-actions { margin-top: .25rem; }
.creator-note { margin: 1rem 0 0; }

.examples-cta-actions {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: .65rem;
  min-width: 15.5rem;
}
.examples-final-cta .examples-cta-actions .btn-secondary {
  background: transparent;
  border: 2px solid rgba(255,255,255,.65);
  color: #fff;
}
.examples-final-cta .examples-cta-actions .btn-secondary:hover {
  background: rgba(255,255,255,.1);
  color: #fff;
}

@media (max-width: 54rem) {
  .creator-card { grid-template-columns: minmax(10rem, 15rem) minmax(0, 1fr); }
}
@media (max-width: 40rem) {
  .creator-card { grid-template-columns: 1fr; gap: 1.25rem; padding: 1.15rem; }
  .creator-photo-wrap { max-width: 15rem; width: 100%; margin: 0 auto; }
  .creator-contact { flex-direction: column; }
  .creator-contact a { width: 100%; border-radius: 12px; overflow-wrap: anywhere; }
  .creator-actions { flex-direction: column; }
  .creator-actions .btn { width: 100%; }
  .examples-cta-actions { width: 100%; min-width: 0; }
  .examples-cta-actions .btn { width: 100%; }
}

.example-card-summary::-webkit-details-marker { display: none; }
.example-card-summary::marker { content: ""; }

.sample-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 17px;
  background: linear-gradient(145deg, #1d6b3c, #2f8b50);
  color: #fff;
  font-weight: 900;
  letter-spacing: -.04em;
  box-shadow: 0 10px 24px rgba(29, 107, 60, .18);
}

#bright .sample-mark {
  background: linear-gradient(145deg, #315d49, #64816f);
}

.example-card-copy {
  display: block;
  min-width: 0;
}

.sample-number {
  display: block;
  margin-bottom: .35rem;
  color: var(--green);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .065em;
  text-transform: uppercase;
}

.example-business-name {
  display: block;
  margin-bottom: .55rem;
  font-size: 1.45rem;
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: -.02em;
}

.example-description {
  display: block;
  color: var(--muted);
  font-weight: 500;
}

.example-preview-quote {
  display: block;
  margin-top: 1rem;
  padding-left: .85rem;
  border-left: 3px solid #c9ddcd;
  color: #385340;
  font-style: italic;
  font-weight: 600;
}

.example-open-pill {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 44px;
  padding: .68rem 1.05rem;
  margin-top: .35rem;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-weight: 800;
}

.example-card[open] .example-open-pill {
  background: #fff;
  color: var(--green-dark);
  border: 2px solid var(--green);
}

.example-card .when-open { display: none; }
.example-card[open] .when-open { display: inline; }
.example-card[open] .when-closed { display: none; }
.summary-arrow { margin-left: .55rem; transition: transform .18s ease; }
.example-card[open] .summary-arrow { transform: rotate(90deg); }

body[data-page="examples"] .example-package {
  margin-top: 0;
  padding: 1.25rem 1.5rem 1.75rem;
  border-top: 0;
  background: #f8fbf8;
}

.sample-package-cover {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(17rem, .85fr);
  gap: 1.5rem;
  align-items: start;
  padding: 1.65rem;
  margin-bottom: 1rem;
  border-radius: 18px;
  background: linear-gradient(135deg, #174f2e, #1d6b3c);
  color: #fff;
}

.package-kicker {
  display: block;
  margin-bottom: .45rem;
  color: #cbe8d1;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.package-business-name {
  margin-bottom: .45rem;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: 1.05;
}

.package-intro {
  margin-bottom: 0;
  color: rgba(255,255,255,.85);
  max-width: 42rem;
}

.package-facts {
  display: grid;
  gap: .6rem;
}

.package-facts span {
  display: block;
  padding: .72rem .85rem;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  background: rgba(255,255,255,.09);
  color: rgba(255,255,255,.9);
  font-size: .9rem;
}

.package-facts strong {
  display: block;
  margin-bottom: .15rem;
  color: #fff;
}

.package-section-index {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 1rem 0 1.25rem;
}

.package-section-index span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: .35rem .7rem;
  border: 1px solid #d2e2d4;
  border-radius: 999px;
  background: #fff;
  color: #48604d;
  font-size: .82rem;
  font-weight: 700;
}

body[data-page="examples"] .result-section {
  margin: 1rem 0;
  border-radius: 18px;
  border-color: #dce6dc;
  box-shadow: 0 7px 22px rgba(31, 69, 40, .045);
}

body[data-page="examples"] .result-section > h3 {
  margin-top: 0;
  font-size: 1.2rem;
  color: #193f26;
}

body[data-page="examples"] .result-section .btn-secondary {
  padding-left: 1rem;
  padding-right: 1rem;
}

.sample-end {
  display: flex;
  justify-content: center;
  padding: 1.25rem 0 .25rem;
}

.examples-final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin: 2rem 0 1rem;
  padding: 2rem;
  border-radius: 22px;
  background: #173f28;
  color: #fff;
}

.examples-final-cta h2 {
  margin-top: 0;
  font-size: clamp(1.75rem, 4vw, 2.4rem);
}
.examples-final-cta p { margin-bottom: 0; color: rgba(255,255,255,.82); max-width: 44rem; }
.examples-final-cta .eyebrow { color: #bfe3c7; }
.examples-final-cta .btn-primary { flex: 0 0 auto; background: #fff; color: #14532d; }
.examples-final-cta .btn-primary:hover { background: #eef7ef; color: #0d4423; }

@media (max-width: 54rem) {
  .examples-hero-grid { grid-template-columns: 1fr; gap: 1rem; }
  .examples-hero-art { min-height: 14rem; max-width: 32rem; width: 100%; margin: 0 auto; }
  .sample-sheet { height: 10rem; }
  .sheet-back { right: 3.5rem; top: 0; }
  .sheet-mid { right: 1.5rem; top: 1.9rem; }
  .sheet-front { right: 5.3rem; top: 3.7rem; }
  .examples-grid { grid-template-columns: 1fr; }
  body[data-page="examples"] .example-card[open] { grid-column: auto; }
  .sample-package-cover { grid-template-columns: 1fr; }
  .examples-final-cta { align-items: stretch; flex-direction: column; }
  .examples-final-cta .btn { width: 100%; }
}

@media (max-width: 40rem) {
  .examples-hero { padding: 2.1rem 0 1.65rem; }
  .examples-hero-copy h1 { font-size: clamp(2.35rem, 12vw, 3.2rem); }
  .examples-lead { font-size: 1.05rem; }
  .examples-hero-art { min-height: 11.2rem; }
  .sample-sheet { width: 69%; height: 8.2rem; padding: 1rem; border-radius: 16px; }
  .sheet-back { right: 2.7rem; }
  .sheet-mid { right: 1rem; top: 1.4rem; }
  .sheet-front { right: 4rem; top: 2.8rem; }
  .sheet-line { height: .5rem; margin: .65rem 0; }
  .sheet-badge, .sheet-check { width: 1.8rem; height: 1.8rem; }
  .examples-content { padding-top: 1.25rem; }
  body[data-page="examples"] .example-card-summary { padding: 1.25rem; }
  .sample-mark { width: 3rem; height: 3rem; border-radius: 14px; }
  .example-business-name { font-size: 1.3rem; }
  body[data-page="examples"] .example-package { padding: .9rem; }
  .sample-package-cover { padding: 1.25rem; border-radius: 16px; }
  body[data-page="examples"] .result-section { padding: 1.15rem; }
  .examples-final-cta { padding: 1.5rem; }
}

@media (max-width: 22rem) {
  .examples-hero-art { min-height: 9.8rem; }
  .sample-sheet { width: 72%; height: 7.4rem; }
  .sheet-front { right: 3rem; top: 2.4rem; }
  .example-card-summary { grid-template-columns: 1fr !important; }
  .sample-mark { width: 2.75rem; height: 2.75rem; }
}
