:root {
  --gold: #eeba30;
  --gold-dark: #e1a900;
  --black: #050505;
  --text: #171717;
  --muted: #5d5a55;
  --line: #e7ded0;
  --cream: #fff8ea;
  --white: #ffffff;
  --shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
  --radius: 8px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--white);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.45;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

br.mobile-only {
  display: none;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, p {
  margin-top: 0;
}

h1, h3 {
  color: var(--black);
}

.hero-title {
  max-width: 610px;
  margin-bottom: 24px;
  font-size: clamp(2.15rem, 3vw, 2.95rem);
  font-weight: 950;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-title span,
.script {
  display: block;
  color: var(--gold-dark);
  font-family: "Segoe Script", "Comic Sans MS", cursive;
  font-weight: 500;
  letter-spacing: 0;
}

.hero-title span {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  font-size: clamp(2.65rem, 3.75vw, 3.65rem);
  line-height: 0.9;
}

.hero-title span::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 5%;
  bottom: -7px;
  z-index: -1;
  height: 9px;
  border-radius: 999px;
  background: var(--gold);
  transform: rotate(-4deg);
}

h2 {
  margin-bottom: 34px;
  color: var(--black);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  font-weight: 700;
  line-height: 1.1;
}

h3 {
  margin-bottom: 6px;
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.22;
}

p {
  margin-bottom: 12px;
}

.shell {
  width: min(945px, calc(100vw - 110px));
  margin: 0 auto;
}

.section {
  padding: 58px 0;
}

.slim {
  padding-top: 44px;
  padding-bottom: 48px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--black);
  color: var(--white);
}

.skip-link:focus {
  transform: translateY(0);
}

.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;
}

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

:focus-visible {
  outline: 3px solid rgba(238, 186, 48, 0.8);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(231, 222, 208, 0.85);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 28px;
}

.nav.shell {
  width: min(1100px, calc(100vw - 72px));
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-width: 168px;
  color: var(--black);
  line-height: 1;
}

.brand img {
  width: 168px;
  height: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.45vw, 20px);
  color: var(--black);
  font-size: 0.86rem;
  font-weight: 760;
}

.nav-menu a:not(.btn) {
  position: relative;
  padding: 8px 0;
}

.nav-menu a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 1px;
  height: 3px;
  background: var(--gold);
  transition: right 160ms ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  right: 0;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--black);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 40px;
  padding: 11px 18px;
  border: 2px solid var(--gold);
  border-radius: 7px;
  background: var(--gold);
  color: var(--black);
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.btn-ghost {
  background: var(--white);
}

.btn-nav {
  min-height: 40px;
  padding: 11px 14px;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  padding: 24px 0 16px;
  background:
    radial-gradient(circle at 88% 46%, rgba(238, 186, 48, 0.22), transparent 24%),
    linear-gradient(90deg, #fff 0%, #fff 42%, #fff7e6 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -42px;
  width: 290px;
  height: 190px;
  background: var(--gold);
  opacity: 0.95;
  clip-path: polygon(12% 70%, 100% 0, 85% 100%, 0 85%);
  transform: rotate(-13deg);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 430px minmax(0, 1fr);
  align-items: center;
  gap: 58px;
}

.hero-copy {
  min-width: 0;
}

.seo-kicker {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.lead {
  max-width: 520px;
  margin-top: 18px;
  color: var(--black);
  font-size: 1.03rem;
  font-weight: 560;
}

.lead-secondary {
  max-width: 500px;
  margin-top: -4px;
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-reassurance {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 520px;
  margin-top: 16px;
}

.hero-reassurance span {
  padding: 6px 10px;
  border: 1px solid rgba(238, 186, 48, 0.55);
  border-radius: 999px;
  background: rgba(255, 248, 234, 0.92);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 850;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.hero .btn {
  min-height: 38px;
  padding: 10px 18px;
  font-size: 0.88rem;
}

.hero-photo {
  position: relative;
  min-height: 310px;
  margin: 0;
}

.hero-photo picture {
  display: block;
}

.hero-photo img {
  width: 100%;
  min-height: 310px;
  object-fit: cover;
  border-radius: 0 0 0 90px;
  filter: saturate(1.03);
  mask-image: linear-gradient(90deg, transparent 0%, #000 16%, #000 100%);
}

.hero-photo figcaption {
  display: none;
}

.lined {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.lined::before,
.lined::after {
  content: "";
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), var(--gold));
}

.lined::after {
  background: linear-gradient(90deg, var(--gold), var(--line), transparent);
}

.section-intro {
  max-width: 720px;
  margin: -16px auto 32px;
  color: var(--muted);
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.55;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

#difference {
  padding-top: 54px;
  padding-bottom: 46px;
}

#pour-qui {
  padding-top: 46px;
  padding-bottom: 56px;
}

.pillar {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 14px;
  align-items: start;
}

.round-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  font-size: 1.65rem;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(238, 186, 48, 0.25);
}

.round-icon.dark {
  background: var(--black);
  color: var(--white);
}

.round-icon.small {
  width: 46px;
  height: 46px;
  font-size: 1.2rem;
}

.pillar p,
.support-card p,
.benefits p,
.testimonial-grid p,
.testimonial-track p,
.process-steps p {
  color: var(--black);
  font-size: 0.82rem;
  line-height: 1.38;
}

.pillar p {
  font-size: 0.75rem;
  line-height: 1.34;
}

.testimonial-grid p,
.testimonial-track p {
  font-size: 0.72rem;
  line-height: 1.36;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) 0.77fr;
  gap: 12px;
}

.support-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 0;
  min-height: 226px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.support-card:hover,
.support-card.is-active {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

.support-card .round-icon,
.support-card h3,
.support-card p {
  margin-left: 0;
  margin-right: 0;
}

.support-card .round-icon {
  position: absolute;
  left: 16px;
  top: 16px;
  margin: 0;
}

.support-card .round-icon::before {
  display: block;
  line-height: 1;
}

.support-card:nth-child(1) .round-icon,
.support-card:nth-child(2) .round-icon,
.support-card:nth-child(3) .round-icon,
.support-card:nth-child(4) .round-icon {
  font-size: 0;
}

.support-card:nth-child(1) .round-icon::before { content: "♧"; font-size: 1.35rem; }
.support-card:nth-child(2) .round-icon::before { content: "▱"; font-size: 1.35rem; }
.support-card:nth-child(3) .round-icon::before { content: "☆"; font-size: 1.55rem; }
.support-card:nth-child(4) .round-icon::before { content: "▭"; font-size: 1.35rem; }

.support-card h3 {
  min-height: 48px;
  margin: 18px 14px 0 76px;
  font-size: 0.9rem;
  line-height: 1.13;
}

.support-card p {
  min-height: 62px;
  margin: 10px 16px 8px;
  font-size: 0.72rem;
  line-height: 1.42;
}

.support-card img {
  width: 100%;
  height: 88px;
  margin-top: auto;
  object-fit: cover;
}

.support-summary {
  position: relative;
  margin-top: 18px;
  padding: 22px 54px 22px 24px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--gold);
  border-radius: var(--radius);
  background: #fffdf7;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.support-summary h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.support-summary p {
  max-width: 860px;
  margin-bottom: 10px;
  color: var(--black);
  font-size: 0.9rem;
  line-height: 1.55;
}

.summary-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.quote-card {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: center;
  min-height: 226px;
  padding: 18px 18px 28px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #ffc400 0%, #eeba30 56%, #e7aa09 100%);
  color: var(--black);
  text-align: center;
}

.quote-card span {
  color: var(--white);
  font-size: 4rem;
  font-family: Georgia, serif;
  line-height: 0.52;
}

.quote-card p {
  max-width: 145px;
  margin: 0 auto;
  font-size: 0.95rem;
  font-weight: 850;
  line-height: 1.35;
}

.quote-card::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 13px;
  width: 72px;
  height: 44px;
  border-bottom: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  transform: rotate(-28deg);
}

.quote-card::before {
  content: "";
  position: absolute;
  right: 34px;
  bottom: 29px;
  width: 42px;
  height: 20px;
  background:
    linear-gradient(35deg, transparent 42%, rgba(255, 255, 255, 0.92) 43% 50%, transparent 51%),
    linear-gradient(155deg, transparent 42%, rgba(255, 255, 255, 0.92) 43% 50%, transparent 51%);
  background-size: 15px 12px;
  transform: rotate(-28deg);
}

.pnl {
  padding-top: 58px;
  padding-bottom: 66px;
}

.pnl .shell {
  width: min(1120px, calc(100vw - 56px));
}

.pnl-title {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 28px;
  margin: 0 0 36px 0;
  white-space: normal;
}

.pnl-title::after {
  content: "";
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--line), transparent);
}

.pnl-intro {
  max-width: 820px;
  margin: -18px 0 34px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr)) 250px;
  gap: 14px;
  align-items: start;
}

.benefit-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  column-gap: 10px;
  align-items: start;
  min-width: 0;
}

.benefit-card span {
  display: block;
  width: 58px;
  height: 74px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 52px auto;
}

.benefit-card span::before,
.benefit-card span::after {
  content: none;
}

.benefit-heart span { background-image: url("/assets/images/pnl-symbol-heart.jpg"); }
.benefit-chat span { background-image: url("/assets/images/pnl-symbol-chat.jpg"); }
.benefit-rocket span { background-image: url("/assets/images/pnl-symbol-rocket.jpg"); }
.benefit-stress span { background-image: url("/assets/images/pnl-icon-target.jpg"); }

.benefit-target span {
  position: relative;
  background-image: none;
}

.benefit-target span::before,
.benefit-target span::after {
  content: "";
  position: absolute;
  display: block;
}

.benefit-target span::before {
  left: 9px;
  top: 8px;
  width: 36px;
  height: 36px;
  border: 3px solid var(--gold-dark);
  border-radius: 50%;
  box-shadow: inset 0 0 0 7px var(--white), inset 0 0 0 10px var(--gold-dark);
}

.benefit-target span::after {
  left: 28px;
  top: 8px;
  width: 4px;
  height: 38px;
  background: var(--gold-dark);
  transform: rotate(45deg);
  box-shadow: 0 0 0 4px var(--white);
}

.benefit-card h3 {
  margin: 2px 0 10px;
  font-size: 0.92rem;
  line-height: 1.18;
}

.benefit-card p {
  margin: 0;
  color: var(--text);
  font-size: 0.74rem;
  line-height: 1.35;
}

.note-card {
  align-self: start;
  min-height: 136px;
  margin-top: 0;
  border-radius: 0;
  background: url("/assets/images/pnl-note.jpg") center / cover no-repeat;
}

.about-testimonials {
  padding-top: 70px;
  padding-bottom: 64px;
}

.about-testimonials .shell {
  width: min(1055px, 100vw);
}

.about-row {
  display: grid;
  grid-template-columns: 486px minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
}

.about-panel {
  display: grid;
  grid-template-columns: 44% 56%;
  overflow: hidden;
  height: auto;
  min-height: 285px;
  border-radius: var(--radius);
  background: var(--black);
  color: var(--white);
}

.about-panel img {
  width: 100%;
  height: 100%;
  min-height: 285px;
  object-fit: contain;
  object-position: center top;
  background: #111;
}

.about-copy {
  padding: 24px 28px;
}

.about-copy h2 {
  margin-bottom: 6px;
  color: var(--white);
  font-size: 1.85rem;
}

.about-copy h3 {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.98rem;
}

.about-copy p {
  color: var(--white);
  font-size: 0.8rem;
  line-height: 1.5;
}

.about-copy strong {
  color: var(--gold);
  display: block;
  margin-top: 10px;
  font-size: 0.82rem;
  line-height: 1.42;
}

.script {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.testimonials {
  min-width: 0;
}

.testimonial-track {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  overflow: visible;
  padding: 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.testimonial-grid article,
.testimonial-track article {
  min-height: 160px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.testimonial-grid span,
.testimonial-track span {
  display: block;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 2rem;
  line-height: 0.6;
}

.testimonial-grid strong,
.testimonial-track strong {
  display: block;
  margin-top: 8px;
  font-size: 0.8rem;
}

.testimonial-grid em,
.testimonial-track em {
  display: block;
  margin-top: 8px;
  color: var(--gold-dark);
  font-style: normal;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.process-section {
  padding-top: 72px;
  padding-bottom: 76px;
  background: linear-gradient(180deg, #fff 0%, #fffdf7 100%);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.process-steps article {
  min-height: 160px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.process-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  font-weight: 950;
}

.process-note {
  margin: 22px 0 0;
  color: var(--black);
  font-weight: 850;
  text-align: center;
}

.contact-section {
  padding: 72px 0 76px;
  background: linear-gradient(90deg, #fff 0%, #fff 45%, #fff7e8 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

.contact-copy {
  max-width: 760px;
}

.contact-copy h2 {
  position: relative;
  width: max-content;
  margin-bottom: 12px;
}

.contact-copy h2::after {
  content: "";
  position: absolute;
  left: 0;
  right: 30px;
  bottom: -8px;
  height: 4px;
  background: var(--gold);
}

.contact-copy p {
  font-size: 0.94rem;
}

.contact-copy span {
  color: var(--gold-dark);
  font-weight: 900;
}

.phone {
  font-size: 1.4rem !important;
  font-weight: 950;
}

.phone a {
  color: var(--black);
}

.contact-form {
  display: grid;
  gap: 12px;
}

.form-line {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

input,
textarea {
  width: 100%;
  min-height: 42px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--white);
  color: var(--text);
  font: inherit;
}

textarea {
  min-height: 92px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--gold);
  outline: 3px solid rgba(238, 186, 48, 0.28);
}

.consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  align-items: start;
  color: var(--muted);
  font-size: 0.82rem;
}

.rgpd-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.consent input {
  min-height: 18px;
  padding: 0;
}

.contact-form .btn {
  justify-self: end;
  min-width: 210px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 20px;
  margin: 0;
  font-weight: 800;
}

.form-status.success { color: #196b2e; }
.form-status.error { color: #9d1c1c; }

.faq-section {
  background: #fffdf7;
}

.faq-section h2 {
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

summary {
  padding: 16px 18px;
  color: var(--black);
  font-weight: 850;
  cursor: pointer;
}

details p {
  padding: 0 18px 16px;
}

.footer {
  padding: 16px 0;
  background: var(--black);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.24fr 0.42fr 0.34fr;
  gap: 24px;
  align-items: center;
}

.footer-brand {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.footer p {
  margin: 0;
  font-size: 0.88rem;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  font-size: 0.88rem;
}

.footer a:hover {
  color: var(--gold);
}

@media (max-width: 1040px) {
  .support-grid,
  .benefits {
    grid-template-columns: repeat(2, 1fr);
  }

  .quote-card,
  .note-card {
    grid-column: 1 / -1;
  }

  .pillars,
  .about-row,
  .process-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  br.mobile-only {
    display: block;
  }

  .shell {
    width: min(680px, calc(100vw - 56px));
  }

  .nav.shell {
    width: min(680px, calc(100vw - 32px));
  }

  .nav {
    min-height: 74px;
  }

  .brand img {
    width: 154px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 82px;
    display: grid;
    gap: 6px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  }

  .nav-menu.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .hero {
    padding-top: 28px;
  }

  .hero-copy {
    max-width: 100%;
    padding-right: 0;
  }

  .lead,
  .lead-secondary {
    max-width: 100%;
  }

  .hero-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    max-width: 100%;
    font-size: clamp(1.9rem, 7.8vw, 2.45rem);
  }

  .hero-title span {
    font-size: clamp(2rem, 8.8vw, 2.65rem);
  }

  .hero-title span::after {
    left: 4%;
    right: 4%;
  }

  .lined,
  .pnl-title {
    display: block;
    text-align: center;
  }

  .lined::before,
  .lined::after,
  .pnl-title::after {
    display: none;
  }

  h2 {
    font-size: clamp(1.65rem, 7vw, 2rem);
  }

  .hero .actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero .btn {
    width: 100%;
  }

  .hero-photo img {
    min-height: 280px;
    border-radius: var(--radius);
    mask-image: none;
  }

  .hero-photo figcaption {
    right: 24px;
    top: 22px;
    padding: 12px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.72);
    font-size: 1rem;
  }

  .pillar,
  .about-panel,
  .form-line,
  .testimonial-grid,
  .testimonial-track {
    grid-template-columns: 1fr;
  }

  .pillar {
    text-align: center;
  }

  .pillar .round-icon {
    margin: 0 auto;
  }

  .support-grid,
  .benefits,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .benefits article {
    grid-template-columns: 48px 1fr;
  }

  .contact-form .btn {
    justify-self: stretch;
  }

  .footer nav {
    justify-content: flex-start;
  }
}

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