:root {
  --fp-teal-950: #162426;
  --fp-teal-900: #224f4f;
  --fp-teal-800: #274445;
  --fp-teal-700: #2f6e6e;
  --fp-teal-600: #385c5c;
  --fp-gold: #c8a96a;
  --fp-gold-soft: #d8b56e;
  --fp-cream: #faf8f2;
  --fp-mint: #f3faf8;
  --fp-line: #dde8e6;
  --fp-text: #1f2b2b;
  --fp-muted: #436564;
  --fp-white: #ffffff;
  --fp-radius: 12px;
  --fp-radius-sm: 8px;
  --fp-max: 1120px;
  --fp-space: clamp(1.25rem, 4vw, 3rem);
  --fp-font: system-ui, -apple-system, 'Segoe UI', Roboto, Ubuntu, Cantarell, 'Noto Sans', Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--fp-font);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--fp-text);
  background: var(--fp-mint);
}

:focus-visible {
  outline: 3px solid var(--fp-gold-soft);
  outline-offset: 2px;
}

:where(a) {
  color: var(--fp-teal-700);
}

:where(a):hover {
  color: var(--fp-teal-900);
}

.fp-wrap {
  width: min(var(--fp-max), calc(100% - var(--fp-space) * 2));
  margin-inline: auto;
}

.fp-skip {
  position: absolute;
  left: -9999px;
  top: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--fp-white);
  color: var(--fp-teal-900);
  z-index: 100;
}

.fp-skip:focus {
  left: 0.5rem;
}

.fp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(56, 92, 92, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.fp-header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 0.75rem;
  padding: 0.55rem 0;
  min-height: 3.75rem;
}

.fp-logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  order: 1;
}

.fp-logo {
  width: 178px;
  height: 42px;
  display: block;
  object-fit: contain;
}

.fp-nav-toggle {
  order: 2;
  margin-left: auto;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.12);
  cursor: pointer;
  color: var(--fp-white);
  flex-shrink: 0;
}

.fp-nav-toggle:hover {
  border-color: var(--fp-gold-soft);
}

.fp-nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.fp-header--open .fp-nav-toggle-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.fp-header--open .fp-nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.fp-header--open .fp-nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.fp-header-nav {
  order: 3;
  flex-basis: 100%;
  display: none;
  flex-direction: column;
  align-items: stretch;
  gap: 0.6rem;
  padding: 0.65rem 0 0.35rem;
  margin-top: 0.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.fp-header--open .fp-header-nav {
  display: flex;
}

.fp-header-nav-btn {
  width: 100%;
  justify-content: center;
}

@media (min-width: 768px) {
  .fp-header-inner {
    flex-wrap: nowrap;
    padding: 0.65rem 0;
    min-height: 4.25rem;
  }

  .fp-nav-toggle {
    display: none;
  }

  .fp-header-nav {
    order: 2;
    flex-basis: auto;
    display: flex !important;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem 0.75rem;
    width: auto;
    padding: 0;
    margin-top: 0;
    border-top: none;
  }

  .fp-header-nav-btn {
    width: auto;
  }

  .fp-header--open .fp-header-nav {
    display: flex !important;
  }
}

.fp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
  line-height: 1.2;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

a.fp-btn {
  text-decoration: none;
}

.fp-btn-gold {
  background: var(--fp-gold);
  color: var(--fp-teal-950);
}

.fp-btn-gold:hover,
.fp-btn-gold:focus-visible {
  background: var(--fp-gold-soft);
  color: var(--fp-teal-950);
}

.fp-btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--fp-white);
}

.fp-btn-outline:hover,
.fp-btn-outline:focus-visible {
  border-color: var(--fp-white);
  background: rgba(255, 255, 255, 0.08);
  color: var(--fp-white);
}

.fp-btn-dark {
  background: var(--fp-teal-900);
  color: var(--fp-white);
}

.fp-btn-dark:hover,
.fp-btn-dark:focus-visible {
  background: var(--fp-teal-800);
  color: var(--fp-white);
}

.fp-btn-block {
  width: 100%;
}

.fp-btn-sm {
  padding: 0.45rem 0.95rem;
  font-size: 0.88rem;
}

.fp-hero {
  background: linear-gradient(145deg, var(--fp-teal-800) 0%, var(--fp-teal-600) 42%, var(--fp-teal-700) 100%);
  color: var(--fp-white);
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 7vw, 5rem);
}

.fp-hero-split {
  display: grid;
  gap: 1.75rem;
  align-items: start;
}

@media (min-width: 900px) {
  .fp-hero-split {
    grid-template-columns: minmax(0, 1.12fr) minmax(280px, 400px);
    gap: 2.25rem 3rem;
  }
}

.fp-hero-copy {
  min-width: 0;
}

.fp-hero-aside {
  min-width: 0;
}

.fp-kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--fp-gold-soft);
  margin: 0 0 0.75rem;
}

.fp-kicker-em {
  color: #f2e6c9;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.fp-hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  line-height: 1.18;
  font-weight: 700;
  max-width: 100%;
  text-wrap: balance;
  overflow-wrap: break-word;
  hyphens: manual;
}

.fp-lead-hero {
  margin: 0 0 1.35rem;
  font-size: 1.0625rem;
  line-height: 1.55;
  opacity: 0.94;
  max-width: 38rem;
}

.fp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
}

.fp-hero-actions-secondary {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  font-size: 1rem;
}

.fp-hero-actions-dot {
  opacity: 0.45;
  user-select: none;
}

.fp-hero-quiet-link {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: underline;
  text-underline-offset: 0.18em;
  font-weight: 600;
}

.fp-hero-quiet-link:hover,
.fp-hero-quiet-link:focus-visible {
  color: var(--fp-gold-soft);
}

.fp-hero-trust {
  margin: 1rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  opacity: 0.88;
  max-width: 36rem;
}

.fp-hero-trust a {
  color: var(--fp-gold-soft);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.fp-hero-trust a:hover,
.fp-hero-trust a:focus-visible {
  color: var(--fp-white);
}

@media (max-width: 767.98px) {
  .fp-hero {
    padding: clamp(1.65rem, 5vw, 2.35rem) 0 clamp(1.85rem, 5vw, 2.75rem);
  }

  .fp-kicker {
    font-size: 0.66rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.45rem;
  }

  .fp-hero h1 {
    font-size: clamp(1.45rem, 5.4vw, 1.8rem);
    margin-bottom: 0.55rem;
    line-height: 1.2;
  }

  .fp-lead-hero {
    font-size: 0.97rem;
    line-height: 1.48;
    margin-bottom: 0.95rem;
  }

  .fp-hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.55rem;
  }

  .fp-hero-actions .fp-btn-gold {
    width: 100%;
    justify-content: center;
  }

  .fp-hero-actions-secondary {
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 0.25rem;
    column-gap: 0.35rem;
    font-size: 0.92rem;
  }

  .fp-hero-trust {
    font-size: 0.74rem;
    line-height: 1.42;
    margin-top: 0.75rem;
    text-align: center;
    max-width: none;
    opacity: 0.9;
  }

  .fp-logo {
    width: 148px;
    height: 35px;
  }
}

.fp-hero-card-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--fp-teal-700);
  margin: 0 0 0.35rem;
}

.fp-hero-card-head {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--fp-teal-900);
  line-height: 1.2;
}

.fp-hero-card-sub {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  color: var(--fp-muted);
  line-height: 1.45;
}

.fp-nowrap {
  white-space: nowrap;
}

.fp-form-panel--hero {
  background: var(--fp-white);
  color: var(--fp-text);
  box-shadow: 0 12px 40px rgba(15, 35, 35, 0.18);
}

.fp-form-panel--hero .fp-label {
  color: var(--fp-teal-900);
}

.fp-form-panel--hero .fp-btn-dark:hover {
  filter: brightness(1.05);
}

.fp-form--compact .fp-form-grid {
  gap: 0.75rem;
}

.fp-form-submit {
  margin: 0.85rem 0 0;
}

.fp-label-muted {
  font-weight: 400;
  color: var(--fp-muted);
}

.fp-hero-sent-title {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  color: var(--fp-teal-900);
}

.fp-hero-sent-text {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--fp-muted);
}

.fp-btn-outline-dark {
  background: transparent;
  border: 2px solid var(--fp-teal-700);
  color: var(--fp-teal-900);
}

.fp-btn-outline-dark:hover,
.fp-btn-outline-dark:focus-visible {
  background: var(--fp-mint);
  color: var(--fp-teal-900);
}

.fp-btn-linkedin {
  background: #0a66c2;
  border-color: transparent;
  color: #fff;
}

.fp-btn-linkedin:hover,
.fp-btn-linkedin:focus-visible {
  background: #004182;
  color: #fff;
}

.fp-author {
  border-top: 1px solid var(--fp-line);
  border-bottom: 1px solid var(--fp-line);
}

.fp-author-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 880px) {
  .fp-author-grid {
    grid-template-columns: minmax(260px, 380px) minmax(0, 1fr);
    gap: 2.5rem 3rem;
  }
}

.fp-author-photo-wrap {
  border-radius: var(--fp-radius);
  overflow: hidden;
  border: 1px solid var(--fp-line);
  background: var(--fp-teal-950);
  aspect-ratio: 440 / 550;
  max-height: min(70vh, 520px);
}

.fp-author-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.fp-author-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--fp-teal-700);
  margin: 0 0 0.5rem;
}

.fp-author-body h2 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.55rem, 2.8vw, 2rem);
  color: var(--fp-teal-900);
}

.fp-author-role {
  margin: 0 0 1rem;
  font-weight: 600;
  color: var(--fp-muted);
  font-size: 0.98rem;
}

.fp-author-body > p {
  margin: 0 0 1rem;
  color: var(--fp-text);
}

.fp-author-list {
  margin: 0 0 1.25rem;
  padding-left: 1.15rem;
  color: var(--fp-muted);
}

.fp-author-list li + li {
  margin-top: 0.45rem;
}

.fp-author-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.fp-section {
  padding: clamp(2.75rem, 6vw, 4.25rem) 0;
}

#benefits-title {
  scroll-margin-top: 5.5rem;
}

#pricing {
  scroll-margin-top: 5.5rem;
}

.fp-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;
}

.fp-section-cream {
  background: var(--fp-cream);
}

.fp-section-white {
  background: var(--fp-white);
}

.fp-section-head {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.fp-section-head h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.65rem, 3vw, 2rem);
  color: var(--fp-teal-900);
}

.fp-section-head p {
  margin: 0;
  color: var(--fp-muted);
}

.fp-columns {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .fp-columns-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.fp-card {
  background: var(--fp-white);
  border: 1px solid var(--fp-line);
  border-radius: var(--fp-radius);
  padding: 1.35rem 1.25rem;
  height: 100%;
}

.fp-card-num {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--fp-teal-900);
  color: var(--fp-gold-soft);
  font-weight: 800;
  font-size: 0.85rem;
  margin-bottom: 0.65rem;
}

.fp-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.12rem;
  color: var(--fp-teal-900);
}

.fp-card p {
  margin: 0;
  color: var(--fp-muted);
  font-size: 0.98rem;
}

.fp-list-check {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

@media (min-width: 640px) {
  .fp-list-check {
    grid-template-columns: 1fr 1fr;
  }
}

.fp-list-check li {
  position: relative;
  padding-left: 1.65rem;
  color: var(--fp-text);
}

.fp-list-check li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 2px;
  background: var(--fp-gold);
}

.fp-tag-grid {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.fp-tag {
  background: var(--fp-white);
  border: 1px solid var(--fp-line);
  border-radius: var(--fp-radius-sm);
  padding: 0.65rem 0.85rem;
  font-size: 0.95rem;
  color: var(--fp-teal-900);
}

.fp-faq details {
  background: var(--fp-white);
  border: 1px solid var(--fp-line);
  border-radius: var(--fp-radius-sm);
  padding: 0.85rem 1rem;
}

.fp-faq details + details {
  margin-top: 0.65rem;
}

.fp-faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--fp-teal-900);
  list-style: none;
}

.fp-faq summary::-webkit-details-marker {
  display: none;
}

.fp-faq summary::after {
  content: '+';
  float: right;
  color: var(--fp-gold);
  font-weight: 800;
}

.fp-faq details[open] summary::after {
  content: '–';
}

.fp-faq p {
  margin: 0.65rem 0 0;
  color: var(--fp-muted);
  font-size: 0.98rem;
}

.fp-section-pricing {
  background: linear-gradient(180deg, var(--fp-mint) 0%, var(--fp-white) 55%);
  border-top: 1px solid var(--fp-line);
  border-bottom: 1px solid var(--fp-line);
}

.fp-pricing-head {
  max-width: 44rem;
  margin-bottom: 1.75rem;
}

.fp-pricing-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--fp-teal-700);
  margin: 0 0 0.5rem;
}

.fp-pricing-head h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.65rem, 3vw, 2rem);
  color: var(--fp-teal-900);
}

.fp-pricing-lead {
  margin: 0 0 1rem;
  color: var(--fp-muted);
  font-size: 1.02rem;
  line-height: 1.55;
}

.fp-pricing-source {
  margin: 0;
}

.fp-price-shell {
  background: var(--fp-white);
  border: 1px solid var(--fp-line);
  border-radius: var(--fp-radius);
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(22, 36, 38, 0.06);
}

.fp-price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.fp-price-table thead {
  background: var(--fp-teal-900);
  color: var(--fp-white);
}

.fp-price-table th {
  text-align: left;
  padding: 0.75rem 1rem;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.fp-price-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--fp-line);
  vertical-align: top;
  color: var(--fp-text);
}

.fp-price-table tbody tr:last-child td {
  border-bottom: none;
}

.fp-price-table tbody tr:nth-child(even):not(.fp-price-row--pelvic) {
  background: var(--fp-mint);
}

.fp-price-row--pelvic {
  background: linear-gradient(90deg, rgba(200, 169, 106, 0.14) 0%, transparent 98%);
}

.fp-price-row--pelvic:nth-child(even) {
  background: linear-gradient(90deg, rgba(200, 169, 106, 0.18) 0%, rgba(243, 250, 248, 0.65) 100%);
}

.fp-price-name {
  font-weight: 700;
  color: var(--fp-teal-900);
  display: block;
}

.fp-price-note {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--fp-muted);
}

.fp-price-amount {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--fp-teal-900);
  white-space: nowrap;
}

.fp-pricing-foot {
  margin: 1.25rem 0 0;
  font-size: 0.9rem;
  color: var(--fp-muted);
  max-width: 44rem;
}

.fp-pricing-foot a {
  font-weight: 600;
}

@media (max-width: 720px) {
  .fp-price-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .fp-price-table tr {
    display: block;
    padding: 1rem 1rem 1.1rem;
    border-bottom: 1px solid var(--fp-line);
  }

  .fp-price-table tbody tr:last-child {
    border-bottom: none;
  }

  .fp-price-table td {
    display: block;
    padding: 0.35rem 0;
    border: none;
  }

  .fp-price-table td:first-child {
    padding-bottom: 0.5rem;
  }

  .fp-price-table td[data-label]::before {
    content: attr(data-label);
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--fp-muted);
    margin-bottom: 0.15rem;
  }

  .fp-price-table td:last-child {
    padding-top: 0.5rem;
  }
}

.fp-cta {
  background: linear-gradient(90deg, var(--fp-teal-950) 0%, var(--fp-teal-800) 50%, var(--fp-teal-950) 100%);
  color: var(--fp-white);
  padding: clamp(2.75rem, 6vw, 4rem) 0;
}

.fp-cta-inner {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 860px) {
  .fp-cta-inner {
    grid-template-columns: 1.4fr 1fr;
  }
}

.fp-cta h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.55rem, 3vw, 2rem);
}

.fp-cta p {
  margin: 0 0 1rem;
  opacity: 0.94;
}

.fp-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.fp-cta .fp-btn-outline {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--fp-white);
}

.fp-cta .fp-btn-outline:hover,
.fp-cta .fp-btn-outline:focus-visible {
  border-color: var(--fp-white);
  background: rgba(255, 255, 255, 0.08);
  color: var(--fp-white);
}

.fp-cta .fp-btn-quiet {
  border-color: rgba(255, 255, 255, 0.35);
}

.fp-contact {
  scroll-margin-top: 5rem;
}

.fp-form-panel {
  background: var(--fp-white);
  border: 1px solid var(--fp-line);
  border-radius: var(--fp-radius);
  padding: clamp(1.35rem, 4vw, 2rem);
}

.fp-form-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .fp-form-grid-split {
    grid-template-columns: 1fr 1fr;
  }
}

.fp-label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
  color: var(--fp-teal-900);
}

.fp-input,
.fp-textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: var(--fp-radius-sm);
  border: 1px solid var(--fp-line);
  font: inherit;
  color: var(--fp-text);
  background: var(--fp-mint);
}

.fp-textarea {
  min-height: 120px;
  resize: vertical;
}

.fp-check {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--fp-muted);
}

.fp-check input {
  margin-top: 0.2rem;
  accent-color: var(--fp-teal-700);
}

.field-error {
  margin: 0.35rem 0 0;
  font-size: 0.85rem;
  color: #9a3b3b;
}

.form-error-banner {
  background: #fdecec;
  border: 1px solid #f0c4c4;
  color: #6b2929;
  padding: 0.75rem 1rem;
  border-radius: var(--fp-radius-sm);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.fp-honeypot {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.fp-thankyou {
  border-radius: var(--fp-radius);
  padding: clamp(1.5rem, 4vw, 2rem);
  background: linear-gradient(135deg, var(--fp-mint) 0%, var(--fp-white) 60%);
  border: 1px solid var(--fp-line);
  margin-bottom: 1.5rem;
}

.fp-thankyou h2 {
  margin: 0 0 0.5rem;
  color: var(--fp-teal-900);
  font-size: 1.45rem;
}

.fp-thankyou p {
  margin: 0 0 1rem;
  color: var(--fp-muted);
}

.fp-footer {
  background: var(--fp-teal-950);
  color: rgba(255, 255, 255, 0.85);
  padding: 2.5rem 0 2rem;
  font-size: 0.95rem;
}

.fp-footer-grid {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 720px) {
  .fp-footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

.fp-footer a {
  color: var(--fp-gold-soft);
  text-decoration: none;
}

.fp-footer a:hover,
.fp-footer a:focus-visible {
  color: #f0e4c4;
  text-decoration: underline;
}

.fp-footer-brand {
  width: 168px;
  height: 40px;
  display: block;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 0.75rem;
}

.fp-footer small {
  display: block;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
}

