/* ========================================================================
   Flourish Hypnotherapy Cheshire — Stylesheet
   Modern, self-contained. Green brand palette. No external dependencies.
   ======================================================================== */

/* --- 1. Tokens ---------------------------------------------------------- */
:root {
  --green-900: #143524;
  --green-700: #1F5E3A;
  --green-600: #2E7D4F;
  --green-500: #3FA468;
  --green-400: #6FBE8E;
  --green-300: #A8D5BA;
  --sage-200: #D9E8DD;
  --sage-100: #ECF3EE;
  --cream: #FAF7F2;
  --cream-2: #F4EFE6;
  --ink: #1F2A24;
  --muted: #6B7A72;
  --line: #E2E7E3;
  --white: #ffffff;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(20, 53, 36, 0.05), 0 2px 4px rgba(20, 53, 36, 0.04);
  --shadow:    0 4px 12px rgba(20, 53, 36, 0.06), 0 8px 24px rgba(20, 53, 36, 0.05);
  --shadow-lg: 0 12px 32px rgba(20, 53, 36, 0.10), 0 24px 64px rgba(20, 53, 36, 0.08);

  --container-max: 1200px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);

  --font-sans: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

  --ease: cubic-bezier(.2, .8, .2, 1);
}

/* --- 2. Reset + base ---------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--green-700); text-decoration: none; transition: color 160ms var(--ease); }
a:hover { color: var(--green-500); }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4, h5, h6 {
  font-family: inherit;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 .5em;
  color: var(--green-900);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.625rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.625rem); }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
ul, ol { padding-left: 1.25em; margin: 0 0 1em; }
li { margin-bottom: .35em; }

::selection { background: var(--green-300); color: var(--green-900); }

/* --- 3. Layout primitives ---------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.stack > * + * { margin-top: 1rem; }
.stack-lg > * + * { margin-top: 1.75rem; }
.cluster { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--green-900);
  color: #fff;
  padding: 10px 16px;
  z-index: 999;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

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

/* --- 4. Header + nav --------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.875rem 0;
}
.site-header__logo img {
  display: block;
  width: clamp(140px, 18vw, 200px);
  height: auto;
}

.site-nav {
  display: none;
}
.site-nav__list {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-nav__list a {
  display: inline-block;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
}
.site-nav__list a:hover { color: var(--green-700); }
.site-nav__list a[aria-current="page"] {
  color: var(--green-700);
}
.site-nav__list a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--green-500);
  border-radius: 2px;
}

.site-header__cta { margin-left: 0.5rem; }

/* Burger */
.site-header__toggle {
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green-900);
  transition: background 160ms var(--ease);
}
.site-header__toggle:hover { background: var(--sage-100); }
.burger {
  position: relative;
  width: 22px;
  height: 14px;
  display: inline-block;
}
.burger > span {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 200ms var(--ease), opacity 200ms var(--ease), top 200ms var(--ease);
}
.burger > span:nth-child(1) { top: 0; }
.burger > span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.burger > span:nth-child(3) { top: 100%; transform: translateY(-100%); }
.site-header__toggle[aria-expanded="true"] .burger > span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.site-header__toggle[aria-expanded="true"] .burger > span:nth-child(2) { opacity: 0; }
.site-header__toggle[aria-expanded="true"] .burger > span:nth-child(3) { top: 50%; transform: translateY(-50%) rotate(-45deg); }

/* Mobile nav */
@media (max-width: 960px) {
  .site-nav {
    position: fixed;
    inset: 64px 0 0 0;
    background: var(--cream);
    padding: 2rem var(--gutter);
    display: block;
    transform: translateX(100%);
    transition: transform 240ms var(--ease);
    overflow-y: auto;
    border-top: 1px solid var(--line);
  }
  .site-nav.is-open { transform: translateX(0); }
  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .site-nav__list li {
    border-bottom: 1px solid var(--line);
    margin: 0;
  }
  .site-nav__list a {
    display: block;
    padding: 1rem 0;
    font-size: 1.1rem;
  }
  .site-header__cta {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 1.5rem;
  }
}
@media (min-width: 961px) {
  .site-nav { display: block; }
  .site-header__toggle { display: none; }
}

/* Cart badge (in header, not a floating widget) */
.cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--green-900);
  margin-left: 0.5rem;
  transition: background 160ms var(--ease);
}
.cart-link:hover { background: var(--sage-100); }
.cart-link svg { width: 20px; height: 20px; fill: currentColor; }
.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--green-500);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* --- 5. Hero ----------------------------------------------------------- */
.hero {
  position: relative;
  padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(3rem, 7vw, 5rem);
  overflow: hidden;
  isolation: isolate;
}
.hero--green {
  background: linear-gradient(135deg, var(--green-700) 0%, var(--green-500) 100%);
  color: #fff;
}
.hero--green h1, .hero--green h2 { color: #fff; }
.hero__watermark {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  pointer-events: none;
  z-index: -1;
}
.hero__inner {
  max-width: 760px;
}
.hero p.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  opacity: 0.92;
  max-width: 56ch;
}
.hero .eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.18);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.25rem;
}
.hero--image {
  background-size: cover;
  background-position: center;
  color: #fff;
}
.hero--image::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,53,36,0.55), rgba(20,53,36,0.7));
  z-index: -1;
}
.hero--image h1, .hero--image h2 { color: #fff; }
.hero--image p.lead { opacity: 0.95; }

/* --- 6. Sections ------------------------------------------------------- */
.section {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}
.section--cream { background: var(--cream); }
.section--sage  { background: var(--sage-100); }
.section--green {
  background: linear-gradient(135deg, var(--green-700), var(--green-600));
  color: #fff;
}
.section--green h2, .section--green h3 { color: #fff; }
.section--green p { color: rgba(255,255,255,0.92); }
.section__head {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.section__head--left { text-align: left; margin-left: 0; }
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green-600);
  margin-bottom: 0.75rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
@media (min-width: 800px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 720px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

/* --- 7. Cards ---------------------------------------------------------- */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--sage-100);
  color: var(--green-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.card__icon svg { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 2; }
.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--muted); margin: 0; }

.feature {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* --- 8. Buttons -------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: transform 160ms var(--ease), background 160ms var(--ease), color 160ms var(--ease), border-color 160ms var(--ease);
  cursor: pointer;
  line-height: 1.2;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: var(--green-600);
  color: #fff;
  border-color: var(--green-600);
}
.btn--primary:hover {
  background: var(--green-700);
  border-color: var(--green-700);
  color: #fff;
}
.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.btn--ghost:hover {
  background: #fff;
  color: var(--green-700);
  border-color: #fff;
}
.btn--outline {
  background: transparent;
  color: var(--green-700);
  border-color: var(--green-500);
}
.btn--outline:hover {
  background: var(--green-600);
  border-color: var(--green-600);
  color: #fff;
}
.btn--lg {
  padding: 1.05rem 1.85rem;
  font-size: 1.05rem;
}
.btn--block { display: flex; width: 100%; }

/* --- 9. Contact -------------------------------------------------------- */
.contact-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-block {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}
.contact-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.contact-block__label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--green-600);
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.contact-block__value {
  font-size: 1.05rem;
  color: var(--ink);
  font-weight: 500;
}
.contact-block__value a {
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding-bottom: 1px;
}
.contact-block__value a:hover {
  color: var(--green-700);
  border-color: var(--green-500);
}

/* --- 10. Testimonials -------------------------------------------------- */
.testimonial {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  position: relative;
  margin-top: 2rem;
}
.testimonial::before {
  content: "\201C";
  position: absolute;
  top: -1.25rem;
  left: 1.5rem;
  font-size: 5rem;
  line-height: 1;
  color: var(--green-500);
  font-family: Georgia, 'Times New Roman', serif;
}
.testimonial blockquote {
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  font-style: italic;
}
.testimonial cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  color: var(--green-700);
}
.testimonial cite small {
  display: block;
  font-weight: 400;
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 0.15rem;
}

.pull-quote {
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  line-height: 1.4;
  color: var(--green-900);
  border-left: 4px solid var(--green-500);
  padding: 0.25rem 0 0.25rem 1.5rem;
  margin: 1.5rem 0;
  font-weight: 500;
}

/* --- 11. Credentials strip -------------------------------------------- */
.credentials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(1.5rem, 5vw, 3.5rem);
  padding: 1.5rem 0;
}
.credentials img {
  max-height: 80px;
  width: auto;
  filter: grayscale(15%);
  opacity: 0.9;
  transition: filter 200ms var(--ease), opacity 200ms var(--ease);
}
.credentials img:hover {
  filter: none;
  opacity: 1;
}
.payment-logos img {
  filter: none;
  opacity: 1;
  max-height: 50px;
}

/* --- 12. Footer -------------------------------------------------------- */
.site-footer {
  background: var(--green-900);
  color: rgba(255,255,255,0.85);
  padding: clamp(3rem, 6vw, 4.5rem) 0 1.5rem;
  margin-top: 0;
}
.site-footer a { color: #fff; }
.site-footer a:hover { color: var(--green-300); }
.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 800px) {
  .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
.site-footer__brand img {
  width: 200px;
  margin-bottom: 1rem;
  background: #fff;
  padding: 8px 12px;
  border-radius: var(--radius);
}
.site-footer h4 {
  color: #fff;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 1rem;
}
.site-footer__nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.site-footer__contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.95rem;
}
.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

/* --- 13. FAQ (native <details>) --------------------------------------- */
.faq {
  max-width: 820px;
  margin: 0 auto;
}
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: box-shadow 200ms var(--ease);
}
.faq details[open] { box-shadow: var(--shadow-sm); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  font-weight: 600;
  color: var(--green-900);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.5rem;
  line-height: 1;
  color: var(--green-500);
  transition: transform 200ms var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > *:not(summary) {
  padding: 0 1.25rem 1.25rem;
  color: var(--muted);
}

/* --- 14. Cart badge styles (existing) ---------------------------------- */
.cart-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) var(--gutter);
}
.cart-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1em;
  text-align: center;
}
.cart-empty {
  text-align: center;
  padding: 3em 1em;
  color: var(--muted);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  margin-bottom: 2em;
}
.cart-items {
  list-style: none;
  padding: 0;
  margin: 0 0 2em;
}
.cart-item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}
.cart-item__name { font-weight: 500; }
.cart-item__qty { color: var(--muted); }
.cart-item__price { font-weight: 600; min-width: 80px; text-align: right; }
.cart-totals {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1rem 0;
  font-size: 1.15rem;
  font-weight: 600;
  border-top: 2px solid var(--ink);
  margin-top: 1rem;
}
.payment-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2em;
  justify-content: center;
}
.pay-button {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform 160ms var(--ease), box-shadow 160ms var(--ease);
  min-width: 200px;
  justify-content: center;
}
.pay-button:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.pay-button--stripe { background: #635bff; color: #fff; }
.pay-button--klarna { background: #ffa8cd; color: var(--ink); }
.payment-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 1.5em;
}
.payment-fields {
  max-width: 600px;
  margin: 2em auto 0;
  padding: 1.5em;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--sage-100);
}
.payment-fields label {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.25rem;
}
.payment-fields input {
  width: 100%;
  padding: 0.6rem 0.75rem;
  font-size: 1rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  margin-bottom: 1em;
  font-family: inherit;
  background: #fff;
}
.payment-fields input:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(63, 164, 104, 0.15);
}

/* --- 15. Misc utilities ----------------------------------------------- */
.text-center { text-align: center; }
.muted { color: var(--muted); }
.divider-leaf {
  display: block;
  width: 56px;
  height: 8px;
  margin: 0 auto 1.5rem;
  background: var(--green-500);
  border-radius: 4px;
  opacity: 0.7;
}

.image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--sage-100);
}
.image-frame img { width: 100%; height: 100%; object-fit: cover; }

.rounded-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}
.rounded-photo img { width: 100%; height: 100%; object-fit: cover; }

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step;
  display: grid;
  gap: 1rem;
}
.steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  align-items: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.steps li::before {
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-600);
  color: #fff;
  font-weight: 600;
}

.pricing-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
}
.pricing-card--featured {
  background: linear-gradient(180deg, #fff 0%, var(--sage-100) 100%);
  border-color: var(--green-300);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-600);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
}
.pricing-card__price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--green-900);
  line-height: 1;
}
.pricing-card__price small {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  display: block;
  margin-top: 0.35rem;
}
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 1.25rem;
  text-align: left;
  color: var(--muted);
  font-size: 0.95rem;
}
.pricing-card ul li {
  padding: 0.35rem 0 0.35rem 1.5rem;
  position: relative;
  margin: 0;
}
.pricing-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-500);
  font-weight: 700;
}

/* QR */
.qr-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  max-width: 360px;
  margin: 1.5rem auto 0;
}
.qr-card img { width: 80px; height: 80px; }
.qr-card__label { font-size: 0.85rem; color: var(--muted); }

/* Section backgrounds by image */
.bg-image {
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
}
.bg-image::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,53,36,0.6), rgba(20,53,36,0.75));
  z-index: 0;
}
.bg-image > * { position: relative; z-index: 1; }
.bg-image h2, .bg-image h3, .bg-image p { color: #fff; }
