.a43lp {
  --sand: #f3ebdd;
  --cream: #fffaf2;
  --ink: #272925;
  --muted: #68685f;
  --terracotta: #c95f3e;
  --terracotta-dark: #a9472e;
  --petrol: #174f56;
  --petrol-dark: #0e3e44;
  --blue-soft: #bfd4d1;
  --line: rgba(39, 41, 37, 0.22);
  width: 100vw;
  max-width: 100vw;
  margin: 0 0 0 calc(50% - 50vw);
  background: var(--sand);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  isolation: isolate;
}

.a43lp,
.a43lp * {
  box-sizing: border-box;
}

.a43lp {
  scroll-behavior: smooth;
}

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

.a43lp .skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--ink);
  color: white;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.a43lp .site-header {
  width: min(1440px, calc(100% - 96px));
  min-height: 104px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
  border-bottom: 1px solid var(--line);
}

.a43lp .brand {
  width: fit-content;
  font-size: clamp(2.1rem, 3.4vw, 3.65rem);
  font-weight: 650;
  letter-spacing: -0.08em;
  line-height: 1;
}

.a43lp .brand b {
  color: var(--terracotta);
  font-weight: 650;
}

.a43lp .desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(28px, 3.8vw, 60px);
  font-size: 0.98rem;
  font-weight: 560;
}

.a43lp .desktop-nav a {
  position: relative;
  padding: 12px 0;
}

.a43lp .desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.a43lp .desktop-nav a:hover::after,
.a43lp .desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.a43lp .header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
}

.a43lp .header-cta span,
.a43lp .button span,
.a43lp .belief-strip a span {
  transition: transform 180ms ease;
}

.a43lp .header-cta:hover span,
.a43lp .button:hover span,
.a43lp .belief-strip a:hover span {
  transform: translate(3px, -2px);
}

.a43lp .hero {
  width: min(1440px, calc(100% - 96px));
  min-height: calc(100svh - 105px);
  margin: 0 auto;
  padding: clamp(70px, 8vw, 118px) 0 76px;
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(500px, 1.07fr);
  align-items: center;
  gap: clamp(56px, 7vw, 112px);
  overflow: hidden;
}

.a43lp .hero-copy {
  position: relative;
  z-index: 3;
  animation: rise-in 650ms ease both;
}

.a43lp .eyebrow {
  margin: 0 0 28px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--petrol);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.a43lp .eyebrow span {
  width: 28px;
  height: 1px;
  background: var(--petrol);
}

.a43lp .hero h1 {
  max-width: 715px;
  margin: 0;
  font-size: clamp(3.55rem, 5.4vw, 6.55rem);
  font-weight: 720;
  letter-spacing: -0.065em;
  line-height: 0.97;
}

.a43lp .hero h1 em {
  position: relative;
  color: var(--terracotta);
  font-style: normal;
  white-space: nowrap;
}

.a43lp .hero h1 em::after {
  content: "";
  position: absolute;
  right: 0.02em;
  bottom: -0.03em;
  width: 0.13em;
  height: 0.13em;
  border-radius: 50%;
  background: var(--terracotta);
}

.a43lp .hero-text {
  max-width: 660px;
  margin: 30px 0 0;
  color: #4f504a;
  font-size: clamp(1.05rem, 1.25vw, 1.28rem);
  line-height: 1.65;
}

.a43lp .hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.a43lp .button {
  min-height: 58px;
  padding: 0 24px;
  border: 1px solid var(--ink);
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 0.9rem;
  font-weight: 720;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.a43lp .button:hover {
  transform: translateY(-2px);
}

.a43lp .button-primary {
  border-color: var(--terracotta);
  background: var(--terracotta);
  color: white;
  box-shadow: 0 12px 24px rgba(157, 68, 42, 0.2);
}

.a43lp .button-primary:hover {
  background: var(--terracotta-dark);
  box-shadow: 0 8px 16px rgba(157, 68, 42, 0.18);
}

.a43lp .button-secondary:hover {
  background: rgba(255, 250, 242, 0.65);
}

.a43lp .service-list {
  margin: 42px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 25px;
  list-style: none;
  font-size: 0.9rem;
  font-weight: 650;
}

.a43lp .service-list li:not(:last-child)::after {
  content: "";
  width: 5px;
  height: 5px;
  margin-left: 25px;
  display: inline-block;
  border-radius: 50%;
  background: #71a6a5;
  vertical-align: middle;
}

.a43lp .strategy-board {
  position: relative;
  min-height: 660px;
  isolation: isolate;
  animation: rise-in 750ms 120ms ease both;
}

.a43lp .paper-grid {
  position: absolute;
  z-index: -3;
  inset: 9% 7% 2% 8%;
  border-radius: 18px;
  background-color: #eee1ca;
  background-image:
    linear-gradient(rgba(23, 79, 86, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 79, 86, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  box-shadow: 0 22px 55px rgba(71, 59, 43, 0.18);
  transform: rotate(-3deg);
}

.a43lp .north-card,
.a43lp .clarity-note,
.a43lp .focus-card,
.a43lp .decision-card {
  position: absolute;
  box-shadow: 0 22px 42px rgba(55, 46, 34, 0.2);
}

.a43lp .north-card {
  top: 2%;
  left: 2%;
  z-index: 2;
  width: 58%;
  padding: 38px 42px;
  border-radius: 22px;
  background: var(--petrol);
  color: white;
  transform: rotate(-3deg);
}

.a43lp .card-heading {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.a43lp .card-heading p,
.a43lp .focus-card > p {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.a43lp .compass {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
}

.a43lp .strategy-line {
  padding: 16px 0;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.a43lp .strategy-line > span {
  padding-top: 2px;
  color: var(--blue-soft);
  font-size: 0.68rem;
  font-weight: 800;
}

.a43lp .strategy-line strong,
.a43lp .strategy-line small {
  display: block;
}

.a43lp .strategy-line strong {
  margin-bottom: 3px;
  font-size: 0.86rem;
}

.a43lp .strategy-line small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
}

.a43lp .clarity-note {
  top: 9%;
  right: 0;
  z-index: 3;
  width: 35%;
  min-height: 220px;
  padding: 30px 26px;
  border-radius: 10px;
  background: #d9e4df;
  transform: rotate(7deg);
}

.a43lp .clarity-note span,
.a43lp .decision-card span {
  color: #526867;
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.a43lp .clarity-note strong {
  margin-top: 18px;
  display: block;
  color: var(--petrol);
  font-family: Georgia, serif;
  font-size: clamp(1.45rem, 2.1vw, 2.2rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.18;
}

.a43lp .focus-card {
  right: 1%;
  bottom: 10%;
  z-index: 4;
  width: 50%;
  min-height: 248px;
  padding: 28px 30px;
  border-radius: 18px;
  background: var(--cream);
  transform: rotate(2.5deg);
}

.a43lp .focus-card > p {
  color: #4e4e47;
}

.a43lp .focus-card ul {
  position: absolute;
  top: 74px;
  right: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #4a4b45;
  font-size: 0.68rem;
  line-height: 2;
}

.a43lp .dot {
  width: 8px;
  height: 8px;
  margin-right: 6px;
  display: inline-block;
  border-radius: 50%;
}

.a43lp .dot-petrol { background: var(--petrol); }
.a43lp .dot-blue { background: #84acaa; }
.a43lp .dot-sand { background: #e0bc84; }
.a43lp .dot-orange { background: var(--terracotta); }

.a43lp .focus-ring {
  position: absolute;
  bottom: 27px;
  left: 31px;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(var(--petrol) 0 42%, #84acaa 42% 70%, #e0bc84 70% 88%, var(--terracotta) 88%);
}

.a43lp .focus-ring::after {
  content: "";
  position: absolute;
  inset: 28px;
  border-radius: 50%;
  background: var(--cream);
}

.a43lp .focus-ring span {
  position: relative;
  z-index: 1;
  font-size: 0.7rem;
  font-weight: 800;
}

.a43lp .decision-card {
  bottom: 1%;
  left: 5%;
  z-index: 3;
  width: 47%;
  padding: 28px 30px 25px;
  border-radius: 16px;
  background: #c6d9d6;
  transform: rotate(-2deg);
}

.a43lp .decision-card strong {
  margin-top: 14px;
  display: block;
  color: var(--petrol);
  font-family: Georgia, serif;
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.35;
}

.a43lp .decision-line {
  width: 55%;
  height: 2px;
  margin-top: 16px;
  background: var(--petrol);
  transform: rotate(-3deg);
}

.a43lp .pin {
  position: absolute;
  z-index: 6;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--terracotta);
  box-shadow: 0 5px 7px rgba(57, 31, 20, 0.25);
}

.a43lp .pin-one { top: 7%; right: 3%; }
.a43lp .pin-two { top: 21%; right: 26%; }

.a43lp .belief-strip {
  padding: 52px max(48px, calc((100% - 1440px) / 2));
  display: grid;
  grid-template-columns: 0.8fr 1.7fr auto;
  align-items: center;
  gap: 52px;
  background: var(--petrol);
  color: white;
}

.a43lp .belief-strip p,
.a43lp .belief-strip strong {
  margin: 0;
}

.a43lp .belief-strip p {
  color: var(--blue-soft);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.a43lp .belief-strip strong {
  font-family: Georgia, serif;
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  font-weight: 500;
  line-height: 1.25;
}

.a43lp .belief-strip a {
  padding-bottom: 5px;
  display: inline-flex;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
  font-weight: 750;
  white-space: nowrap;
}

.a43lp .section {
  width: min(1320px, calc(100% - 96px));
  margin: 0 auto;
  padding: 138px 0;
}

.a43lp .section-intro {
  display: grid;
  grid-template-columns: minmax(270px, 0.95fr) minmax(360px, 1.05fr);
  gap: 34px 90px;
}

.a43lp .section-kicker {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--petrol);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.a43lp .section-kicker span {
  color: var(--terracotta);
}

.a43lp .section-kicker.light {
  color: var(--blue-soft);
}

.a43lp .section-intro .section-kicker {
  grid-column: 1 / -1;
}

.a43lp .section h2,
.a43lp .partnership-copy h2,
.a43lp .outcomes-heading h2,
.a43lp .about-copy h2,
.a43lp .contact-copy h2,
.a43lp .fit-heading h2,
.a43lp .faq-heading h2 {
  margin: 0;
  font-size: clamp(2.6rem, 4.5vw, 5.4rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.a43lp .section-intro > p:last-child {
  max-width: 575px;
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.a43lp .help-grid {
  margin-top: 86px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--line);
}

.a43lp .help-card {
  position: relative;
  min-height: 330px;
  padding: 36px;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 22px;
  background: var(--cream);
  transition: background 220ms ease, color 220ms ease;
}

.a43lp .help-card.featured-help,
.a43lp .help-card:hover {
  background: var(--petrol);
  color: white;
}

.a43lp .card-number {
  color: var(--terracotta);
  font-size: 0.72rem;
  font-weight: 850;
}

.a43lp .mini-label {
  margin: 0 0 66px;
  color: #77776f;
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.a43lp .featured-help .mini-label,
.a43lp .help-card:hover .mini-label {
  color: var(--blue-soft);
}

.a43lp .help-card h3 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(1.45rem, 2.1vw, 2.1rem);
  font-weight: 500;
}

.a43lp .help-card div > p:last-child {
  max-width: 430px;
  margin: 17px 0 0;
  color: #686960;
  font-size: 0.88rem;
  line-height: 1.7;
}

.a43lp .featured-help div > p:last-child,
.a43lp .help-card:hover div > p:last-child {
  color: rgba(255, 255, 255, 0.7);
}

.a43lp .card-arrow {
  width: 40px;
  height: 40px;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  transition: transform 180ms ease;
}

.a43lp .help-card:hover .card-arrow {
  transform: translate(3px, -3px);
}

.a43lp .partnership-section {
  min-height: 850px;
  padding: 120px max(48px, calc((100% - 1320px) / 2));
  display: grid;
  grid-template-columns: minmax(460px, 1fr) minmax(380px, 0.85fr);
  align-items: center;
  gap: clamp(70px, 9vw, 150px);
  background: var(--petrol);
  color: white;
  overflow: hidden;
}

.a43lp .partnership-copy h2 {
  max-width: 650px;
  margin-top: 28px;
}

.a43lp .partnership-copy > p:not(.section-kicker) {
  max-width: 625px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.08rem;
  line-height: 1.75;
}

.a43lp .check-list {
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.a43lp .check-list li {
  padding: 16px 0;
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.91rem;
}

.a43lp .check-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.a43lp .check-list span {
  color: #f09a77;
  font-weight: 850;
}

.a43lp .partnership-visual {
  position: relative;
  min-height: 565px;
}

.a43lp .head-card,
.a43lp .shared-card {
  position: absolute;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.22);
}

.a43lp .head-card span,
.a43lp .shared-card span {
  display: block;
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.a43lp .head-card strong,
.a43lp .shared-card strong {
  margin-top: 12px;
  display: block;
  font-family: Georgia, serif;
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.25;
}

.a43lp .head-card-a {
  top: 6%;
  left: 1%;
  z-index: 2;
  width: 56%;
  min-height: 195px;
  background: var(--cream);
  color: var(--ink);
  transform: rotate(-5deg);
}

.a43lp .head-card-a span { color: var(--terracotta); }

.a43lp .head-card-b {
  top: 19%;
  right: 1%;
  z-index: 3;
  width: 51%;
  min-height: 195px;
  background: #c8d9d5;
  color: var(--petrol);
  transform: rotate(4deg);
}

.a43lp .head-card-b span { color: var(--terracotta-dark); }

.a43lp .shared-card {
  right: 15%;
  bottom: 6%;
  z-index: 4;
  width: 62%;
  min-height: 210px;
  background: var(--terracotta);
  color: white;
  transform: rotate(-2deg);
}

.a43lp .shared-card strong {
  font-size: 1.75rem;
}

.a43lp .orbit {
  position: absolute;
  border: 1px solid rgba(191, 212, 209, 0.22);
  border-radius: 50%;
}

.a43lp .orbit-a { inset: 2% 9% 8% 1%; }
.a43lp .orbit-b { inset: 15% 1% 0 19%; }

.a43lp .method-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(65px, 9vw, 150px);
}

.a43lp .method-intro {
  align-content: start;
  grid-template-columns: 1fr;
  gap: 28px;
}

.a43lp .method-intro .section-kicker {
  grid-column: auto;
}

.a43lp .method-intro > p:last-child {
  margin-top: 0;
}

.a43lp .method-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.a43lp .method-list li {
  min-height: 175px;
  padding: 31px 10px;
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.a43lp .method-list li > span {
  color: var(--terracotta);
  font-size: 0.74rem;
  font-weight: 850;
}

.a43lp .method-list p {
  margin: 0 0 7px;
  color: var(--petrol);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.a43lp .method-list h3 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 1.65rem;
  font-weight: 500;
}

.a43lp .method-list small {
  margin-top: 13px;
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
}

.a43lp .outcomes-section {
  padding: 135px max(48px, calc((100% - 1320px) / 2));
  background: #102f33;
  color: white;
}

.a43lp .outcomes-heading {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 40px 60px;
}

.a43lp .outcomes-heading h2 {
  max-width: 960px;
}

.a43lp .outcome-grid {
  margin-top: 92px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.a43lp .outcome-grid article {
  min-height: 320px;
  padding: 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.a43lp .outcome-grid article:first-child { padding-left: 0; }
.a43lp .outcome-grid article:last-child { border-right: 0; }

.a43lp .outcome-grid span {
  color: var(--terracotta);
  font-size: 0.7rem;
  font-weight: 850;
}

.a43lp .outcome-grid h3 {
  margin: 84px 0 18px;
  color: #ffffff !important;
  font-family: Georgia, serif;
  font-size: clamp(1.55rem, 2.2vw, 2.2rem);
  font-weight: 500;
}

.a43lp .outcome-grid p {
  max-width: 330px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
  line-height: 1.7;
}

.a43lp .honest-note {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 40px 70px;
}

.a43lp .honest-note span {
  color: var(--blue-soft);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.a43lp .honest-note p {
  max-width: 780px;
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(1.45rem, 2.3vw, 2.25rem);
  line-height: 1.35;
}

.a43lp .outcomes-heading h2,
.a43lp .partnership-copy h2,
.a43lp .contact-copy h2 {
  color: #ffffff !important;
}

.a43lp .fit-heading,
.a43lp .faq-heading {
  display: grid;
  grid-template-columns: 0.58fr 1.42fr;
  gap: 45px;
}

.a43lp .fit-columns {
  margin-top: 82px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.a43lp .fit-card {
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: 22px;
}

.a43lp .fit-card.good-fit {
  background: var(--petrol);
  color: white;
}

.a43lp .fit-card.bad-fit {
  background: var(--cream);
}

.a43lp .fit-card.good-fit .mini-label {
  color: var(--blue-soft);
}

.a43lp .fit-card .mini-label {
  margin-bottom: 30px;
}

.a43lp .fit-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.a43lp .fit-card li {
  min-height: 64px;
  padding: 17px 0;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  border-top: 1px solid currentColor;
  border-color: rgba(104, 104, 95, 0.25);
  font-size: 0.91rem;
  line-height: 1.55;
}

.a43lp .good-fit li { border-color: rgba(255, 255, 255, 0.16); }
.a43lp .fit-card li span { color: var(--terracotta); font-weight: 900; }

.a43lp .about-section {
  padding: 120px max(48px, calc((100% - 1320px) / 2));
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: clamp(70px, 10vw, 160px);
  background: #ded5c5;
}

.a43lp .about-mark {
  position: relative;
  min-height: 520px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--petrol);
  color: white;
  font-size: clamp(5rem, 10vw, 10rem);
  font-weight: 670;
  letter-spacing: -0.09em;
  transform: rotate(-2deg);
  box-shadow: 0 28px 60px rgba(54, 47, 38, 0.22);
}

.a43lp .about-mark::before,
.a43lp .about-mark::after {
  content: "";
  position: absolute;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.a43lp .about-mark::before { top: -110px; left: -110px; }
.a43lp .about-mark::after { right: -125px; bottom: -125px; }
.a43lp .about-mark b { color: #ed8060; font-weight: 670; }

.a43lp .about-copy h2 {
  margin-top: 28px;
  max-width: 700px;
}

.a43lp .about-copy > p:not(.section-kicker) {
  max-width: 690px;
  margin: 25px 0 0;
  color: #56574f;
  font-size: 1rem;
  line-height: 1.75;
}

.a43lp .about-tags {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.a43lp .about-tags span {
  padding: 9px 14px;
  border: 1px solid rgba(39, 41, 37, 0.32);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 750;
}

.a43lp .faq-section {
  padding-bottom: 148px;
}

.a43lp .faq-heading h2 {
  max-width: 850px;
}

.a43lp .faq-list {
  margin: 88px 0 0 auto;
  width: min(100%, 930px);
  border-top: 1px solid var(--line);
}

.a43lp .faq-list details {
  border-bottom: 1px solid var(--line);
}

.a43lp .faq-list summary {
  min-height: 96px;
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  cursor: pointer;
  list-style: none;
  font-family: Georgia, serif;
  font-size: clamp(1.2rem, 1.8vw, 1.65rem);
}

.a43lp .faq-list summary::-webkit-details-marker { display: none; }

.a43lp .faq-list summary b {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--terracotta);
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  transition: transform 180ms ease;
}

.a43lp .faq-list details[open] summary b { transform: rotate(45deg); }

.a43lp .faq-list details p {
  max-width: 760px;
  margin: -5px 0 30px;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.75;
}

.a43lp .contact-section {
  min-height: 780px;
  padding: 125px max(48px, calc((100% - 1320px) / 2));
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(65px, 9vw, 140px);
  background: var(--terracotta);
  color: white;
}

.a43lp .contact-copy h2 {
  max-width: 760px;
  margin-top: 28px;
}

.a43lp .contact-copy > p:not(.section-kicker) {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
  line-height: 1.75;
}

.a43lp .contact-button {
  width: fit-content;
  margin-top: 40px;
  border-color: var(--ink);
  background: var(--ink);
  color: white;
}

.a43lp .contact-button:hover {
  background: var(--petrol-dark);
}

.a43lp .contact-copy > small {
  margin-top: 15px;
  display: block;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.7rem;
}

.a43lp .contact-note {
  min-height: 470px;
  padding: 58px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
  color: var(--ink);
  transform: rotate(2.5deg);
  box-shadow: 0 30px 70px rgba(96, 40, 25, 0.26);
}

.a43lp .contact-note span {
  color: var(--petrol);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.a43lp .contact-note strong {
  max-width: 450px;
  margin-top: 26px;
  font-family: Georgia, serif;
  font-size: clamp(2rem, 3.7vw, 3.75rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.15;
}

.a43lp .contact-scribble {
  width: 62%;
  height: 3px;
  margin-top: 35px;
  background: var(--petrol);
  transform: rotate(-3deg);
}

.a43lp footer {
  padding: 80px max(48px, calc((100% - 1320px) / 2)) 38px;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr auto;
  align-items: end;
  gap: 40px;
  background: var(--ink);
  color: white;
}

.a43lp .footer-brand {
  font-size: 3.2rem;
}

.a43lp footer p {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.85rem;
  line-height: 1.6;
}

.a43lp .footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
  font-size: 0.78rem;
}

.a43lp footer > small {
  grid-column: 1 / -1;
  margin-top: 50px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.43);
  font-size: 0.67rem;
}

.a43lp .floating-whatsapp {
  position: fixed;
  z-index: 20;
  right: 22px;
  bottom: 22px;
  min-height: 48px;
  padding: 8px 16px 8px 8px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--petrol);
  color: white;
  box-shadow: 0 10px 30px rgba(12, 47, 51, 0.28);
  font-size: 0.72rem;
  font-weight: 750;
  transition: transform 180ms ease, background 180ms ease;
}

.a43lp .floating-whatsapp:hover {
  transform: translateY(-2px);
  background: var(--petrol-dark);
}

.a43lp .floating-whatsapp span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #4eae6f;
  font-size: 0.6rem;
  font-weight: 900;
}

/* Acabamento visual moderno — mantém a identidade quente e estratégica da A43 */
.a43lp .site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding-right: 24px;
  padding-left: 24px;
  border: 1px solid rgba(39, 41, 37, 0.1);
  border-top: 0;
  border-radius: 0 0 22px 22px;
  background: rgba(243, 235, 221, 0.88);
  box-shadow: 0 12px 40px rgba(58, 48, 35, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.a43lp .brand {
  letter-spacing: -0.085em;
}

.a43lp .brand b {
  display: inline-block;
  margin-left: 0.02em;
  letter-spacing: -0.18em;
  transform: translateY(0.02em);
}

.a43lp .hero {
  position: relative;
  isolation: isolate;
}

.a43lp .hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  top: 3%;
  left: 43%;
  width: 56%;
  height: 76%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(191, 212, 209, 0.42) 0%, rgba(243, 235, 221, 0) 68%);
  filter: blur(12px);
  pointer-events: none;
}

.a43lp .eyebrow {
  width: fit-content;
  padding: 9px 13px;
  border: 1px solid rgba(23, 79, 86, 0.16);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.5);
}

.a43lp .button {
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(58, 48, 35, 0.08);
}

.a43lp .button-primary {
  background: linear-gradient(135deg, #d46846 0%, var(--terracotta) 58%, #b44b31 100%);
  box-shadow: 0 14px 32px rgba(169, 71, 46, 0.24);
}

.a43lp .button-secondary {
  border-color: rgba(39, 41, 37, 0.34);
  background: rgba(255, 250, 242, 0.52);
  backdrop-filter: blur(8px);
}

.a43lp .service-list {
  gap: 9px;
}

.a43lp .service-list li {
  padding: 8px 12px;
  border: 1px solid rgba(39, 41, 37, 0.12);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.48);
}

.a43lp .service-list li:not(:last-child)::after {
  display: none;
}

.a43lp .paper-grid {
  border: 1px solid rgba(23, 79, 86, 0.1);
  box-shadow: 0 30px 70px rgba(71, 59, 43, 0.16);
}

.a43lp .north-card {
  background: linear-gradient(145deg, #1b5c64 0%, var(--petrol) 54%, #0d3c42 100%);
  box-shadow: 0 30px 65px rgba(18, 63, 69, 0.24);
}

.a43lp .clarity-note,
.a43lp .focus-card,
.a43lp .decision-card {
  border: 1px solid rgba(39, 41, 37, 0.08);
}

.a43lp .help-grid {
  border-radius: 30px;
  box-shadow: 0 24px 70px rgba(61, 50, 37, 0.08);
}

.a43lp .help-card {
  background: rgba(255, 250, 242, 0.78);
}

.a43lp .help-card.featured-help,
.a43lp .help-card:hover {
  background: linear-gradient(145deg, #1b5c64 0%, var(--petrol) 62%, #103f45 100%);
}

.a43lp .partnership-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(191, 212, 209, 0.12), transparent 31%),
    radial-gradient(circle at 88% 82%, rgba(201, 95, 62, 0.12), transparent 30%),
    linear-gradient(145deg, #1a5860 0%, var(--petrol) 48%, #103d43 100%);
}

.a43lp .outcomes-section {
  background:
    radial-gradient(circle at 86% 12%, rgba(201, 95, 62, 0.13), transparent 32%),
    linear-gradient(145deg, #143b40 0%, #0e2d31 100%);
}

.a43lp .about-mark {
  background:
    radial-gradient(circle at 22% 20%, rgba(191, 212, 209, 0.18), transparent 34%),
    linear-gradient(145deg, #1b5c64 0%, var(--petrol) 58%, #103e44 100%);
}

.a43lp .contact-section {
  background:
    radial-gradient(circle at 84% 20%, rgba(255, 250, 242, 0.14), transparent 30%),
    linear-gradient(135deg, #d66b49 0%, var(--terracotta) 54%, #b84e33 100%);
}

.a43lp .contact-note {
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 34px 80px rgba(96, 40, 25, 0.28);
}

.a43lp .floating-whatsapp {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(14, 62, 68, 0.92);
  box-shadow: 0 16px 38px rgba(12, 47, 51, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

@keyframes rise-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1120px) {
  .a43lp .site-header,
.a43lp .hero,
.a43lp .section {
    width: min(100% - 48px, 900px);
  }

  .a43lp .site-header {
    grid-template-columns: 1fr auto;
  }

  .a43lp .desktop-nav {
    display: none;
  }

  .a43lp .hero {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .a43lp .hero-copy {
    max-width: 790px;
  }

  .a43lp .strategy-board {
    width: min(100%, 760px);
    margin: 0 auto;
  }

  .a43lp .belief-strip {
    grid-template-columns: 1fr 2fr;
  }

  .a43lp .belief-strip a {
    grid-column: 2;
    justify-self: start;
  }

  .a43lp .section {
    padding: 110px 0;
  }

  .a43lp .section-intro {
    gap: 30px 55px;
  }

  .a43lp .partnership-section,
.a43lp .contact-section {
    padding: 105px max(24px, calc((100% - 900px) / 2));
    grid-template-columns: 1fr;
  }

  .a43lp .partnership-copy {
    order: -1;
  }

  .a43lp .partnership-copy h2,
.a43lp .partnership-copy > p:not(.section-kicker) {
    max-width: 780px;
  }

  .a43lp .partnership-visual {
    width: min(100%, 720px);
    margin: 0 auto;
  }

  .a43lp .method-section {
    grid-template-columns: 1fr;
  }

  .a43lp .method-intro {
    max-width: 740px;
  }

  .a43lp .outcomes-section,
.a43lp .about-section {
    padding-right: max(24px, calc((100% - 900px) / 2));
    padding-left: max(24px, calc((100% - 900px) / 2));
  }

  .a43lp .outcomes-heading,
.a43lp .fit-heading,
.a43lp .faq-heading {
    grid-template-columns: 1fr;
  }

  .a43lp .outcomes-heading h2,
.a43lp .fit-heading h2,
.a43lp .faq-heading h2 {
    max-width: 850px;
  }

  .a43lp .about-section {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 65px;
  }

  .a43lp .about-mark {
    min-height: 430px;
  }

  .a43lp .contact-note {
    width: min(100%, 700px);
  }

  .a43lp footer {
    padding-right: max(24px, calc((100% - 900px) / 2));
    padding-left: max(24px, calc((100% - 900px) / 2));
  }
}

@media (max-width: 660px) {
  .a43lp .site-header,
.a43lp .hero,
.a43lp .section {
    width: calc(100% - 36px);
  }

  .a43lp .site-header {
    min-height: 78px;
  }

  .a43lp .brand {
    font-size: 2.35rem;
  }

  .a43lp .header-cta {
    font-size: 0.75rem;
  }

  .a43lp .hero {
    min-height: auto;
    padding: 62px 0 55px;
  }

  .a43lp .eyebrow {
    margin-bottom: 22px;
    font-size: 0.63rem;
  }

  .a43lp .hero h1 {
    font-size: clamp(3rem, 14vw, 4.1rem);
  }

  .a43lp .hero-text {
    margin-top: 24px;
    font-size: 1rem;
  }

  .a43lp .hero-actions {
    flex-direction: column;
  }

  .a43lp .button {
    width: 100%;
    min-height: 56px;
  }

  .a43lp .service-list {
    gap: 10px 16px;
    font-size: 0.78rem;
  }

  .a43lp .service-list li:not(:last-child)::after {
    margin-left: 16px;
  }

  .a43lp .strategy-board {
    min-height: 590px;
  }

  .a43lp .north-card {
    left: 0;
    width: 76%;
    padding: 27px 24px;
  }

  .a43lp .clarity-note {
    top: 4%;
    width: 36%;
    min-height: 190px;
    padding: 23px 16px;
  }

  .a43lp .clarity-note strong {
    font-size: 1.32rem;
  }

  .a43lp .focus-card {
    right: 0;
    bottom: 8%;
    width: 63%;
    min-height: 215px;
    padding: 24px 20px;
  }

  .a43lp .focus-ring {
    bottom: 20px;
    left: 20px;
    width: 104px;
    height: 104px;
  }

  .a43lp .focus-ring::after {
    inset: 22px;
  }

  .a43lp .focus-card ul {
    top: 67px;
    right: 13px;
    font-size: 0.57rem;
  }

  .a43lp .decision-card {
    bottom: 0;
    left: 0;
    width: 58%;
    padding: 23px 20px;
  }

  .a43lp .decision-card strong {
    font-size: 1rem;
  }

  .a43lp .paper-grid {
    inset: 7% 4% 1% 4%;
  }

  .a43lp .belief-strip {
    padding: 42px 24px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .a43lp .belief-strip a {
    grid-column: auto;
  }

  .a43lp .section {
    padding: 86px 0;
  }

  .a43lp .section-intro,
.a43lp .outcomes-heading,
.a43lp .fit-heading,
.a43lp .faq-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .a43lp .section h2,
.a43lp .partnership-copy h2,
.a43lp .outcomes-heading h2,
.a43lp .about-copy h2,
.a43lp .contact-copy h2,
.a43lp .fit-heading h2,
.a43lp .faq-heading h2 {
    font-size: clamp(2.45rem, 12vw, 3.6rem);
  }

  .a43lp .section-intro > p:last-child,
.a43lp .partnership-copy > p:not(.section-kicker),
.a43lp .contact-copy > p:not(.section-kicker) {
    font-size: 0.96rem;
  }

  .a43lp .help-grid {
    margin-top: 55px;
    grid-template-columns: 1fr;
    border-radius: 18px;
  }

  .a43lp .help-card {
    min-height: 285px;
    padding: 28px 24px;
    grid-template-columns: 32px 1fr auto;
    gap: 13px;
  }

  .a43lp .mini-label {
    margin-bottom: 42px;
  }

  .a43lp .card-arrow {
    width: 34px;
    height: 34px;
  }

  .a43lp .partnership-section {
    min-height: auto;
    padding: 86px 24px;
    gap: 55px;
  }

  .a43lp .partnership-visual {
    min-height: 475px;
  }

  .a43lp .head-card,
.a43lp .shared-card {
    padding: 23px;
  }

  .a43lp .head-card-a {
    width: 68%;
    min-height: 170px;
  }

  .a43lp .head-card-b {
    width: 62%;
    min-height: 170px;
  }

  .a43lp .shared-card {
    right: 4%;
    width: 74%;
    min-height: 185px;
  }

  .a43lp .head-card strong,
.a43lp .shared-card strong {
    font-size: 1.2rem;
  }

  .a43lp .method-section {
    gap: 58px;
  }

  .a43lp .method-list li {
    min-height: 160px;
    padding: 28px 0;
    grid-template-columns: 46px 1fr;
    gap: 12px;
  }

  .a43lp .outcomes-section {
    padding: 86px 24px;
  }

  .a43lp .outcome-grid {
    margin-top: 58px;
    grid-template-columns: 1fr;
  }

  .a43lp .outcome-grid article,
.a43lp .outcome-grid article:first-child {
    min-height: auto;
    padding: 34px 0 38px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .a43lp .outcome-grid article:last-child {
    border-bottom: 0;
  }

  .a43lp .outcome-grid h3 {
    margin-top: 45px;
  }

  .a43lp .honest-note {
    margin-top: 48px;
    grid-template-columns: 1fr;
    gap: 23px;
  }

  .a43lp .honest-note p {
    font-size: 1.4rem;
  }

  .a43lp .fit-columns {
    margin-top: 55px;
    grid-template-columns: 1fr;
  }

  .a43lp .fit-card {
    padding: 30px 24px;
  }

  .a43lp .about-section {
    padding: 86px 24px;
    grid-template-columns: 1fr;
    gap: 62px;
  }

  .a43lp .about-mark {
    min-height: 330px;
    font-size: 6.2rem;
  }

  .a43lp .faq-list {
    margin-top: 55px;
  }

  .a43lp .faq-list summary {
    min-height: 82px;
    font-size: 1.14rem;
  }

  .a43lp .contact-section {
    min-height: auto;
    padding: 86px 24px;
    gap: 62px;
  }

  .a43lp .contact-button {
    width: 100%;
  }

  .a43lp .contact-note {
    min-height: 345px;
    padding: 38px 28px;
  }

  .a43lp footer {
    padding: 70px 24px 34px;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 30px;
  }

  .a43lp .footer-links {
    align-items: flex-start;
  }

  .a43lp footer > small {
    margin-top: 25px;
  }

  .a43lp .floating-whatsapp {
    right: 14px;
    bottom: 14px;
  }
}

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