/* ---------------------------------------------------------
   P'Wayz Happy Binz
   Brand palette and motifs taken from the trailer wrap:
   deep purple, lime green, water bubbles.
   --------------------------------------------------------- */

:root {
  --purple: #4d1979;
  --purple-mid: #3d1361;
  --purple-deep: #260c3e;
  --purple-bright: #6a24a5;
  --purple-50: #f5f1fa;
  --lime: #8bc832;
  --lime-bright: #a5e034;
  --lime-soft: #cdeb8f;
  --ink: #16161d;
  --slate: #4b4b59;          /* darkened from #565665 for easier reading on white */
  --on-dark: rgba(255, 255, 255, .92);
  --on-dark-soft: rgba(255, 255, 255, .78);
  --line: #e4e2e9;
  --white: #fff;
  --bg-alt: #f7f7fa;

  --display: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  --body: "Inter", "Segoe UI", Arial, sans-serif;

  --shadow-sm: 0 1px 2px rgba(22, 22, 29, .06), 0 4px 12px rgba(22, 22, 29, .05);
  --shadow-md: 0 12px 32px rgba(22, 22, 29, .10);
  --shadow-lg: 0 24px 60px rgba(28, 12, 46, .28);

  --radius: 12px;
  --radius-lg: 16px;
  --container: 1160px;
  --header-h: 92px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--slate);
  font-family: var(--body);
  font-size: 16.5px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body, button, input, select, textarea { font-family: var(--body); }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3, h4, p { margin-top: 0; }

h1, h2, h3, h4 {
  color: var(--ink);
  font-family: var(--display);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.028em;
}

h1 { margin-bottom: 18px; font-size: clamp(2.3rem, 4.4vw, 3.5rem); }
h2 { margin-bottom: 16px; font-size: clamp(1.85rem, 3.1vw, 2.6rem); }
h3 { margin-bottom: 10px; font-size: 1.24rem; font-weight: 700; }
p { margin-bottom: 16px; }
p:last-child { margin-bottom: 0; }

/* Lime highlight for a key word inside a heading */
.hl { color: var(--lime-bright); }
.hl--ink { color: var(--purple); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding-block: clamp(48px, 5.4vw, 76px); }
.section--alt { background: var(--bg-alt); }
.section--dark { position: relative; overflow: hidden; background: var(--purple); color: var(--on-dark); }
.section--dark h2, .section--dark h3 { color: #fff; }

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

.skip-link {
  position: fixed; z-index: 999; top: 8px; left: 8px; padding: 10px 16px;
  background: var(--purple); border-radius: 6px; color: #fff;
  transform: translateY(-160%);
}
.skip-link:focus { transform: none; }

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid var(--lime-bright);
  outline-offset: 2px;
}

/* --- Bubble motif, borrowed from the trailer wrap ---------------------- */

.bubbles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.bubbles i {
  position: absolute; display: block; border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .16);
}
.bubbles i:nth-child(1) { width: 130px; height: 130px; top: -34px; right: 8%; }
.bubbles i:nth-child(2) { width: 62px;  height: 62px;  top: 24%; right: 3%; border-color: rgba(165, 224, 52, .34); }
.bubbles i:nth-child(3) { width: 26px;  height: 26px;  top: 14%; right: 20%; background: rgba(255, 255, 255, .10); border: 0; }
.bubbles i:nth-child(4) { width: 90px;  height: 90px;  bottom: -28px; left: 6%; }
.bubbles i:nth-child(5) { width: 38px;  height: 38px;  bottom: 20%; left: 24%; border-color: rgba(165, 224, 52, .28); }
.bubbles i:nth-child(6) { width: 18px;  height: 18px;  top: 30%; left: 12%; background: rgba(255, 255, 255, .12); border: 0; }
.container, .section--dark > .container, .hero__grid { position: relative; z-index: 1; }

/* --- Shared bits ------------------------------------------------------- */

.eyebrow {
  margin-bottom: 12px;
  color: var(--purple);
  font-family: var(--display);
  font-size: .95rem;
  font-weight: 700;
}
.section--dark .eyebrow, .hero .eyebrow { color: var(--lime-bright); }

.section-head { max-width: 680px; margin-bottom: clamp(26px, 3vw, 38px); }
.section-head__lead { font-size: 1.04rem; }

.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 13px 26px;
  background: var(--purple); border: 2px solid var(--purple); border-radius: 8px;
  color: #fff;
  font-family: var(--display); font-size: .97rem; font-weight: 800; line-height: 1.2;
  text-decoration: none; cursor: pointer;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}
.button:hover { background: var(--purple-mid); border-color: var(--purple-mid); transform: translateY(-1px); }
.button--sm { min-height: 42px; padding: 9px 18px; font-size: .9rem; }
.button--full { width: 100%; }
.button--lime { background: var(--lime); border-color: var(--lime); color: var(--ink); }
.button--lime:hover { background: var(--lime-bright); border-color: var(--lime-bright); color: var(--ink); }
.button--ghost { background: transparent; border-color: rgba(255, 255, 255, .55); color: #fff; }
.button--ghost:hover { background: rgba(255, 255, 255, .12); border-color: #fff; }
.button--outline { background: transparent; border-color: var(--line); color: var(--purple); }
.button--outline:hover { background: var(--purple-50); border-color: var(--purple); }

.textlink {
  display: inline-block;
  color: var(--purple); font-weight: 700; text-decoration: none;
  border-bottom: 2px solid var(--lime); padding-bottom: 2px;
}
.section--dark .textlink { color: var(--lime-bright); border-color: var(--lime); }

.ticklist { padding: 0; margin: 0 0 20px; list-style: none; }
.ticklist li {
  position: relative; padding: 9px 0 9px 32px;
  border-bottom: 1px solid var(--line);
  color: #3f3f4c;
}
.ticklist li::before {
  position: absolute; left: 0; top: 9px;
  content: "\2713"; color: var(--lime); font-weight: 800; font-size: 1.05rem;
}
.section--dark .ticklist li { color: var(--on-dark); border-color: rgba(255, 255, 255, .16); }
.section--dark .ticklist li::before { color: var(--lime-bright); }

/* --- Top bar + header -------------------------------------------------- */

.topbar { background: var(--purple-deep); color: rgba(255, 255, 255, .88); font-size: .85rem; }
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; min-height: 40px;
}
.topbar__note { color: var(--lime-soft); font-weight: 600; }
.topbar__links { display: flex; gap: 22px; }
.topbar a { text-decoration: none; }
.topbar a:hover { color: #fff; }
.topbar strong { color: #fff; }

/* The logo wordmark is white, so the header has to stay dark for it to read */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: var(--purple);
  border-bottom: 3px solid var(--lime);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; min-height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand-logo { width: auto; height: 76px; }
.brand-logo--footer { height: 76px; }

.site-nav { display: flex; align-items: center; gap: clamp(14px, 1.8vw, 24px); }
.site-nav > a:not(.button) {
  position: relative; color: rgba(255, 255, 255, .88); font-size: .93rem; font-weight: 500; text-decoration: none;
}
.site-nav > a:not(.button):hover { color: #fff; }
.site-nav > a:not(.button)::after {
  position: absolute; right: 0; bottom: -6px; left: 0; height: 2px;
  background: var(--lime-bright); content: ""; transform: scaleX(0);
  transition: transform .18s ease;
}
.site-nav > a:not(.button):hover::after { transform: scaleX(1); }

.nav-toggle {
  display: none; width: 44px; height: 40px; padding: 9px;
  background: transparent; border: 1px solid rgba(255, 255, 255, .4); border-radius: 8px; cursor: pointer;
}
.nav-toggle > span:not(.sr-only) { display: block; height: 2px; margin: 4px 0; background: #fff; }

/* --- Hero -------------------------------------------------------------- */

.hero {
  position: relative; overflow: hidden;
  /* Less bottom padding than top: the form card already carries the weight down there */
  padding: clamp(38px, 4.2vw, 56px) 0 clamp(28px, 3vw, 38px);
  background:
    radial-gradient(1100px 520px at 8% -10%, rgba(106, 36, 165, .75), transparent 62%),
    linear-gradient(135deg, var(--purple-deep) 0%, var(--purple) 58%, var(--purple-bright) 100%);
}
.hero__grid {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 5vw, 64px); align-items: center;
}
.hero__copy { color: var(--on-dark); }
.hero__copy h1 { color: #fff; }
.hero__lead { max-width: 560px; font-size: 1.08rem; }

.hero-offer {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px;
  width: min(100%, 590px); padding: 13px 16px; margin-bottom: 22px;
  background: var(--lime); border: 2px solid var(--lime-bright); border-radius: 12px;
  color: var(--ink); text-decoration: none; box-shadow: 0 10px 26px rgba(10, 5, 16, .2);
}
.hero-offer:hover { background: var(--lime-bright); transform: translateY(-1px); }
.hero-offer__label { font-size: .75rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.hero-offer strong { color: var(--purple-deep); font-family: var(--display); font-size: clamp(1.35rem, 2.4vw, 1.8rem); }
.hero-offer__action { padding: 6px 10px; background: var(--purple-deep); border-radius: 7px; color: #fff; font-size: .76rem; font-weight: 800; }

.hero__points { display: flex; flex-wrap: wrap; gap: 9px 24px; padding: 0; margin: 20px 0 26px; list-style: none; }
.hero__points li { font-size: .95rem; font-weight: 600; color: #fff; }
.hero__points li::before { margin-right: 7px; content: "\2713"; color: var(--lime-bright); font-weight: 800; }

.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* --- Request form card -------------------------------------------------- */

.form-card {
  position: relative; z-index: 2;
  padding: clamp(22px, 2.6vw, 30px);
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  border-top: 5px solid var(--lime);
}
.form-card__title { margin-bottom: 6px; font-size: 1.42rem; }
.form-card__intro { margin-bottom: 18px; font-size: .95rem; }
.form-card__offer {
  display: inline-block; padding: 5px 11px; margin: 0 0 10px;
  background: var(--lime); border-radius: 100px; color: var(--ink);
  font-size: .76rem; font-weight: 800; letter-spacing: .02em;
}

.request-form { display: grid; gap: 14px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.request-form label {
  display: grid; gap: 6px;
  color: #33333f; font-size: .85rem; font-weight: 600;
}
.request-form input,
.request-form select,
.request-form textarea {
  width: 100%; min-height: 46px; padding: 11px 13px;
  background: #fbfbfc; border: 1px solid #d9d6de; border-radius: 8px;
  color: var(--ink); font-size: .95rem; font-weight: 400; font-family: inherit;
}
.request-form textarea { min-height: 84px; resize: vertical; }
.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  border-color: var(--purple); outline: 3px solid rgba(139, 200, 50, .3); outline-offset: 0;
}
.request-form .button { margin-top: 4px; }
.form-note { margin: 0; color: #63636f; font-size: .79rem; line-height: 1.5; text-align: center; }
.form-honeypot { position: absolute !important; left: -9999px !important; }

/* --- Trust bar, lime band like the flyer -------------------------------- */

.trustbar { background: var(--lime); color: var(--ink); }
.trustbar__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trustbar__grid > div {
  display: grid; gap: 1px; padding: 20px 26px 20px 0;
  border-right: 1px solid rgba(22, 22, 29, .16);
}
/* Breathing room after each divider, while the first cell stays flush
   with the container's left edge so it lines up with the rest of the page */
.trustbar__grid > div + div { padding-left: 26px; }
.trustbar__grid > div:last-child { border-right: 0; padding-right: 0; }
.trustbar strong { color: var(--purple-deep); font-family: var(--display); font-size: 1.42rem; font-weight: 800; letter-spacing: -.02em; }
.trustbar span { color: #2f3d1a; font-size: .88rem; font-weight: 500; }

/* --- Service cards, colour blocked instead of stock photos -------------- */

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  position: relative; overflow: hidden; padding: 26px 26px 28px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.card::before {
  position: absolute; top: 0; right: 0; left: 0; height: 5px;
  background: var(--lime); content: "";
}
.card h3 { font-size: 1.32rem; }
.card p { font-size: .96rem; margin: 0; }
.card--dark {
  color: var(--on-dark);
  background: var(--purple); border-color: var(--purple);
}
.card--dark h3 { color: #fff; }
.card--dark::before { background: var(--lime-bright); }

/* --- Split (image + copy) ---------------------------------------------- */

.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 3.6vw, 50px); align-items: center;
}
.split--reverse .split__media { order: 2; }
.split__media img {
  width: 100%; height: auto;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
}
.split__copy p { font-size: 1rem; }

/* --- Real results ------------------------------------------------------ */

.section--results { background: var(--purple-50); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .section-head__lead { margin-inline: auto; }
.results-gallery {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px;
  max-width: 920px; margin: 0 auto;
}
.result-photo { margin: 0; }
.result-photo__frame {
  position: relative; overflow: hidden; aspect-ratio: 3 / 4;
  background: #dcd7e3; border: 3px solid var(--purple); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.result-photo__frame--after { border-color: var(--lime); }
.result-photo img { width: 100%; height: 100%; object-fit: cover; }
.result-photo__label {
  position: absolute; top: 16px; left: 16px; padding: 6px 13px;
  background: #fff; border-radius: 100px; color: var(--purple-deep);
  font-size: .76rem; font-weight: 800; text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}
.result-photo figcaption { margin-top: 10px; color: var(--slate); font-size: .9rem; text-align: center; }
.results-gallery__arrow { color: var(--purple); font-family: var(--display); font-size: 2.25rem; font-weight: 800; }
.results-note { margin: 24px auto 14px; text-align: center; }
.results-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

.about__contact { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.about__contact a {
  display: grid; gap: 1px; padding: 12px 20px;
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  text-decoration: none;
}
.about__contact a:hover { border-color: var(--purple); }
.about__contact small { color: var(--slate); font-size: .82rem; }
.about__contact strong { color: var(--ink); font-family: var(--display); font-size: 1.02rem; }

/* --- Why it matters, two column tick list on purple --------------------- */

.why__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 4vw, 56px); align-items: start; }
.why__lead { font-size: 1.06rem; color: var(--on-dark); }
.why__note {
  margin-top: 24px; padding: 18px 22px;
  background: rgba(255, 255, 255, .07); border-left: 4px solid var(--lime);
  border-radius: 0 10px 10px 0; font-size: .97rem;
}

/* --- Steps ------------------------------------------------------------- */

.steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  padding: 0; margin: 0; list-style: none;
}
.steps li { padding-top: 20px; border-top: 3px solid var(--purple); }
.steps__num {
  display: block; margin-bottom: 10px;
  color: var(--purple); font-family: var(--display); font-size: 1.1rem; font-weight: 800;
}
.steps p { font-size: .94rem; margin: 0; }

/* --- Pricing ----------------------------------------------------------- */

.special {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: auto 1fr auto; gap: 28px; align-items: center;
  padding: 26px 30px; margin-bottom: 22px;
  background: linear-gradient(120deg, var(--purple-deep), var(--purple) 62%, var(--purple-bright));
  border-radius: var(--radius-lg); color: var(--on-dark);
}
/* Must exclude .bubbles: it is absolutely positioned, and making it relative
   would turn the decorative layer into a real grid item. */
.special > *:not(.bubbles) { position: relative; z-index: 1; }
.special__price {
  display: flex; align-items: flex-start; gap: 2px;
  color: var(--lime-bright); font-family: var(--display); font-size: 4rem; font-weight: 800;
  line-height: 1; letter-spacing: -.04em;
}
.special__price span { font-size: 1.7rem; margin-top: 7px; }
/* Needs the .special prefix so it outranks the generic `.special p` rule below,
   otherwise the pill inherits body size and wraps onto two lines */
.special .special__flag {
  display: inline-block; padding: 4px 13px; margin-bottom: 10px;
  background: var(--lime); border-radius: 100px;
  color: var(--ink); font-size: .75rem; font-weight: 800; line-height: 1.5;
  white-space: nowrap;
}
.special h3 { margin-bottom: 6px; color: #fff; font-size: 1.35rem; }
.special p { margin: 0; font-size: .96rem; }

.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
/* Flex column so all three cards match height and the buttons line up */
.plan {
  display: flex; flex-direction: column; gap: 9px; padding: 26px 24px 28px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.plan h3 { margin: 0; }
.plan p { font-size: .94rem; margin: 0; }
/* These need .plan prefixes so they outrank the generic `.plan p` rule above */
.plan .plan__price {
  display: flex; align-items: flex-start; gap: 2px;
  color: var(--ink); font-family: var(--display); font-size: 3rem; font-weight: 800;
  line-height: 1; letter-spacing: -.03em;
}
.plan .plan__price span { font-size: 1.4rem; margin-top: 5px; }
.plan .plan__price--quote { font-size: 1.5rem; color: var(--purple); }
.plan__unit { color: var(--purple); font-weight: 600; font-size: .9rem !important; }
.plan .button { margin-top: auto; }

.plan--featured { border-color: var(--purple); border-width: 2px; box-shadow: var(--shadow-md); }
.plan__flag {
  display: inline-block; align-self: flex-start; padding: 4px 12px;
  background: var(--lime); border-radius: 100px;
  color: var(--ink); font-size: .76rem !important; font-weight: 800;
}
.plan__flag--soft { background: var(--purple-50); color: var(--purple); }
.plan--recurring { border-color: #cbb7df; }

/* --- Recurring service callout ---------------------------------------- */

.recurring-callout { padding-block: clamp(36px, 4vw, 52px); background: var(--lime); }
.recurring-callout__inner { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: clamp(28px, 5vw, 64px); }
.recurring-callout h2 { margin-bottom: 8px; color: var(--purple-deep); }
.recurring-callout p { max-width: 650px; margin: 0; color: #304015; }
.recurring-callout .eyebrow { margin-bottom: 8px; color: var(--purple); }
.recurring-callout__choices { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.recurring-callout__choices a {
  display: grid; gap: 4px; padding: 18px; background: #fff; border: 2px solid transparent;
  border-radius: 12px; color: var(--ink); text-decoration: none; box-shadow: var(--shadow-sm);
}
.recurring-callout__choices a:hover { border-color: var(--purple); transform: translateY(-1px); }
.recurring-callout__choices strong { color: var(--purple); font-family: var(--display); font-size: 1.12rem; }
.recurring-callout__choices span { color: var(--slate); font-size: .86rem; }

/* --- Service areas ------------------------------------------------------ */

.areas { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.area {
  padding: 22px 22px 24px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  border-top: 4px solid var(--purple);
}
.area h3 { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px; margin-bottom: 14px; }
.area h3 span { color: var(--slate); font-family: var(--body); font-size: .82rem; font-weight: 500; }
.area ul { padding: 0; margin: 0; list-style: none; }
.area li {
  padding: 7px 0 7px 18px; position: relative;
  border-bottom: 1px solid var(--line);
  color: #3f3f4c; font-size: .95rem;
}
.area li:last-child { border-bottom: 0; }
.area li::before {
  position: absolute; left: 0; top: 7px; content: "\203A"; color: var(--lime); font-weight: 800;
}
.area--ask { background: var(--purple-50); border-color: #ded2ec; border-top-color: var(--lime); }
.area--ask p { font-size: .95rem; margin-bottom: 14px; }

/* --- FAQ --------------------------------------------------------------- */

.faq-wrap { max-width: 860px; }
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  min-height: 58px; padding: 12px 0; cursor: pointer; list-style: none;
  color: var(--ink); font-family: var(--display); font-size: 1.05rem; font-weight: 700;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary span { position: relative; flex: 0 0 auto; width: 20px; height: 20px; }
.faq summary span::before,
.faq summary span::after {
  position: absolute; top: 50%; left: 50%; content: "";
  background: var(--purple); transform: translate(-50%, -50%);
  transition: opacity .18s ease;
}
.faq summary span::before { width: 14px; height: 2px; }
.faq summary span::after { width: 2px; height: 14px; }
.faq details[open] summary span::after { opacity: 0; }
.faq details p { max-width: 700px; margin: -4px 0 22px; font-size: .97rem; }

/* --- CTA band ---------------------------------------------------------- */

.cta {
  position: relative; overflow: hidden;
  padding-block: clamp(40px, 4.2vw, 58px);
  background: linear-gradient(120deg, var(--purple-deep), var(--purple) 70%, var(--purple-bright));
  color: var(--on-dark);
}
.cta__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 26px; }
.cta h2 { margin-bottom: 6px; color: #fff; }
.cta p { margin: 0; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* --- Footer ------------------------------------------------------------ */

.site-footer { padding: 46px 0 20px; background: #120e19; color: rgba(255, 255, 255, .72); }
.footer__main {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 34px;
}
.brand--footer { color: #fff; }
.brand--footer .brand-text strong { color: var(--lime-bright); }
.footer__brand p { max-width: 320px; margin: 18px 0 0; font-size: .92rem; }
.footer__owner { color: rgba(255, 255, 255, .6); font-size: .87rem !important; }
.footer__col { display: grid; align-content: start; gap: 9px; }
.footer__col h2 { margin-bottom: 8px; color: #fff; font-size: .98rem; letter-spacing: 0; }
.footer__col a { color: rgba(255, 255, 255, .76); font-size: .93rem; text-decoration: none; }
.footer__col a:hover { color: var(--lime-bright); }
.footer__bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px;
  padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .6); font-size: .83rem;
}
.footer__tagline { color: var(--lime-soft) !important; font-weight: 600; }

.mobile-cta { display: none; }

/* --- Thank you page ---------------------------------------------------- */

.thanks-page { display: grid; min-height: 100vh; padding: 30px; background: var(--bg-alt); place-items: center; }
.thanks-card {
  width: min(100%, 580px); padding: clamp(34px, 6vw, 58px);
  background: #fff; border-top: 5px solid var(--lime);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md); text-align: center;
}
.thanks-card h1 { margin-bottom: 14px; font-size: clamp(2rem, 5vw, 2.8rem); }
.thanks-card p { margin-bottom: 26px; }

/* --- Responsive -------------------------------------------------------- */

@media (max-width: 1040px) {
  .site-nav { gap: 14px; }
  .site-nav > a:not(.button) { font-size: .86rem; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__copy { max-width: 640px; }
  .cards, .areas, .plans { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 32px; }
  .why__grid { grid-template-columns: 1fr; }
  .recurring-callout__inner { grid-template-columns: 1fr; }
  .trustbar__grid { grid-template-columns: repeat(2, 1fr); }
  .trustbar__grid > div { padding: 20px; border-bottom: 1px solid rgba(22, 22, 29, .16); }
  .trustbar__grid > div:nth-child(2n) { border-right: 0; }
  .trustbar__grid > div:nth-last-child(-n+2) { border-bottom: 0; }
  .footer__main { grid-template-columns: 1fr 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  :root { --header-h: 64px; }
  .brand-logo { height: 46px; }
  .brand-logo--footer { height: 64px; }
  .topbar__note { display: none; }
  .topbar__inner { justify-content: center; }
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute; top: 100%; right: 20px; left: 20px; display: none;
    padding: 18px; background: var(--purple-deep);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 0 0 var(--radius) var(--radius); box-shadow: var(--shadow-md);
  }
  .site-nav.is-open { display: grid; gap: 4px; }
  .site-nav > a { padding: 8px 0; }
  .site-nav .button { margin-top: 8px; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
}

@media (max-width: 700px) {
  body { padding-bottom: 60px; }
  .container { width: calc(100% - 32px); }
  .section { padding-block: 44px; }
  .cards, .areas, .plans, .steps { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero__points { flex-direction: column; gap: 10px; }
  .hero-offer { grid-template-columns: 1fr auto; }
  .hero-offer__label { grid-column: 1 / -1; }
  .hero__actions .button, .cta__actions .button { flex: 1 1 100%; }
  .results-gallery { grid-template-columns: 1fr; }
  .results-gallery__arrow { transform: rotate(90deg); justify-self: center; }
  .recurring-callout__choices { grid-template-columns: 1fr; }
  .cta__inner { flex-direction: column; align-items: flex-start; }
  .special { grid-template-columns: 1fr; gap: 12px; padding: 22px 20px 24px; }
  .special .button { justify-self: stretch; }
  .special__price { font-size: 3.1rem; }
  .special__price span { font-size: 1.35rem; margin-top: 4px; }
  .special h3 { font-size: 1.22rem; }
  .footer__main { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .footer__bottom { flex-direction: column; gap: 8px; }
  .bubbles i:nth-child(1) { width: 90px; height: 90px; }
  .bubbles i:nth-child(4) { display: none; }

  .mobile-cta {
    position: fixed; z-index: 90; right: 0; bottom: 0; left: 0;
    display: grid; grid-template-columns: 1fr 1fr;
    background: var(--purple-deep); box-shadow: 0 -6px 22px rgba(0, 0, 0, .18);
  }
  .mobile-cta a {
    display: grid; min-height: 60px; place-items: center;
    color: #fff; font-family: var(--display); font-weight: 800; font-size: .95rem; text-decoration: none;
  }
  .mobile-cta a:last-child { background: var(--lime); color: var(--ink); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
