:root {
  --navy: #073d66;
  --navy-dark: #062f50;
  --blue: #0d679e;
  --green: #39a968;
  --green-soft: #dff2e6;
  --teal: #13989c;
  --purple: #4c55a1;
  --ink: #0b2c46;
  --text: #31485b;
  --muted: #6d7f8e;
  --line: #dbe6ed;
  --pale: #f3f8fb;
  --white: #ffffff;
  --shadow: 0 20px 55px rgba(18, 53, 78, 0.12);
  --radius: 22px;
  --shell: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }
button { cursor: pointer; }

.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;
  left: 16px;
  top: 12px;
  z-index: 999;
  transform: translateY(-180%);
  background: var(--navy-dark);
  color: white;
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
}
.skip-link:focus { transform: translateY(0); }

.shell { width: min(var(--shell), calc(100% - 48px)); margin: 0 auto; }
.section { padding: 84px 0; }

h1, h2, h3 {
  color: var(--ink);
  margin: 0 0 16px;
  line-height: 1.08;
  letter-spacing: -0.03em;
}
h1, h2 { font-family: Georgia, "Times New Roman", serif; }
h1 { font-size: clamp(3rem, 5.2vw, 5.25rem); }
h2 { font-size: clamp(2.1rem, 3.5vw, 3.5rem); }
h3 { font-size: 1.15rem; letter-spacing: -0.015em; }
p { margin: 0 0 18px; }
.lead { font-size: 1.16rem; color: #1f4057; max-width: 650px; }
.lead-small { font-size: 1.08rem; color: #24485f; }
.fine-print { font-size: 0.86rem; color: var(--muted); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid rgba(219,230,237,0.9);
  backdrop-filter: blur(12px);
}
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--navy); }
.brand-mark { width: 42px; height: 42px; display: grid; place-items: center; }
.brand-mark svg { width: 100%; height: 100%; fill: none; stroke: var(--green); stroke-width: 3.2; stroke-linecap: round; stroke-linejoin: round; }
.brand strong { display: block; font-size: 1.05rem; line-height: 0.9; letter-spacing: -0.03em; }
.brand small { display: block; margin-top: 5px; color: #6a889b; text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.53rem; font-weight: 800; }
.site-nav { display: flex; align-items: center; gap: 26px; }
.site-nav a:not(.button) { text-decoration: none; font-size: 0.94rem; font-weight: 650; color: #24465d; }
.site-nav a:not(.button):hover { color: var(--navy); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: white; border-radius: 12px; color: var(--navy); }
.menu-toggle svg { width: 22px; fill: none; stroke: currentColor; stroke-width: 2; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 21px;
  border-radius: 9px;
  border: 1px solid var(--navy);
  background: var(--navy);
  color: white;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(7,61,102,.18); background: var(--navy-dark); }
.button:focus-visible, summary:focus-visible, a:focus-visible, button:focus-visible { outline: 3px solid rgba(57,169,104,.35); outline-offset: 3px; }
.button-small { min-height: 42px; padding: 0 17px; }
.button-outline { background: white; color: var(--navy); border-color: #8aa9bc; }
.button-outline:hover { background: #f7fbfd; }
.button-light { background: #d0ef9d; color: #174e2d; border-color: #d0ef9d; }
.button-light:hover { background: #c0e786; }

.hero { padding: 42px 0 58px; background: #fff; }
.hero-grid { display: grid; grid-template-columns: 1.03fr 0.97fr; align-items: stretch; min-height: 620px; }
.hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 38px 56px 38px 0; }
.hero-copy > p { max-width: 670px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 14px 0 30px; }
.hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; border-top: 1px solid var(--line); padding-top: 22px; }
.hero-proof div { display: flex; align-items: center; gap: 9px; font-size: .9rem; font-weight: 700; color: #426175; }
.proof-icon { width: 34px; height: 34px; border-radius: 999px; background: #e8f4f8; color: var(--navy); display: grid; place-items: center; font-weight: 900; }
.hero-media { position: relative; margin: 0; min-height: 620px; overflow: hidden; border-radius: 0 0 0 34px; background: #eaf2f6; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-media figcaption { position: absolute; right: 22px; top: 34px; width: 190px; color: white; font-family: Georgia, serif; font-size: 1.45rem; line-height: 1.18; font-style: italic; text-shadow: 0 2px 12px rgba(0,0,0,.45); }

.problem-section { background: #f6fafc; border-top: 1px solid #edf3f6; }
.problem-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; align-items: center; }
.two-col { columns: 2; column-gap: 30px; }
.check-list, .cross-list { list-style: none; padding: 0; margin: 18px 0 28px; }
.check-list li, .cross-list li { position: relative; padding-left: 30px; margin: 8px 0; break-inside: avoid; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 20px; height: 20px; border-radius: 999px; display: grid; place-items: center; background: var(--navy); color: white; font-size: .72rem; font-weight: 900; }
.cross-list li::before { content: "×"; position: absolute; left: 2px; color: #ef4c55; font-weight: 900; font-size: 1.2rem; line-height: 1; }
.callout { background: #e8f4ec; color: #174b2d; border-left: 4px solid var(--green); padding: 18px 20px; border-radius: 10px; max-width: 760px; }
.support-media { position: relative; margin: 0; overflow: hidden; border-radius: 18px; box-shadow: var(--shadow); }
.support-media img { width: 100%; height: 340px; object-fit: cover; }
.support-media figcaption { position: absolute; right: 22px; top: 24px; width: 190px; font-family: Georgia, serif; font-size: 1.45rem; font-style: italic; line-height: 1.22; color: var(--navy); text-align: right; }

.promise-section { background: #fff; }
.promise-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; align-items: center; }
.statement-card { min-height: 280px; border-radius: var(--radius); background: #f0f8f6; display: grid; place-items: center; text-align: center; padding: 40px; border: 1px solid #dbece4; }
.statement-card p { margin: 0; font-family: Georgia, serif; font-size: 1.8rem; line-height: 1.35; color: var(--navy); }
.statement-leaf { display: none; }

.pillars-section { background: #f9fbfc; }
.section-heading { margin-bottom: 42px; }
.section-heading.centred { text-align: center; max-width: 820px; margin-left: auto; margin-right: auto; }
.section-heading p { color: #567184; }
.pillars-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.pillar { min-height: 285px; padding: 30px 20px 24px; border-radius: 16px; color: white; text-align: center; display: flex; flex-direction: column; align-items: center; box-shadow: 0 14px 30px rgba(35,74,98,.11); }
.pillar h3, .pillar p { color: white; }
.pillar p { font-size: .95rem; line-height: 1.45; }
.pillar-icon { width: 54px; height: 54px; border: 2px solid rgba(255,255,255,.72); border-radius: 999px; display: grid; place-items: center; margin-bottom: 20px; font-size: 1.5rem; }
.pillar-1 { background: #075c96; }
.pillar-2 { background: #2fac77; }
.pillar-3 { background: #0e8bbd; }
.pillar-4 { background: #4c55a1; }
.pillar-5 { background: #149898; }

.process-section { background: white; }
.process-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; position: relative; }
.process-list::before { content: ""; position: absolute; top: 23px; left: 8%; right: 8%; height: 2px; background: #cfe0ea; }
.process-list li { position: relative; text-align: center; }
.process-list span { position: relative; z-index: 2; width: 48px; height: 48px; display: grid; place-items: center; margin: 0 auto 15px; border-radius: 999px; background: var(--navy); color: white; font-weight: 900; box-shadow: 0 0 0 6px white; }
.process-list p { margin: 0; font-size: .92rem; line-height: 1.35; color: #29485d; font-weight: 700; }

.tracking-section { background: #f5f8fa; }
.tracking-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 52px; align-items: center; }
.tracking-media { margin: 0; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); background: white; }
.tracking-media img { width: 100%; height: 410px; object-fit: cover; }

.included-section { background: #fff; }
.split-heading { display: flex; justify-content: space-between; gap: 30px; align-items: end; }
.split-heading > div { max-width: 720px; }
.included-grid { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.included-grid div { min-height: 128px; padding: 24px 18px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: white; }
.included-grid span { color: var(--green); font-size: .78rem; font-weight: 900; letter-spacing: .12em; }
.included-grid p { margin: 8px 0 0; color: #29485d; font-weight: 750; line-height: 1.35; }

.fit-section { background: #f4f9fb; }
.fit-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 48px; align-items: center; }
.fit-note { min-height: 250px; border-radius: var(--radius); background: #e4f2ec; display: grid; place-items: center; padding: 34px; text-align: center; }
.fit-note p { font-family: Georgia, serif; color: var(--navy); font-size: 2rem; line-height: 1.35; margin: 0; }

.weeks-section { background: white; }
.weeks-timeline { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; }
.weeks-timeline article { padding: 28px; border-right: 1px solid var(--line); }
.weeks-timeline article:last-child { border-right: 0; }
.weeks-timeline span { display: inline-block; color: var(--green); font-weight: 900; font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 14px; }
.weeks-timeline h3 { font-size: 1.15rem; }
.weeks-timeline p { margin-bottom: 0; font-size: .93rem; }

.success-section { background: var(--navy); color: white; }
.success-grid { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 40px; }
.success-section h2, .success-section p { color: white; }
.success-quote { font-family: Georgia, serif; font-size: clamp(2.3rem, 4vw, 4rem); line-height: 1.05; text-align: right; color: #b9dfa0; }

.faq-section { background: #fff; }
.faq-shell { max-width: 920px; }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { list-style: none; padding: 22px 44px 22px 0; position: relative; cursor: pointer; color: var(--ink); font-weight: 800; font-size: 1.05rem; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 2px; top: 20px; width: 28px; height: 28px; border-radius: 999px; background: #edf4f7; display: grid; place-items: center; color: var(--navy); }
details[open] summary::after { content: "−"; }
details p { padding: 0 48px 22px 0; color: #526b7c; }

.join-section { padding: 78px 0; background: var(--navy-dark); color: white; position: relative; overflow: hidden; }
.join-section::after { content: ""; position: absolute; width: 460px; height: 460px; border-radius: 50%; border: 1px solid rgba(208,239,157,.23); right: -80px; top: -220px; box-shadow: 0 0 0 70px rgba(208,239,157,.05), 0 0 0 140px rgba(208,239,157,.03); }
.join-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.join-inner h2 { color: white; max-width: 820px; }
.join-inner p { color: #d8e5ed; margin: 0; max-width: 750px; }
.join-inner .button { flex: 0 0 auto; }

.site-footer { background: white; padding: 46px 0 28px; }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 35px; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 22px; }
.footer-nav a, .footer-bottom a { text-decoration: none; color: #496478; font-size: .9rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; border-top: 1px solid var(--line); margin-top: 34px; padding-top: 22px; color: #718390; font-size: .83rem; }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 18px; }

.checkout-dialog { width: min(560px, calc(100% - 32px)); border: 0; border-radius: 20px; padding: 32px; color: var(--text); box-shadow: 0 35px 100px rgba(4,32,52,.35); }
.checkout-dialog::backdrop { background: rgba(5,33,53,.62); }
.checkout-dialog h2 { font-size: 2.2rem; padding-right: 30px; }
.dialog-close { position: absolute; right: 18px; top: 14px; width: 38px; height: 38px; border: 0; border-radius: 999px; background: #eef4f7; color: var(--navy); font-size: 1.6rem; line-height: 1; }
.placeholder-box { display: grid; gap: 8px; padding: 18px; background: #f4f8fa; border: 1px solid var(--line); border-radius: 12px; margin: 22px 0; }
.placeholder-box span { font-size: .92rem; color: #5c7484; }

@media (max-width: 1020px) {
  .site-nav { gap: 16px; }
  .site-nav a:not(.button) { font-size: .86rem; }
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .hero-copy { padding-right: 34px; }
  .hero-proof { grid-template-columns: 1fr; gap: 10px; }
  .pillars-grid { grid-template-columns: repeat(3, 1fr); }
  .included-grid { grid-template-columns: repeat(3, 1fr); }
  .process-list { grid-template-columns: repeat(3, 1fr); row-gap: 34px; }
  .process-list::before { display: none; }
}

@media (max-width: 820px) {
  .shell { width: min(100% - 32px, var(--shell)); }
  .section { padding: 62px 0; }
  .menu-toggle { display: grid; place-items: center; }
  .site-nav { display: none; position: absolute; left: 16px; right: 16px; top: 72px; padding: 14px; flex-direction: column; align-items: stretch; gap: 4px; background: white; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); }
  .site-nav.is-open { display: flex; }
  .site-nav a:not(.button) { padding: 12px 10px; font-size: 1rem; }
  .hero { padding-top: 18px; }
  .hero-grid, .problem-grid, .promise-grid, .tracking-grid, .fit-grid, .success-grid { grid-template-columns: 1fr; }
  .hero-copy { padding: 38px 0 24px; }
  .hero-media { min-height: 460px; border-radius: 20px; }
  .hero-proof { grid-template-columns: repeat(3, 1fr); }
  .problem-grid, .promise-grid, .tracking-grid { gap: 34px; }
  .two-col { columns: 1; }
  .support-media { order: -1; }
  .support-media img { height: 300px; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .process-list { grid-template-columns: repeat(2, 1fr); }
  .included-grid { grid-template-columns: repeat(2, 1fr); }
  .split-heading { align-items: flex-start; flex-direction: column; }
  .weeks-timeline { grid-template-columns: 1fr 1fr; }
  .weeks-timeline article:nth-child(2) { border-right: 0; }
  .weeks-timeline article { border-bottom: 1px solid var(--line); }
  .weeks-timeline article:nth-child(3), .weeks-timeline article:nth-child(4) { border-bottom: 0; }
  .success-quote { text-align: left; }
  .join-inner { align-items: flex-start; flex-direction: column; }
  .footer-grid, .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 560px) {
  h1 { font-size: clamp(2.6rem, 13vw, 4rem); }
  h2 { font-size: clamp(2rem, 9vw, 2.8rem); }
  .header-inner { min-height: 72px; }
  .brand strong { font-size: .95rem; }
  .brand small { display: none; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .hero-proof { grid-template-columns: 1fr; }
  .hero-media { min-height: 390px; }
  .hero-media figcaption { font-size: 1.2rem; width: 155px; }
  .support-media figcaption { font-size: 1.15rem; width: 150px; }
  .pillars-grid, .included-grid, .weeks-timeline, .process-list { grid-template-columns: 1fr; }
  .pillar { min-height: auto; }
  .process-list li { display: grid; grid-template-columns: 48px 1fr; gap: 16px; align-items: center; text-align: left; }
  .process-list span { margin: 0; }
  .tracking-media img { height: 330px; }
  .included-grid { border-radius: 14px; overflow: hidden; }
  .weeks-timeline article { border-right: 0; border-bottom: 1px solid var(--line) !important; }
  .weeks-timeline article:last-child { border-bottom: 0 !important; }
  .footer-nav { display: grid; grid-template-columns: 1fr 1fr; width: 100%; }
  .footer-bottom div { flex-direction: column; gap: 8px; }
}

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

/* Final generated-asset framing pass */
.hero-media img { object-position: center center; }
.support-media img { object-position: 56% center; }
.tracking-media img { object-position: left center; }

/* Conversion polish pass */
.support-media img { object-position: center; }

/* Readability and navigation refinements. */
html { scroll-padding-top: 104px; }
.brand strong { line-height: 1.08; }
.brand small { font-size: .75rem; letter-spacing: .06em; }
.fine-print { font-size: .875rem; color: #526b7c; }
.proof-icon { flex-shrink: 0; }
.pillar p, .process-list p, .weeks-timeline p { font-size: 1rem; }
.pillar-2 { background: #218053; }
.pillar-3 { background: #087da9; }
.pillar-5 { background: #087c7c; }
.weeks-timeline span { color: #237a47; font-size: .875rem; }
.button { padding-top: 12px; padding-bottom: 12px; text-align: center; }
:focus-visible { outline: 3px solid #218053; outline-offset: 4px; }
@media (min-width: 821px) and (max-width: 1100px) {
  .site-nav { gap: 12px; }
  .header-inner { gap: 16px; }
  .brand small { display: none; }
}
@media (max-width: 560px) {
  html { scroll-padding-top: 88px; }
  .join-inner .button { flex-shrink: 1; }
  .checkout-dialog { padding: 28px 22px; }
}

/* Two clear next steps, using the existing colour and type system. */
.hero-actions { margin-bottom: 14px; }
.join-reassurance { font-size: .875rem; line-height: 1.55; color: #526b7c; }
.hero-explore { margin: 0 0 24px; font-size: .9375rem; }
.hero-explore a { color: var(--navy); text-underline-offset: 4px; }
.call-section { padding: 44px 0; background: #f3f8fb; border-top: 1px solid var(--line); }
.call-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.call-inner > div { max-width: 740px; }
.call-inner h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); }
.call-inner p { margin-bottom: 0; }
.call-inner .button { flex-shrink: 0; }
.join-options { flex: 0 1 360px; min-width: 0; width: 100%; }
.join-options .button { width: 100%; }
.join-options .join-reassurance { margin: 14px 0 24px; font-size: .875rem; }
.join-options .call-alternative { margin-bottom: 10px; font-size: .9375rem; }
.button-outline-light { background: transparent; border-color: #a0bacb; color: white; }
.button-outline-light:hover { background: rgba(255,255,255,.1); }
.join-inner > div:first-child { flex: 1 1 0; }
@media (max-width: 820px) {
  .call-inner { align-items: flex-start; flex-direction: column; gap: 24px; }
  .join-options { flex-basis: auto; max-width: 440px; }
}
@media (max-width: 560px) {
  .call-section { padding: 36px 0; }
  .join-options { max-width: none; }
}

/* Readable policy pages share the landing page typography and colours. */
.policy-main { max-width: 820px; padding-top: 56px; padding-bottom: 72px; }
.policy-main h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
.policy-main h2 { font-family: inherit; font-size: 1.3rem; letter-spacing: -.015em; line-height: 1.3; margin-top: 34px; }
.policy-main p, .policy-main li { font-size: 1rem; }
.policy-main li { margin-bottom: 10px; }
.policy-main a { color: var(--navy); text-underline-offset: 3px; overflow-wrap: anywhere; }
.policy-nav { display: flex; gap: 20px; flex-wrap: wrap; padding: 24px 0; border-top: 1px solid var(--line); }
.policy-date { color: #526b7c; font-size: .875rem; }
.policy-notice { padding: 20px; border-left: 4px solid var(--green); background: #f3f8fb; }

.join-options .purchase-details { font-size: .875rem; margin: 0 0 22px; }
.purchase-details a { text-underline-offset: 3px; }

/* Goals enquiry uses the existing landing page palette and typography. */
.goals-section { background: var(--pale); border-top: 1px solid var(--line); }
.goals-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 64px; align-items: start; }
.goals-intro { padding-top: 20px; }
.goals-eyebrow { color: #237a47; font-weight: 800; font-size: .875rem; letter-spacing: .08em; text-transform: uppercase; }
.goals-signoff { color: var(--navy); font-weight: 700; margin-bottom: 28px; }
.goals-section a { text-underline-offset: 3px; }
.goals-form { padding: 32px; background: white; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); min-width: 0; }
.goals-form .form-note { margin: 0 0 20px; }
.form-field { margin-bottom: 20px; min-width: 0; }
.form-field label { display: block; margin-bottom: 7px; color: var(--ink); font-weight: 700; font-size: 1rem; }
.form-field label span { font-weight: 400; color: #526b7c; font-size: .875rem; }
.form-field input, .form-field select, .form-field textarea { display: block; width: 100%; min-height: 48px; padding: 11px 12px; border: 1px solid #92aaba; border-radius: 8px; font: inherit; font-size: 1rem; color: var(--ink); background: #fff; }
.form-field textarea { resize: vertical; line-height: 1.5; }
.form-field textarea::placeholder { color: #627787; opacity: 1; }
.form-contact { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-consent { display: flex; align-items: flex-start; gap: 12px; font-size: .875rem; margin: 22px 0; cursor: pointer; }
.form-consent input { width: 20px; height: 20px; flex: 0 0 20px; margin: 2px 0 0; accent-color: var(--navy); }
.goals-form .button { width: 100%; }
.form-delivery { margin-top: 14px; }
.goals-form > p:last-child { margin-bottom: 0; }
.form-trap { display: none; }
@media (max-width: 820px) {
  .goals-grid { grid-template-columns: 1fr; gap: 28px; }
  .goals-intro { padding-top: 0; }
}
@media (max-width: 560px) {
  .goals-form { padding: 24px 18px; }
  .form-contact { grid-template-columns: 1fr; gap: 0; }
}
