:root {
  --green-950: #041c18;
  --green-925: #06251f;
  --green-900: #082f28;
  --green-850: #0b3a31;
  --green-800: #0f493d;
  --green-700: #155b4d;
  --green-600: #1d725f;
  --green-150: #dcefe6;
  --green-100: #eaf6ef;
  --green-50: #f4fbf7;
  --gold-500: #d89b24;
  --gold-600: #c08a1e;
  --gold-400: #d89b24;
  --gold-300: #d89b24;
  --gold-700: #d89b24;
  --ink: #14231f;
  --muted: #52645f;
  --white: #fff;
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --shadow-soft: 0 24px 70px rgba(0, 0, 0, 0.22);
  --shadow-card: 0 18px 45px rgba(8, 47, 40, 0.16);
  --shell: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  width: initial !important;
  overflow: auto !important;

}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: var(--green-900);
  color: var(--ink);
  line-height: 1.55;
  overflow-x: hidden;
}
body.no-scroll {
  overflow: hidden;
}
img,
video {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
button {
  cursor: pointer;
}
.shell {
  width: min(var(--shell), calc(100% - 40px));
  margin-inline: auto;
}
.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 1000;
  background: #fff;
  color: #000;
  padding: 10px 14px;
  border-radius: 10px;
}
.skip-link:focus {
  top: 16px;
}
.num {
  font-family: "Archivo Black", Inter, sans-serif;
  letter-spacing: 0.01em;
}
.section-dark {
  background: radial-gradient(
      circle at 20% 0%,
      rgba(31, 114, 95, 0.52),
      transparent 38%
    ),
    linear-gradient(145deg, var(--green-900), var(--green-950));
  color: var(--white);
  position: relative;
}
.section-light {
  background: linear-gradient(180deg, #f8fbf7, #ecf4ee);
  color: var(--ink);
  position: relative;
}
.section-light:before,
.section-dark:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 50px;
  pointer-events: none;
  z-index: 1;
}
.section-light:before {
  top: 0;
  background: linear-gradient(180deg, rgba(4, 28, 24, 0.13), transparent);
  filter: blur(10px);
}
.section-dark:after {
  bottom: -28px;
  background: linear-gradient(180deg, rgba(4, 28, 24, 0.25), transparent);
  filter: blur(14px);
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.top-trust {
  background: var(--green-950);
  color: #ddecdf;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(215, 180, 109, 0.24);
}
.top-trust__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  padding: 6px 0;
  text-align: center;
}
.top-trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}
.top-trust span:before {
  content: "✓";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(56, 154, 106, 0.2);
  color: #76d290;
  font-size: 12px;
  border: 1px solid rgba(118, 210, 144, 0.35);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(8, 47, 40, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(215, 180, 109, 0.28);
}
.site-header.is-scrolled {
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.24);
}
.site-header--single {
  position: sticky;
}
.header__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  min-width: max-content;
}
.brand img {
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.brand span {
  display: grid;
  line-height: 1;
}
.brand strong {
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #d89b24;
  font-family: 'Playfair Display', serif;
}
.brand em {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #fff;
  font-style: normal;
  margin-top: 3px;
  text-align: left;
}
.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  color: #e7f2ee;
  font-weight: 800;
  font-size: 14px;
}
.primary-nav a {
  position: relative;
  padding: 8px 0;
}
.primary-nav a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--gold-400);
  transform: scaleX(0);
  transform-origin: center;
  transition: 0.25s;
}
.primary-nav a:hover:after {
  transform: scaleX(1);
}
.btn {
  appearance: none;
  border: 0;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  min-height: 46px;
  padding: 0 22px;
  text-align: center;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn--header {
  background: linear-gradient(180deg, var(--gold-300), var(--gold-500));
  color: #fff;
  box-shadow: 0 12px 30px rgba(215, 180, 109, 0.22);
  font-size: 12px;
}
.btn--primary {
  background: linear-gradient(180deg, #1a6e4d, #14674f);
  color: #fff;

}
.btn--large {
  min-height: 58px;
  padding: 0 30px;
  font-size: 14px;
}
.btn--block {
  width: 100%;
  min-height: 58px;
}
.btn--gold {
  background: linear-gradient(180deg, var(--gold-300), var(--gold-500));
  color: var(--green-950);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.02em;
  min-height: 60px;
  padding: 0 32px;
}
.btn--gold:hover {
  background: linear-gradient(180deg, var(--gold-400), var(--gold-600));
}
.btn:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(232, 205, 142, 0.75);
  outline-offset: 3px;
}

.hero {
  min-height: calc(100svh - 116px);
  padding: 64px 0 84px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.44;
  z-index: -1;
}
.hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      90deg,
      rgba(4, 28, 24, 0.95),
      rgba(4, 28, 24, 0.74) 44%,
      rgba(4, 28, 24, 0.5)
    ),
    radial-gradient(
      circle at 70% 10%,
      rgba(215, 180, 109, 0.18),
      transparent 38%
    );
  z-index: 0;
}
.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.72fr);
  align-items: top;
  gap: 44px;
}
.hero__copy h1 {
      font-family: "Playfair Display", Georgia, serif;
    font-weight: 900;
    font-size: 40px;
    line-height: 0.96;
    letter-spacing: -0.04em;
    margin: 0px 0 12px;
    text-wrap: balance;
}
.hero__copy h1 span,
.section-copy h2 span,
.final-cta h2 span,
.section-heading h2 span {
  color: var(--gold-400);
}
.hero__sub {
      max-width: 760px;
    color: #f1deac;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 20px;
    line-height: 22px;
}
.hero__sub strong {
  color: #fff;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 900;
  color: var(--green-700);
}
.eyebrow:before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold-500);
}
.eyebrow--hero {
  color: #f3e6bd;
  background: rgba(10, 64, 53, 0.55);
  border: 1px solid rgba(232, 205, 142, 0.38);
  border-radius: 999px;
  padding: 9px 14px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}
.eyebrow--hero:before {
  display: none;
}
.video-card {
  position: relative;
  border: 2px solid rgba(232, 205, 142, 0.72);
  border-radius: 24px;
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow-soft);
}
.video-card video {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: #000;
  display: block;
}
.video-card video::-webkit-media-controls-start-playback-button {
  display: none !important;
}
.video-card video::-webkit-media-controls-enclosure {
  border-radius: 0 0 22px 22px;
}
.video-card.is-playing video::-webkit-media-controls-panel {
  background: linear-gradient(180deg, transparent, rgba(3, 28, 20, 0.92));
}
.video-player-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.video-player-overlay.is-empty {
  display: none;
}
.video-player-overlay > * {
  pointer-events: auto;
}
.video-play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 92px;
  height: 92px;
  padding: 0;
  border-radius: 50%;
  border: 2px solid rgba(232, 205, 142, 0.68);
  background: linear-gradient(180deg, #226d59, #0e493b);
  box-shadow: 0 0 0 10px rgba(215, 180, 109, 0.09),
    0 20px 50px rgba(0, 0, 0, 0.38);
  display: grid;
  place-items: center;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  animation: pulseSoft 2.8s infinite;
}
.video-play-button__icon {
  display: block;
  width: 0;
  height: 0;
  margin-left: 4px;
  border-style: solid;
  border-width: 11px 0 11px 18px;
  border-color: transparent transparent transparent var(--gold-400);
}
.video-play-button.is-hidden {
  display: none;
}
.video-card--hero {
  max-width: 680px;
  margin: 28px 0 20px;
}
.sound-button {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
  width: 92px;
  height: 92px;
  padding: 0;
  border-radius: 50%;
  border: 2px solid rgba(232, 205, 142, 0.68);
  background: linear-gradient(180deg, #226d59, #0e493b);
  box-shadow: 0 0 0 10px rgba(215, 180, 109, 0.09),
    0 20px 50px rgba(0, 0, 0, 0.38);
  color: var(--gold-400);
  display: grid;
  place-items: center;
  -webkit-appearance: none;
  appearance: none;
  animation: pulseSoft 2.8s infinite;
}
.sound-button--unmute {
  top: auto;
  bottom: 16%;
  width: auto;
  height: auto;
  min-width: 0;
  padding: 10px 18px;
  border-radius: 999px;
  animation: none;
  background: rgba(5, 28, 24, 0.88);
  border: 1px solid rgba(232, 205, 142, 0.55);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.32);
  transform: translateX(-50%);
}
.sound-button__play {
  display: block;
  width: 0;
  height: 0;
  margin-left: 4px;
  border-style: solid;
  border-width: 11px 0 11px 18px;
  border-color: transparent transparent transparent var(--gold-400);
  font-size: 0;
  line-height: 0;
}
.sound-button__text {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 13px;
  font-weight: 900;
  color: var(--gold-400);
  letter-spacing: 0.04em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.65);
}
.sound-button--unmute .sound-button__text {
  position: static;
  transform: none;
}
.sound-button.is-hidden {
  display: none;
}
@keyframes pulseSoft {
  0%,
  100% {
    box-shadow: 0 0 0 8px rgba(215, 180, 109, 0.08),
      0 20px 50px rgba(0, 0, 0, 0.38);
  }
  50% {
    box-shadow: 0 0 0 18px rgba(215, 180, 109, 0.02),
      0 20px 50px rgba(0, 0, 0, 0.38);
  }
}
.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 760px;
  margin-top: 22px;
}
.metric-row article {
  background: rgba(5, 28, 24, 0.58);
  border: 1px solid rgba(232, 205, 142, 0.28);
  border-radius: 18px;
  padding: 18px;
  display: grid;
  gap: 5px;
  min-height: 112px;
}
.metric-row strong {
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
  color: var(--gold-400);
}
.metric-row span {
  font-size: 13px;
  color: #e8f4ef;
  font-weight: 800;
}
.claim-card {
  background: linear-gradient(
    180deg,
    rgba(28, 104, 84, 0.97),
    rgba(13, 70, 59, 0.98)
  );
  /*border: 4px solid var(--gold-500);*/
  border-radius: 32px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
  color: #fff;
  align-self: start;
}
.claim-card__top {
  display: flex;
  /*align-items: flex-start;
  justify-content: space-between;*/
  gap: 18px;
  margin-bottom: 16px;
}
.claim-card__top h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.05;
  font-size: 20px;
  margin: 4px 0 0;
  letter-spacing: -0.03em;
}
.claim-card__top img {
  border-radius: 14px;
}
.mini-label {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-300);
}
.amount-panel {
  background: linear-gradient(180deg, #ecf7ef, #dceee4);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 22px;
  padding: 20px;
  margin: 18px 0;
  color: var(--green-950);
  box-shadow: inset 0 0 0 1px rgba(8, 47, 40, 0.08);
}
.amount-panel span {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 900;
  color: var(--green-700);
  margin-bottom: 4px;
}
.amount-panel strong {
  font-size: 40px;
  line-height: 1;
  color: var(--green-900);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
}
.case-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.case-item {
  background: linear-gradient(180deg, #effaf3, #ddf0e6);
  border-radius: 16px;
  padding: 14px;
  color: var(--ink);
  border: 1px solid rgba(8, 47, 40, 0.1);
}
.case-item--wide {
  grid-column: 1/-1;
}
.case-item span {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
  font-weight: 900;
  color: var(--gold-700);
  margin-bottom: 5px;
}
.case-item strong {
  font-size: 14px;
  line-height: 1.35;
}
.case-item small {
  font: inherit;
  color: #fff;
}
.lead-form {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}
.form-alert {
  display: none;
  border-radius: 12px;
  padding: 10px 12px;
  background: #fff2f0;
  color: #7b1f16;
  font-weight: 800;
  font-size: 13px;
}
.form-alert.is-visible {
  display: block;
}
.lead-form label {
  display: grid;
  gap: 7px;
}
.lead-form label span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 900;
  color: #f4e5bd;
}
.lead-form input {
  width: 100%;
  border: 1px solid rgba(8, 47, 40, 0.2);
  background: #eaf6ef;
  color: #102822;
  border-radius: 14px;
  min-height: 54px;
  padding: 0 15px;
  font-weight: 750;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}
.lead-form input::placeholder {
  color: #6e817a;
}
.lead-form input:focus {
  border-color: var(--gold-500);
  background: #f0fbf4;
  box-shadow: 0 0 0 4px rgba(215, 180, 109, 0.16);
}
.form-trust {
  display: block;
  gap: 12px;
  align-items: center;
  background: rgba(4, 28, 24, 0.38);
  border: 1px solid rgba(232, 205, 142, 0.25);
  border-radius: 16px;
  padding: 13px;
  text-align: center;
}
.form-trust-shield {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}
.form-trust > span {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #eaf6ef;
  color: #0f6a46;
  font-weight: 900;
}
.form-trust strong {
  display: block;
  color: var(--gold-300);
  font-size: 13px;
  letter-spacing: 0.08em;
}
.form-trust p {
  margin: 2px 0 0;
  color: #e6f3ed;
  font-size: 13px;
}
.secure-note {
  margin: 2px 0 0;
  text-align: center;
  color: var(--green-100);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.secure-note--light {
  color: #eaf6ef;
}

.surplus-section {
  padding: 88px 0;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}
.section-copy h2,
.section-heading h2,
.faq__intro h2,
.final-cta h2,
.case-file-card h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 42px;
  line-height: 1.04;
  margin: 0 0 18px;
  letter-spacing: -0.035em;
}
.section-copy p {
  font-size: 14px;
  color: #344841;
  margin: 0 0 18px;
}
.section-copy strong {
  color: var(--green-900);
}
.example-box {
  border-left: 5px solid var(--gold-500);
  background: #fff;
  padding: 18px 20px;
  margin: 22px 0;
  box-shadow: var(--shadow-card);
  font-size: 16px;
}
.image-frame {
  margin: 0;
  border-radius: 30px;
  border: 1px solid rgba(8, 47, 40, 0.1);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: #fff;
}
.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonials {
  padding: 92px 0 96px;
}
.section-heading {
  text-align: center;
  max-width: 870px;
  margin: 0 auto 42px;
}
.section-heading .eyebrow {
  margin-inline: auto;
}
.section-heading h2 {
  color: #fff;
}
.section-heading .eyebrow  {
  margin-bottom:15px;
  font-size: 12px;
}
.section-heading p {
  color: #dbe9e3;
  font-size: 18px;
  margin: 0;
  
}
.testimonial-stage {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-track {
  position: relative;
  width: 100%;
  height: 410px;
}
.testimonial-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(480px, 78vw);
  min-height: 360px;
  transform: translate(-50%, -50%) scale(0.78);
  opacity: 0;
  pointer-events: none;
  background: #fff;
  color: var(--ink);
  border: 3px solid var(--gold-500);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
  display: grid;
  grid-template-columns: 96px 1fr;
  grid-template-areas: "photo stars" "photo amount" "photo label" "text text" "name name";
  gap: 2px 18px;
  transition: transform 0.55s ease, opacity 0.55s ease;
}
.testimonial-card.is-center {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  z-index: 4;
  pointer-events: auto;
}
.testimonial-card.is-left {
  transform: translate(calc(-50% - 360px), -50%) scale(0.84);
  opacity: 0.46;
  z-index: 2;
}
.testimonial-card.is-right {
  transform: translate(calc(-50% + 360px), -50%) scale(0.84);
  opacity: 0.46;
  z-index: 2;
}
.testimonial-card__photo {
  grid-area: photo;
  width: 96px;
  height: 96px;
  border-radius: 24px;
  overflow: hidden;
  border: 3px solid var(--gold-400);
  align-self: start;
  background: #eef6f0;
}
.testimonial-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.stars {
  grid-area: stars;
  color: var(--gold-700);
  font-size: 18px;
  letter-spacing: 0.08em;
}
.testimonial-card__amount {
  grid-area: amount;
  font-size: 44px;
  color: var(--green-900);
  line-height: 1;
}
.recovered {
  grid-area: label;
  color: var(--gold-700);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.testimonial-card p {
  grid-area: text;
  margin: 18px 0 8px;
  color: #334943;
  font-size: 16px;
}
.testimonial-card small {
  grid-area: name;
  color: var(--green-800);
  font-weight: 900;
  letter-spacing: 0.08em;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(232, 205, 142, 0.55);
  background: rgba(5, 28, 24, 0.82);
  color: var(--gold-300);
  font-size: 36px;
  line-height: 1;
  display: grid;
  place-items: center;
}
.carousel-btn--prev {
  left: 0;
}
.carousel-btn--next {
  right: 0;
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}
.carousel-dots button {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 50%;
  background: rgba(232, 205, 142, 0.34);
  padding: 0;
}
.carousel-dots button.is-active {
  background: var(--gold-400);
  width: 24px;
  border-radius: 999px;
}
.faq {
  padding: 90px 0;
}
.faq__grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 48px;
}
.faq__intro {
  position: sticky;
  top: 120px;
  align-self: start;
}
.faq__intro p {
  color: #000;
}
.faq-list {
  display: grid;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border: 1px solid rgba(8, 47, 40, 0.1);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(8, 47, 40, 0.08);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  text-align: left;
  color: var(--green-900);
  font-weight: 900;
}
.faq-question i {
  font-style: normal;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 2px solid var(--gold-500);
  color: var(--gold-700);
  flex: 0 0 30px;
}
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}
.faq-answer > p {
  overflow: hidden;
  margin: 0;
  padding: 0 20px;
  color: #425851;
}
.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}
.faq-item.is-open .faq-answer > p {
  padding-bottom: 20px;
}
.final-cta {
  padding: 96px 0 30px;
}
.final-cta__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 850px;
}
.final-cta h2 {
  color: #fff;
  margin-bottom: 10px;
}
.subtitlecta {
    padding-bottom: 10px;
}
img.arrow-right {
    filter: invert(1);
    width: 35px;
}
.final-cta .btn--large {
  margin-top: 4px;
}
span.trust_icons_cfa {
    font-size: 25px;
}
.faq-cta__trust {
    color: #4a5e58;
    font-weight: 500;
}
span.trust_icons_cfa_bloc {
    padding-bottom: 14px;
    display: inline-block;
}
.faq-cta__trust span.trust_icons_cfa {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1.75px solid rgba(216, 155, 36, 0.55);
    background:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.25 8.25L6.5 11.5L12.75 4.75' stroke='%23d89b24' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
      no-repeat center / 12px,
      rgba(118, 210, 144, 0.28);
    vertical-align: middle;
    margin-right: 4px;
    font-size: 0;
}
.final-cta__trust span.trust_icons_cfa {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1.75px solid rgba(216, 155, 36, 0.55);
    background:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.25 8.25L6.5 11.5L12.75 4.75' stroke='%23d89b24' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
      no-repeat center / 12px,
      rgba(118, 210, 144, 0.28);
    vertical-align: middle;
    margin-right: 4px;
    font-size: 0;
}
.final-cta__trust {
  display: flex;
  justify-content: center;
  gap: 16px 40px;
  flex-wrap: wrap;
  margin: 34px 0 0;
  color: #eaf6ef;
  font-weight: 600;
  font-size: 15.5px;
  line-height: 1.45;
}
.final-cta__trust span {
  color: #eaf6ef;
}
.final-cta__trust span::first-letter {
  color: var(--gold-400);
}
a.btn.btn--primary.btn--large.hero__cta {
    margin-top: 10px;
    width: 100%;
}
.secure-note--final {
  margin: 24px 0 0;
  text-align: center;
  color: var(--gold-400);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
}
.legal-intro__dba {
  display: inline-block;
  white-space: nowrap;
}
.site-footer {
  background: var(--green-950);
  color: #dbe9e3;
  border-top: 1px solid var(--gold-500);
  padding: 28px 0 22px;
}
.footer__inner {
    display: flex;
    align-items: normal;
    justify-content: space-between;
    gap: 12px 26px;
    flex-wrap: wrap;
    text-align: center;
}
.brand--footer {
  margin-bottom: -2px;
}
.brand--footer strong {
  font-size: 20px;
}
.brand brand--footer .brand span {
    position: relative;
    top: 4px;
}
.brand--footer em {
  font-size: 13px;
}
.footer__contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 800;
  width: 100%;
}
.footer__contact a {
  color: #fff;
}
.footer__contact a:hover {
  color: var(--gold-400);
}
.footer__sep {
  color: rgba(255, 255, 255, 0.3);
  font-weight: 400;
}
.footer__legal-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px 14px;
  flex-wrap: wrap;
  font-size: 12.5px;
  font-weight: 700;
  
}
.footer__legal-links a {
  color: var(--gold-400);
}
a.phone_number_footer {
  color: var(--gold-400);
}
.footer__legal-links a:hover {
  color: #fff;
}
.footer__dba {
  margin: 0;
  color: #7a9a8e;
  font-size: 11px;
  font-weight: 600;
  width: 100%;
}
.site-footer small {
    font-size: 12px;
    color: #fff;
    text-align: center;
    width: 100%;
}
.back-top {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 80;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(232, 205, 142, 0.5);
  background: rgba(5, 28, 24, 0.92);
  color: var(--gold-400);
  font-size: 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: 0.25s;
}
.back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.chat-widget {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
}
@keyframes chatLauncherPulse {
  0%, 100% {
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32), 0 0 0 0 rgba(216, 155, 36, 0.32);
  }
  50% {
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32), 0 0 0 10px rgba(216, 155, 36, 0);
  }
}
.chat-toggle {
  position: relative;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  border: 3px solid var(--gold-400);
  background: linear-gradient(180deg, #196d59, #0a3d33);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
  font-size: 0;
  line-height: 1;
  display: grid;
  place-items: center;
  color: #fff;
  transition: transform 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease;
  animation: chatLauncherPulse 3.2s ease-in-out infinite;
}
.chat-toggle::after {
  content: "";
  position: absolute;
  top: 5px;
  right: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #2d8a62;
  border: 2px solid #fff;
  box-shadow: 0 0 10px rgba(45, 138, 98, 0.55);
}
.chat-toggle:hover {
  transform: scale(1.06);
  filter: brightness(1.08);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.36), 0 0 24px rgba(216, 155, 36, 0.22);
  animation: none;
}
.chat-toggle__icon {
  width: 28px;
  height: 28px;
  display: block;
}
.chat-panel {
  position: absolute;
  right: 0;
  bottom: 88px;
  display: flex;
  flex-direction: column;
  width: 340px;
  height: 560px;
  max-height: 560px;
  background: #fff;
  border-radius: 20px;
  border: 3px solid #d4af77;
  outline: 1px solid rgba(212, 175, 119, 0.55);
  outline-offset: 3px;
  box-shadow:
    0 12px 48px rgba(0, 0, 0, 0.18),
    0 4px 12px rgba(0, 0, 0, 0.08),
    0 0 44px rgba(212, 175, 119, 0.22);
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  pointer-events: none;
  transition: opacity 0.22s, transform 0.22s;
}
.chat-panel.is-open {
  opacity: 1;
  transform: none;
  pointer-events: auto;
  animation: chatSlideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes chatSlideIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.chat-head {
  background: linear-gradient(135deg, #0a3d33, #082820);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 14px 14px 6px;
  border-bottom: 2px solid rgba(212, 175, 119, 0.2);
}
.chat-head-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.chat-head-logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}
.chat-head-logo .ch-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.chat-head-logo .ch-brand {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #fff;
}
.chat-head-logo .ch-sub {
  display: block;
  font-family: Inter, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #d4af77;
  margin-top: 1px;
}
.chat-head button {
  border: 0;
  background: rgba(212, 175, 119, 0.1);
  color: #d4af77;
  font-size: 16px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}
.chat-head button:hover {
  background: rgba(212, 175, 119, 0.2);
  color: #e8c99b;
}
.chat-body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding: 16px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.chat-body::-webkit-scrollbar {
  width: 4px;
}
.chat-body::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 119, 0.15);
  border-radius: 4px;
}
.chat-msg {
  background: #f6fbf8;
  border: 2px solid #0c4338;
  border-radius: 18px 18px 18px 6px;
  padding: 11px 15px;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 500;
  color: #1a3d35;
  max-width: 88%;
}
.chat-msg strong {
  color: #0c4338;
  font-weight: 700;
}
.chat-msg:not(.is-user) {
  align-self: flex-start;
}
.chat-msg.is-user {
  background: linear-gradient(135deg, #d4af77, #b8932a);
  border: 1px solid #d4af77;
  border-radius: 18px 18px 6px 18px;
  align-self: flex-end;
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}
.chat-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  padding: 10px 12px;
  background: #f6fbf8;
  border-radius: 14px;
  border: 1px solid rgba(12, 67, 56, 0.14);
  font-size: 11.5px;
  font-weight: 700;
  color: #0c4338;
  line-height: 1.45;
}
.chat-trust span:last-child::first-letter {
  color: #d4af77;
}
.chat-actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-shrink: 0;
  padding: 8px 16px 12px;
  background: #fff;
}
.chat-actions button {
  width: 100%;
  background: #0c4338;
  border: 1px solid #0c4338;
  border-radius: 20px;
  padding: 11px 16px;
  min-height: 0;
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
.chat-actions button:hover {
  background: #0a3d33;
  border-color: #d4af77;
  color: #fff;
  box-shadow: 0 0 16px rgba(212, 175, 119, 0.15);
}
.chat-form {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  padding: 12px;
  background: #fff;
  border-top: 1px solid rgba(12, 67, 56, 0.12);
  align-items: center;
}
.chat-form input {
  flex: 1;
  min-width: 0;
  min-height: 0;
  margin: 0;
  padding: 10px 16px;
  border: 1.5px solid #0c4338;
  border-radius: 22px;
  background: #fff;
  color: #1a3d35;
  font-size: 14px;
  font-weight: 500;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.chat-form input::placeholder {
  color: rgba(26, 61, 53, 0.45);
}
.chat-form button {
  position: static;
  right: auto;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border: 2px solid #d4af77;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8c99b, #d4af77 50%, #b8932a);
  color: #0a3d33;
  font-size: 16px;
  line-height: 1;
  box-shadow: 0 3px 10px rgba(212, 175, 119, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.chat-form button:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 14px rgba(212, 175, 119, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  filter: none;
}
.chat-form input:focus,
.chat-form input:focus-visible {
  border-color: #d4af77;
  outline: none;
  box-shadow: 0 0 0 3px rgba(212, 175, 119, 0.18);
  background: #fff;
}
.chat-form button:active,
.chat-form button:focus-visible {
  transform: scale(0.92);
  border-color: #d4af77;
  color: #0a3d33;
}
img.chatbot_img {
    filter: invert(1);
    height: 32px;
}
.chat-form input:focus-visible {
    outline: none;
}

.hero--p2 {
  padding: 74px 0 82px;
}
.p2-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(350px, 0.74fr);
  gap: 48px;
  align-items: center;
}
.p2-copy h1 {
  margin: 18px 0 18px;
}
.p2-copy h1 span {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 40px;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.04em;
}
.p2-copy h1 strong {
  display: block;
  font-family: "Archivo Black", Inter, sans-serif;
  color: var(--gold-400);
  font-size: 40px;
  line-height: 0.92;
  letter-spacing: -0.04em;
  max-width: 800px;
}
.p2-review {
  font-weight: 900;
  color: #fff;
  margin: 6px 0;
}
.p2-desc {
  color: #d5eee4;
  font-size: 14px;
  margin: 0 0 12px;
}

/* ============================================================
   AGREEMENT REVIEW SECTION — Page 2 (mockup-matched)
   ============================================================ */
.agreement-review {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  z-index: 2;
  border-top: 3px solid var(--gold-500);
  border-bottom: 3px solid var(--gold-500);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 0 1px rgba(216, 155, 36, 0.18);
}
.agreement-review__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(680px, 72vh, 920px);
  border-left: 3px solid var(--gold-500);
  border-right: 3px solid var(--gold-500);
}

/* LEFT SIDE — cream */
.agreement-review__left {
  background: #f5f2ec;
  padding: clamp(48px, 5vw, 72px) clamp(24px, 3.5vw, 52px) clamp(32px, 4vw, 48px);
  /*display: flex;*/
  flex-direction: column;
  justify-content: flex-start;
  border-right: 3px solid var(--gold-500);
  min-height: 100%;
}

/* Labeled divider with gold lines */
.agreement-review__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 20px;
}
.agreement-review__label span {
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: var(--gold-500);
}
.agreement-review__label--light {
  color: var(--gold-300);
}
.agreement-review__label--light span {
  background: var(--gold-400);
  opacity: 0.45;
}

/* Headline */
.agreement-review__headline {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--green-950);
  margin: 0 0 18px;
}

/* Body copy */
.agreement-review__body {
  font-size: 16px;
  line-height: 1.6;
  color: #1a3d35;
  margin: 0 0 14px;
}
.agreement-review__body strong {
  color: var(--gold-600);
  font-weight: 800;
}

/* Gold statement */
.agreement-review__gold-line {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 700;
  
  color: var(--gold-600);
  line-height: 1.35;
  margin: 0 0 clamp(20px, 3vw, 32px);
}

/* Agreement image — large, dominant visual */
.agreement-review__img-wrap {
  flex: 1 1 auto;
  display: flex;
  align-items: flex-end;
  justify-content: stretch;
  width: 100%;
  min-height: clamp(320px, 44vh, 520px);
  margin-top: auto;
  padding-top: 4px;
}
.agreement-review__img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 303px;
    max-height: min(68vh, 640px);
    min-height: clamp(300px, 42vh, 500px);
    object-fit: contain;
    object-position: bottom center;
    border-radius: 18px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.24), 0 12px 32px rgba(8, 47, 40, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.45);
    border: 2px solid rgb(216 155 36);
    object-fit: cover;
}

/* RIGHT SIDE — dark green */
.agreement-review__right {
  background: linear-gradient(180deg, #0d4c3f, #073025);
  padding: clamp(40px, 5vw, 72px) clamp(24px, 3.5vw, 52px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}

/* Trust points */
.agreement-review__points {
  display: grid;
  gap: 0;
  margin-bottom: 28px;
}
.agreement-review__point {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(216, 155, 36, 0.18);
}
.agreement-review__point:first-child {
  padding-top: 0;
}
.agreement-review__point:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.agreement-review__icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(216, 155, 36, 0.14);
  border: 1.5px solid rgba(216, 155, 36, 0.5);
  display: grid;
  place-items: center;
  color: var(--gold-400);
}
.agreement-review__icon svg {
  width: 22px;
  height: 22px;
}
.agreement-review__point strong {
  display: block;
  font-size: 15px;
  font-weight: 850;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.25;
}
.agreement-review__point p {
  font-size: 14px;
  line-height: 1.5;
  color: #c5ddd4;
  margin: 0;
  font-weight: 600;
}

/* Trust card */
.agreement-review__trust-card {
  background: #fffdf8;
  border-radius: 18px;
  padding: clamp(22px, 3vw, 32px);
  text-align: center;
  border: 1px solid rgba(216, 155, 36, 0.3);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
  margin-bottom: 24px;
  color: var(--green-950);
}
.agreement-review__trust-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin: 0 0 6px;
}
.agreement-review__trust-amount {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 900;
  
  color: var(--gold-600);
  line-height: 1.15;
  margin: 0 0 2px;
}
.agreement-review__trust-sub {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 800;
  color: var(--green-950);
  /* margin: 0 0 14px; */
}
.agreement-review__clover {
  display: block;
  margin: 0 auto 12px;
  opacity: 0.65;
}
.agreement-review__before-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin: 0 0 8px;
}
.agreement-review__before-copy {
  font-size: 13px;
  line-height: 1.5;
  color: #3a5a4e;
  margin: 0;
}

/* Agreement review responsive */
@media (max-width: 900px) {
  .agreement-review__grid {
    grid-template-columns: 1fr;
    min-height: auto;
    border-left: 0;
    border-right: 0;
  }
  .design-casefile .amount-panel strong {
    text-shadow: none !important;
  }
  .agreement-review {
    border-left: 3px solid var(--gold-500);
    border-right: 3px solid var(--gold-500);
  }
  .agreement-review__left {
    border-right: 0;
    border-bottom: 3px solid var(--gold-500);
  }
  .agreement-review__img-wrap {
    min-height: clamp(260px, 52vw, 380px);
  }
  .agreement-review__img {
    max-height: min(52vh, 440px);
    min-height: clamp(220px, 48vw, 340px);
  }
}
@media (max-width: 640px) {
  .agreement-review__left,
  .agreement-review__right {
    padding: 36px 18px;
  }
  .agreement-review__headline {
    font-size: 26px;
  }
  .agreement-review__img-wrap {
    min-height: clamp(220px, 58vw, 320px);
  }
  .agreement-review__img {
    max-height: 380px;
    min-height: 200px;
    border-radius: 14px;
  }
  .agreement-review__icon {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
  }
  .agreement-review__icon svg {
    width: 18px;
    height: 18px;
  }
}

.p2-details {
  padding: 82px 0;
}
.p2-details__grid {
  display: grid;
  grid-template-columns: 1fr 0.58fr;
  gap: 28px;
  align-items: start;
}
.case-file-card,
.authorize-card {
  background: #fff;
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(8, 47, 40, 0.08);
}
.record-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}
.record-list div {
  background: #104c40;
  border-radius: 16px;
  padding: 15px;
  border: 1px solid rgba(8, 47, 40, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 18px;
}
.record-list span,
.authorize-card > span {
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 12px;
  font-weight: 900;
  color: var(--gold-700);
}
.record-list strong {
  color: var(--green-900);
  text-align: right;
}

body.page-p2 .record-list strong:not(.num) {
  color: #fff;
}
.authorize-card {
  background: linear-gradient(180deg, var(--green-800), var(--green-900));
  color: #fff;
  border: 3px solid var(--gold-500);
  position: sticky;
  top: 118px;
}
.authorize-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 32px;
  line-height: 1.06;
  margin: 10px 0 18px;
}
.authorize-card ul {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 12px;
}
.authorize-card li {
  display: flex;
  gap: 10px;
  color: #eef8f3;
  font-weight: 750;
}
.authorize-card li:before {
  content: "✓";
  color: var(--gold-400);
  font-weight: 900;
}
.authorize-card li strong {
  color: var(--gold-300);
}
.agreement-overlay,
.signature-modal,
.sfg-error-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(2, 13, 11, 0.75);
  backdrop-filter: blur(10px);
  display: none;
}
.agreement-overlay.is-open,
.signature-modal.is-open,
.sfg-error-modal.is-open {
  display: block;
}
.agreement-shell {
  height: 100svh;
  width: min(1100px, 100%);
  margin: 0 auto;
  background: #f3f7f4;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.45);
}
.agreement-toolbar {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: var(--green-900);
  color: #fff;
  border-bottom: 1px solid var(--gold-500);
}
.agreement-toolbar__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.agreement-toolbar__brand img {
  border-radius: 12px;
}
.agreement-toolbar__brand strong {
  display: block;
}
.agreement-toolbar__brand span {
  display: block;
  color: var(--gold-300);
  font-size: 12px;
}
.agreement-close,
.signature-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(232, 205, 142, 0.44);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 26px;
}
.agreement-instruction {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: #fff7e3;
  color: var(--green-900);
  padding: 12px 16px;
  text-align: center;
  border-bottom: 1px solid rgba(215, 180, 109, 0.38);
}
.arrow-down {
  color: #db812f;
  font-size: 30px;
  line-height: 1;
  animation: bounceDown 1.3s infinite;
}
.agreement-scroll {
  overflow: auto;
  padding: 28px 18px;
  flex: 1;
}
.agreement-doc {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  border-radius: 22px;
  border: 1px solid #d9e4de;
  box-shadow: 0 16px 40px rgba(8, 47, 40, 0.12);
  padding: 44px;
  color: #1f2e2a;
}
.agreement-doc__head {
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 2px solid var(--gold-500);
  padding-bottom: 14px;
  margin-bottom: 24px;
}
.agreement-doc__head img {
  border-radius: 14px;
}
.agreement-doc__head strong {
  display: block;
  color: var(--green-900);
  letter-spacing: 0.1em;
}
.agreement-doc__head span {
  display: block;
  color: #64766f;
  font-size: 13px;
}
.agreement-doc h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 42px;
  line-height: 1.05;
  margin: 0 0 14px;
  color: var(--green-900);
}
.agreement-intro {
  font-size: 15px;
  color: #465851;
}
.agreement-client-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  background: #eef7f2;
  border: 1px solid #cee4d8;
  border-radius: 18px;
  padding: 14px;
  margin: 22px 0;
}
.agreement-client-box div {
  background: #fff;
  border-radius: 12px;
  padding: 12px;
}
.agreement-client-box span {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 900;
  color: var(--gold-700);
  font-size: 11px;
}
.agreement-client-box strong {
  display: block;
  color: var(--green-900);
  margin-top: 3px;
}
.agreement-section {
  display: grid;
  gap: 6px;
  border-top: 1px solid #e1ebe5;
  padding-top: 16px;
  margin-top: 16px;
}
.agreement-section strong {
  font-size: 18px;
  color: var(--green-900);
}
.signature-area {
  margin-top: 34px;
  padding: 46px 18px 18px;
  border: 2px dashed rgba(215, 180, 109, 0.65);
  border-radius: 20px;
  position: relative;
  text-align: center;
  background: #fffef9;
}
.signature-guides {
  position: absolute;
  top: 8px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 110px;
  color: #db812f;
  font-size: 34px;
  animation: bounceDown 1.3s infinite;
}
.signature-line {
  height: 72px;
  border-bottom: 2px solid #1d2b27;
  max-width: 560px;
  margin: 0 auto 8px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.signature-output {
  font-family: "Great Vibes", cursive;
  font-size: 54px;
  line-height: 0.75;
  color: #0e2d26;
  transform: translateY(18px);
}
.sign-here {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -42%);
  border: 0;
  border-radius: 12px;
  background: linear-gradient(180deg, #f0a34a, #d56f20);
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.1em;
  padding: 14px 24px;
  box-shadow: 0 14px 30px rgba(213, 111, 32, 0.32);
  animation: signGlow 1.8s infinite;
}
.signature-area.is-signed .sign-here,
.signature-area.is-signed .signature-guides {
  display: none;
}
.signature-area small {
  display: block;
  color: #52645f;
  font-weight: 800;
}
.submit-area {
  flex: 0 0 auto;
  padding: 14px 18px;
  background: var(--green-950);
  border-top: 1px solid rgba(215, 180, 109, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  color: #fff;
}
.submit-area[hidden] {
  display: none;
}
.submit-arrow {
  font-size: 34px;
  color: #db812f;
  letter-spacing: -0.18em;
  animation: pulseArrow 1.2s infinite;
}
.submit-arrow--left {
  letter-spacing: -0.18em;
}
.submit-area p {
  width: 100%;
  text-align: center;
  margin: 0;
  color: #f4e5bd;
  font-size: 13px;
}
.signature-modal,
.sfg-error-modal {
  display: none;
  place-items: center;
  padding: 18px;
}
.signature-modal.is-open,
.sfg-error-modal.is-open {
  display: grid;
}
.signature-card,
.sfg-error-card {
  width: min(520px, 100%);
  background: #fff;
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  position: relative;
}
.signature-card .signature-close,
.sfg-error-card .signature-close {
  position: absolute;
  right: 16px;
  top: 16px;
  background: var(--green-900);
}
.signature-card h2,
.sfg-error-card h2 {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--green-900);
  font-size: 36px;
  line-height: 1.05;
  margin: 0 44px 10px 0;
}
.signature-input-label {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}
.signature-input-label span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 900;
  color: var(--gold-700);
}
.signature-input-label input {
  height: 54px;
  border-radius: 14px;
  border: 1px solid #c8d8d1;
  padding: 0 14px;
  font-weight: 800;
}
.signature-preview {
  height: 120px;
  border: 1px solid #dce6e1;
  border-radius: 18px;
  background: #fbfffc;
  margin: 16px 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 8px;
  font-family: "Great Vibes", cursive;
  font-size: 54px;
  color: var(--green-900);
}
.signature-consent {
  font-size: 13px;
  color: #566963;
  margin: 14px 0 0;
}
.sfg-error-card p {
  color: #52645f;
}
@keyframes bounceDown {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(7px);
  }
}
@keyframes signGlow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(240, 163, 74, 0.26),
      0 14px 30px rgba(213, 111, 32, 0.32);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(240, 163, 74, 0.08),
      0 14px 30px rgba(213, 111, 32, 0.32);
  }
}
@keyframes pulseArrow {
  0%,
  100% {
    opacity: 0.7;
    transform: translateX(0);
  }
  50% {
    opacity: 1;
    transform: translateX(5px);
  }
}

.legal-main {
  padding: 70px 0;
  background: linear-gradient(180deg, #f8fbf7, #edf5ef);
}
.legal-card {
  max-width: 960px;
  margin: 0 auto;
  background: #fff;
  border-radius: 28px;
  border: 1px solid rgba(8, 47, 40, 0.1);
  box-shadow: var(--shadow-card);
  padding: 42px;
}
.legal-card h1 {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--green-900);
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.05;
  margin: 0 0 10px;
}
.legal-card h2 {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--green-900);
  font-size: 30px;
  margin: 30px 0 8px;
}
.legal-card p,
.legal-card li {
  color: #425851;
}
.dba-note {
  color: var(--gold-700);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.attorney-card h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  margin: 4px 0 8px;
  color: #fff;
}
.legal-card {
  line-height: 1.65;
}
.legal-card p + p {
  margin-top: 12px;
}
.attorney-card {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  align-items: center;
  background: linear-gradient(180deg, var(--green-800), var(--green-900));
  color: #fff;
  border-radius: 22px;
  padding: 20px;
  margin-top: 24px;
}
.attorney-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold-400);
  color: var(--green-900);
  font-family: "Archivo Black";
  font-size: 32px;
}
.attorney-card a {
  color: var(--gold-300);
  font-weight: 800;
}

@media (max-width: 1100px) {
  .primary-nav {
    gap: 18px;
  }
  .hero__grid,
  .p2-grid {
    grid-template-columns: 1fr;
  }
  .claim-card {
    max-width: 720px;
    width: 100%;
    margin-inline: auto;
  }
  .video-card--hero {
    max-width: 720px;
  }
  .faq__grid,
  .p2-details__grid {
    grid-template-columns: 1fr;
  }
  .faq__intro,
  .authorize-card {
    position: static;
  }
  .testimonial-card.is-left {
    transform: translate(calc(-50% - 300px), -50%) scale(0.82);
  }
  .testimonial-card.is-right {
    transform: translate(calc(-50% + 300px), -50%) scale(0.82);
  }
}
@media (max-width: 780px) {
  .shell {
    width: min(100% - 28px, var(--shell));
  }
  .top-trust__inner {
    justify-content: flex-start;
    overflow: auto;
    flex-wrap: nowrap;
    padding: 8px 0;
  }
  .top-trust span {
    font-size: 12px;
  }
  .header__inner {
    min-height: 68px;
  }
  .primary-nav {
    display: none;
  }
  .brand strong {
    font-size: 14px;
  }
  .brand em {
    font-size: 10px;
  }
  .btn--header {
    padding: 0 14px;
    min-height: 42px;
    font-size: 11px;
  }
  .hero,
  .hero--p2 {
    padding: 36px 0 58px;
    min-height: auto;
  }
  .hero__shade {
    background: linear-gradient(
      180deg,
      rgba(4, 28, 24, 0.9),
      rgba(4, 28, 24, 0.82)
    );
  }
  .hero__copy h1 {
    font-size: 40px;
    line-height: 1.02;
  }
  .p2-copy h1 span {
    font-size: clamp(32px, 10vw, 46px);
  }
  .p2-copy h1 strong {
    font-size: clamp(38px, 12vw, 58px);
  }
  .hero__sub {
    font-size: 16px;
  }
  .eyebrow--hero {
    font-size: 10px;
    letter-spacing: 0.08em;
  }
  .video-card {
    border-radius: 18px;
  }
  .video-play-button {
    width: 72px;
    height: 72px;
  }
  .video-play-button__icon {
    border-width: 9px 0 9px 15px;
  }
  .sound-button {
    width: 72px;
    height: 72px;
  }
  .sound-button__play {
    border-width: 9px 0 9px 15px;
  }
  .sound-button--unmute {
    width: auto;
    height: auto;
    padding: 9px 16px;
  }
  .metric-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .metric-row article {
    min-height: 0;
    padding: 14px;
  }
  .claim-card {
    padding: 18px;
    border-width: 3px;
    border-radius: 24px;
  }
  .claim-card__top h2 {
    font-size: 20px;
  }
  .amount-panel strong {
    font-size: 40px;
  }
  .case-list {
    grid-template-columns: 1fr;
  }
  .surplus-section,
  .testimonials,
  .faq,
  .final-cta,
  .p2-details {
    padding: 58px 0;
  }
  .split {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .image-frame {
    order: -1;
  }
  .section-copy h2,
  .section-heading h2,
  .faq__intro h2,
  .final-cta h2,
  .case-file-card h2 {
    font-size: 30px;
  }
  .testimonial-stage {
    min-height: 300px;
  }
  .testimonial-track {
    height: 470px;
  }
  .testimonial-card {
    width: calc(100vw - 54px);
        grid-template-columns: 130px 1fr;
        padding: 18px;
        min-height: 280px;
  }
  .testimonial-card.is-left,
  .testimonial-card.is-right {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.92);
  }
  .testimonial-card__photo {
    width: 130px;
    height: 130px;
    border-radius: 18px;
  }
  .testimonial-card__amount {
    font-size: 36px;
  }
  .carousel-btn {
    top: auto;
    bottom: -10px;
  }
  .carousel-btn--prev {
    left: calc(50% - 60px);
  }
  .carousel-btn--next {
    right: calc(50% - 60px);
  }
  .faq-question {
    padding: 16px;
  }
  .footer__inner {
    display: grid;
  }
  .back-top {
    left: 14px;
    bottom: 14px;
  }
  .chat-widget {
    right: 14px;
    bottom: 14px;
  }
  .chat-toggle {
    width: 60px;
    height: 60px;
  }
  .chat-toggle__icon {
    width: 26px;
    height: 26px;
  }
  .chat-panel {
    bottom: 96px;
    width: calc(100vw - 28px);
    max-width: 360px;
    height: 560px;
    max-height: 560px;
  }
  .chat-body {
    padding: 14px;
  }
  .chat-msg {
    max-width: 92%;
    font-size: 14px;
    padding: 10px 14px;
  }
  .chat-actions {
    padding: 8px 14px 14px;
    gap: 8px;
  }
  .chat-actions button {
    font-size: 13px;
    padding: 11px 14px;
  }
  .chat-form {
    padding: 10px 14px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  }
  .chat-form input {
    font-size: 16px;
    padding: 10px 14px;
  }
  .chat-head-logo img {
    width: 36px;
    height: 36px;
  }
  .chat-head-logo .ch-brand {
    font-size: 15px;
    letter-spacing: 1.2px;
  }
  .chat-head-logo .ch-sub {
    font-size: 9px;
    letter-spacing: 2.8px;
  }
  .record-list div {
    display: grid;
  }
  .record-list strong {
    text-align: left;
  }
  .agreement-doc {
    padding: 24px 18px;
    border-radius: 18px;
  }
  .agreement-doc h1 {
    font-size: 32px;
  }
  .agreement-client-box {
    grid-template-columns: 1fr;
  }
  .agreement-toolbar__brand span {
    display: none;
  }
  .agreement-instruction {
    font-size: 13px;
  }
  .signature-guides {
    gap: 70px;
  }
  .signature-output {
    font-size: 44px;
  }
  .submit-area {
    gap: 8px;
  }
  .submit-arrow {
    display: none;
  }
  .signature-card,
  .sfg-error-card {
    padding: 24px 18px;
  }
  .attorney-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .attorney-avatar {
    margin-inline: auto;
  }
  .legal-card {
    padding: 28px 20px;
    border-radius: 22px;
  }
}
@media (max-width: 420px) {
  .btn--large,
  .btn--block {
    min-height: 54px;
    font-size: 12px;
    padding-inline: 18px;
  }
  .claim-card__top {
    align-items: center;
  }
  .claim-card__top img {
    width: 42px;
    height: 42px;
  }
  .amount-panel {
    padding: 16px;
  }
  .amount-panel strong {
    font-size: 40px;
  }
  .section-copy h2,
  .section-heading h2,
  .faq__intro h2,
  .final-cta h2,
  .case-file-card h2 {
    font-size: 30px;
  }
  .testimonial-card {
        min-height: 280px;
  }
  .testimonial-card p {
    font-size: 15px;
  }
  .agreement-scroll {
    padding: 16px 10px;
  }
  .agreement-doc__head {
    align-items: flex-start;
  }
  .signature-line {
    height: 64px;
  }
  .sign-here {
    padding: 12px 18px;
  }
}

/* --------------------------------------------------------------------------
   Global Design Direction Polish
   Premium legal/financial case-file styling, softer transitions, stronger
   green hierarchy, controlled gold accents, and consistent number treatment.
   -------------------------------------------------------------------------- */
:root {
  --green-975: #031612;
  --green-card: #0f5a49;
  --green-card-2: #124f42;
  --green-field: #e4f3ea;
  --gold-ring: rgba(232, 205, 142, 0.72);
  --gold-soft: rgba(232, 205, 142, 0.18);
  --case-border: rgba(232, 205, 142, 0.56);
}

body.design-casefile {
 /* background:
    radial-gradient(circle at 18% -10%, rgba(29, 114, 95, 0.32), transparent 34%),
    linear-gradient(180deg, var(--green-950), var(--green-900) 40%, var(--green-975));*/
}

.design-casefile .section-dark {
  background:
    radial-gradient(circle at 18% 4%, rgba(29, 114, 95, 0.44), transparent 34%),
    radial-gradient(circle at 82% 14%, rgba(215, 180, 109, 0.14), transparent 30%),
    linear-gradient(145deg, var(--green-900) 0%, var(--green-950) 72%, var(--green-975) 100%);
}

.design-casefile .section-light {
  background:
    linear-gradient(180deg, rgba(232, 205, 142, 0.08), transparent 110px),
    linear-gradient(180deg, #fbfdf9 0%, #eef6f0 100%);
}

/* Surplus stays light; transition merges into testimonials (no seam) */
.design-casefile .surplus-section.section-light:has(+ .testimonials) {
  overflow: hidden;
  padding-bottom: 88px;
  background:
    linear-gradient(180deg, rgba(232, 205, 142, 0.08), transparent 110px),
    linear-gradient(180deg, #fbfdf9 0%, #eef6f0 100%);
}

/*.design-casefile .surplus-section + .testimonials.section-dark {
  margin-top: -56px;
  padding-top: clamp(128px, 16vw, 176px);
  background:
    radial-gradient(circle at 50% 0%, rgba(215, 180, 109, 0.1), transparent 38%),
    linear-gradient(
      180deg,
      #fbfdf9 0%,
      #eef6f0 8%,
      #e8eae0 16%,
      #c5d4cc 24%,
      #a8b5a4 34%,
      #6d948a 44%,
      #4a7268 54%,
      #2f5d4d 64%,
      #1a4a3d 74%,
      var(--green-900) 86%,
      var(--green-950) 94%,
      var(--green-975) 100%
    );*/
}

.design-casefile .testimonials .section-heading,
.design-casefile .testimonials .testimonial-stage,
.design-casefile .testimonials .carousel-dots {
  position: relative;
  z-index: 2;
}

/* Dark → light: soft fade at bottom of dark section (no blur) */
/*.design-casefile .section-dark:has(+ .section-light)::after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 200px;
  background: linear-gradient(
    to top,
    #eef6f0 0%,
    rgba(238, 246, 240, 0.92) 20%,
    rgba(238, 246, 240, 0.65) 45%,
    rgba(238, 246, 240, 0.28) 70%,
    transparent 100%
  );
  filter: none;
  opacity: 1;
  z-index: 2;
  pointer-events: none;
}*/

.design-casefile .top-trust {
  background: linear-gradient(180deg, var(--green-975), var(--green-950));
  border-bottom: 1px solid rgba(232, 205, 142, 0.34);
}

.design-casefile .top-trust span::before {
  background: #135949;
    border-color: #135949;
    color: #fff;
}

.design-casefile .site-header {
  background: rgba(5, 32, 27, 0.92);
  border-bottom: 1px solid rgba(232, 205, 142, 0.42);
  box-shadow: 0 1px 0 rgba(232, 205, 142, 0.18), 0 18px 42px rgba(0, 0, 0, 0.18);
}

.design-casefile .site-header::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(100% - 40px, var(--shell));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(232, 205, 142, 0.82), transparent);
  pointer-events: none;
}

.design-casefile .brand img {
  
  background: rgba(232, 205, 142, 0.06);
}

.design-casefile .primary-nav {
  gap: clamp(18px, 3vw, 38px);
}

.design-casefile .primary-nav a {
  color: #edf7f2;
}

.design-casefile .btn--header {
  background: #d89b24;
  color: #fff;
  /*border: 1px solid rgba(255, 255, 255, 0.28);*/
}

.design-casefile .btn--primary {
  background: #d89b24;
}

.design-casefile .btn--primary:hover {
  background: #d89b24;
}

.design-casefile .hero {
  isolation: isolate;
}

.design-casefile .hero::before {
  content: "";
  position: absolute;
  inset: 18px;
  /*border: 1px solid rgba(232, 205, 142, 0.13);*/
  border-radius: 34px;
  pointer-events: none;
  z-index: 1;
}

.design-casefile .hero__bg {
  opacity: 0.52;
}

.design-casefile .hero__shade {
  background: linear-gradient(90deg, rgb(4 28 24 / 15%), rgb(4 28 24 / 34%) 48%, rgb(4 28 24 / 4%)), radial-gradient(circle at 72% 10%, rgba(215, 180, 109, 0.19), transparent 35%);
}

.design-casefile .hero__grid,
.design-casefile .p2-grid {
  align-items: start;
}

.design-casefile .hero__copy h1 {
   font-size: 48px;
  line-height: 0.98;
  letter-spacing: -0.045em;
  max-width: 760px;
}

.design-casefile .hero__copy h1 span,
.design-casefile .p2-copy h1 strong,
.design-casefile .section-copy h2 span,
.design-casefile .section-heading h2 span,
.design-casefile .final-cta h2 span {
  color: #d89b24;
  text-shadow: 0 2px 20px rgba(215, 180, 109, 0.14);
}

.design-casefile .hero__sub {
  color: var(--gold-300);
  max-width: 720px;
  font-size: 15px;
  line-height: 22px;
  font-weight: 500;
}

.design-casefile .hero__sub strong {
  color: var(--gold-300);
}

.design-casefile .eyebrow--hero {
  color: #fff;
  background: linear-gradient(180deg, rgba(18, 87, 71, 0.78), rgba(7, 45, 38, 0.72));
  border-color: rgba(232, 205, 142, 0.62);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06), 0 10px 26px rgba(0,0,0,0.16);
}

.design-casefile .video-card {
  border: 2px solid var(--gold-ring);
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(255,255,255,0.05) inset;
}

.design-casefile .video-card--hero {
  margin-top: 22px;
}

.design-casefile .metric-row article {
  background: linear-gradient(180deg, rgba(18, 86, 71, 0.82), rgba(6, 40, 34, 0.82));
  border: 1px solid rgba(232, 205, 142, 0.42);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 16px 38px rgba(0,0,0,0.18);
}

.design-casefile .num {
  font-family: "Archivo Black", Inter, sans-serif;
  font-variant-numeric: tabular-nums lining-nums;
  letter-spacing: -0.015em;
}

.design-casefile .metric-row strong,
.design-casefile .testimonial-card__amount,
.design-casefile .record-list .num {
  color: var(--gold-400);
  text-shadow: 0 2px 18px rgba(215, 180, 109, 0.16);
}

.design-casefile .claim-card,
.design-casefile .p2-summary {
  background:
    linear-gradient(180deg, rgba(20, 91, 75, 0.98), rgba(9, 58, 49, 0.99)),
    var(--green-card);
  border: 3px solid var(--case-border);
  box-shadow: 0 30px 82px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255,255,255,0.08);
}

.design-casefile .claim-card__top {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(232, 205, 142, 0.22);
}

.design-casefile .amount-panel {
  background: linear-gradient(180deg, #0d4c3f, #08362e);
  border: 1px solid rgba(232, 205, 142, 0.52);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.07), 0 16px 36px rgba(0,0,0,0.16);
}

.design-casefile .amount-panel span {
  color: var(--gold-300);
}

.design-casefile .amount-panel strong {
  color: var(--gold-400);
  text-shadow: 0 2px 20px rgba(215, 180, 109, 0.20);
}

.design-casefile .case-item {
  background: linear-gradient(180deg, #d8f0e2, #c5e6d4);
  border: 1px solid rgba(232, 205, 142, 0.45);
}

.design-casefile .case-item span,
.design-casefile .record-list span,
.design-casefile .authorize-card > span {
  color: var(--gold-700);
}

.design-casefile .case-item strong,
.design-casefile .record-list strong {
  color: #0a2a24;
}

.design-casefile .case-item small {
  color: #1a3d35;
}

/* Page 2: dark green case bars — white values */
body.page-p2.design-casefile .case-item {
  background: linear-gradient(180deg, #0d4c3f, #08362e);
  border: 1px solid rgba(232, 205, 142, 0.52);
}

body.page-p2.design-casefile .case-item strong,
body.page-p2.design-casefile .case-item small {
  color: #fff;
}

body.page-p2.design-casefile .record-list strong:not(.num) {
  color: #fff;
}

/* ============================================================
   PAGE 2 — Updated hero, card, and property details
   ============================================================ */

/* Headline: two-line with gold second line ~25% larger */
.page-p2 .p2-copy h1 span {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.12;
  color: #fff;
  letter-spacing: -0.03em;
  font-weight: 800;
}
.page-p2 .p2-copy h1 strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 4.5vw, 47px);
  line-height: 1.08;
  color: var(--gold-400);
  letter-spacing: -0.03em;
  font-weight: 900;
  margin-top: 6px;
  text-transform: none;
}
.page-p2.design-casefile .p2-copy h1 strong {
  font-size: clamp(34px, 4.5vw, 47px);
  line-height: 1.08;
}
.page-p2 .p2-copy h1 {
  margin: 0px 0 22px;
}

/* Subheadline */
.page-p2 .hero__sub {
  font-size: clamp(17px, 2.2vw, 22px);
  font-weight: 600;
  color: #fff;
  line-height: 1.45;
  margin-bottom: 28px;
}

/* CTA under video */
.page-p2 .p2-video-cta {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  width: 100%;
}

/* Right-side card: intro text */
.page-p2 .p2-intro {
  margin-bottom: 14px;
}
.page-p2 .p2-intro__primary {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  line-height: 1.45;
  margin: 0;
}

/* Page 2 card: reuse Page 1 amount-panel + property-match styles */
.page-p2 .claim-card__top--centered {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 8px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(232, 205, 142, 0.22);
}
.page-p2 .claim-card__top--centered .mini-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--gold-300);
  opacity: 0.92;
}
.page-p2 .claim-card__top--centered h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
  color: #fff;
}

/* Amount panel on Page 2 — match Page 1 exactly */
.page-p2 .amount-panel--hero {
  text-align: center;
  padding: clamp(18px, 2.8vw, 24px) clamp(16px, 2vw, 22px);
  margin: 0 0 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, #0f5244, #08362e);
  border: 1px solid rgba(232, 205, 142, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 14px 36px rgba(0, 0, 0, 0.22);
}
.page-p2 .claim-status {
 justify-content: center;
    width: 100%;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0 0 12px;
    padding: 5px 11px;
    border-radius: 999px;
    border: 1.75px solid rgba(118, 210, 144, 0.55);
    background: rgba(118, 210, 144, 0.28);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
}
.page-p2 .amount-panel__label {
  display: block;
  font-size: 11.5px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 8px;
}
.page-p2 .amount-panel--hero strong.num {
  display: block;
  font-family: "Archivo Black", Inter, sans-serif;
  font-size: clamp(40px, 5.5vw, 61px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--gold-400);
  text-shadow: none;
      position: relative;
    top: -7px;
}

/* Property match on Page 2 — mirror Page 1 */
.page-p2 .property-match {
  background: linear-gradient(180deg, rgba(8, 44, 37, 0.72), rgba(5, 30, 26, 0.82));
  border: 1px solid rgba(232, 205, 142, 0.32);
  border-radius: 18px;
  padding: clamp(14px, 2vw, 18px);
  margin-bottom: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.page-p2 .property-match__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 12px;
  padding: 5px 11px;
  border-radius: 999px;
  border: 1.75px solid rgba(118, 210, 144, 0.55);
  background: rgb(42 113 85);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
}
.page-p2 .property-match__check {
  flex: 0 0 17px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgb(9 59 50);
  border: 1.75px solid rgba(216, 155, 36, 0.55);
  color: var(--gold-400);
  flex-shrink: 0;
}
.page-p2 .property-match__check svg {
  width: 10px;
  height: 10px;
  display: block;
}
.page-p2 .property-match__check--small {
  flex: 0 0 15px;
  width: 15px;
  height: 15px;
}
.page-p2 .property-match__check--small svg {
  width: 9px;
  height: 9px;
}
.page-p2 .property-match__fields {
  display: grid;
  gap: 12px;
}
.page-p2 .property-match__field {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(232, 205, 142, 0.12);
}
.page-p2 .property-match__field:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.page-p2 .property-match__label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-400);
  margin-bottom: 4px;
}
.page-p2 .property-match__value {
  font-size: clamp(14px, 1.6vw, 17px);
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}
.page-p2 .property-match__field--address .property-match__value {
  font-size: clamp(16px, 2vw, 17px);
  font-weight: 600;
  line-height: 1.25;
}
.page-p2 .property-match__city {
  display: block;
  margin-top: 2px;
  font-size: clamp(13px, 1.4vw, 17px);
  font-weight: 600;
  color: #fff;
}
.page-p2 .property-match__footnote {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 12px 0 0;
  padding-top: 12px;
  border-top: 1px solid rgba(232, 205, 142, 0.12);
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.75);
}
.page-p2 .property-match__trust-shield {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
}
.page-p2 .property-match__trust-shield img {
  width: 100%;
  height: auto;
  display: block;
}
/* Page 2 primary CTAs — match Page 1 style, text ~20–25% larger */
.page-p2 .btn--primary.btn--large {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.02em;
  min-height: 58px;
  padding: 14px 28px;
  border-radius: 15px;
  gap: 10px;
}
.page-p2 .btn--primary.btn--large .arrow-right {
 
  height: auto;
  margin-left: 0;
  filter: invert(1);
}

/* Right-side summary card CTA — fit on one line in narrower column */
.page-p2 .p2-summary > .btn--primary.btn--large {
  display: flex;
  width: 100%;
  max-width: 100%;
  flex-wrap: nowrap;
  white-space: nowrap;
  justify-content: center;
  align-items: center;
  font-size: 17px;
  padding: 14px 20px;
  gap: 10px;
  box-sizing: border-box;
}
.page-p2 .p2-summary > .btn--primary.btn--large .arrow-right {

  flex-shrink: 0;
}

/* Page 2 responsive */
@media (max-width: 900px) {
  .page-p2 .p2-copy h1 span {
    font-size: clamp(26px, 8vw, 36px);
  }
  .page-p2 .p2-copy h1 strong,
  .page-p2.design-casefile .p2-copy h1 strong {
    font-size: clamp(30px, 11vw, 41px);
  }
  .page-p2 .hero__sub {
    font-size: clamp(15px, 4vw, 19px);
  }
  .design-casefile.agreement-open button#scmAdopt {
    margin-top: 31px;
  }
  .design-casefile.agreement-open div#inlineSubmitWrap {
    box-shadow: none;
  }
}
@media (max-width: 640px) {
  .page-p2 .amount-panel--hero strong.num {
    font-size: clamp(44px, 14vw, 55px);
  }
  .page-p2 .property-match__field--address .property-match__value {
    font-size: 15px;
  }
  .page-p2 .property-match__value {
    font-size: 14px;
  }

}

.design-casefile .lead-form input {
  background: var(--green-field);
  border-color: rgba(8, 47, 40, 0.22);
}

.design-casefile .lead-form input:focus {
  background: #effaf3;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(215, 180, 109, 0.18), inset 0 1px 0 rgba(255,255,255,0.7);
}

.design-casefile .form-trust {
  background: rgba(4, 28, 24, 0.44);
  border-color: rgba(232, 205, 142, 0.34);
}

.design-casefile .surplus-section,
.design-casefile .faq,
.design-casefile .p2-details {
  border: 0;
}

.design-casefile .example-box {
  border-left-color: var(--gold-500);
  box-shadow: 0 18px 44px rgba(8, 47, 40, 0.12);
}

.design-casefile .testimonials {
  background:
    radial-gradient(circle at 50% 0%, rgba(215, 180, 109, 0.10), transparent 34%),
    linear-gradient(145deg, var(--green-900), var(--green-950));
}

.design-casefile .testimonial-card {
  border-color: rgb(216 155 36);
}

.design-casefile .testimonial-card.is-center {
  box-shadow: 0 30px 90px rgba(0,0,0,0.36), 0 0 0 5px rgba(215,180,109,0.08);
}

.design-casefile .faq-item {
  border-color: rgba(8, 47, 40, 0.10);
  box-shadow: 0 16px 38px rgba(8, 47, 40, 0.09);
}

/* FAQ stays light; transition lives on final-cta (one gradient, no black seam) */
.design-casefile .faq.section-light:has(+ .final-cta) {
  overflow: hidden;
  padding-bottom: 88px;
  background:
    linear-gradient(180deg, rgba(232, 205, 142, 0.08), transparent 110px),
    linear-gradient(180deg, #fbfdf9 0%, #eef6f0 100%);
}

/*.design-casefile .section-light.faq + .final-cta.section-dark {
  margin-top: -56px;
  padding-top: clamp(128px, 16vw, 176px);
  background: linear-gradient(
    180deg,
    #fbfdf9 0%,
    #eef6f0 8%,
    #e8eae0 16%,
    #c5d4cc 24%,
    #a8b5a4 34%,
    #6d948a 44%,
    #4a7268 54%,
    #2f5d4d 64%,
      #1a4a3d 74%,
      var(--green-900) 86%,
      var(--green-950) 94%,
      var(--green-975) 100%
  );*/
}

.design-casefile .final-cta {
  background: linear-gradient(180deg, var(--green-900) 0%, var(--green-950) 72%, var(--green-975) 100%);
}

.design-casefile .site-footer {
  border-top: 1px solid rgba(232, 205, 142, 0.78);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
  padding-top: 20px;
}

.design-casefile .p2-copy h1 span {
  color: #fff;
  font-size: 40px;
}

.design-casefile .p2-copy h1 strong {
  font-size: 35px;
  line-height: 0.9;
}

.design-casefile .case-file-card,
.design-casefile .authorize-card {
  border: 1px solid rgba(232, 205, 142, 0.38);
  box-shadow: 0 22px 58px rgba(8, 47, 40, 0.16);
}

.design-casefile .case-file-card {
  background: linear-gradient(180deg, #ffffff, #f2f9f5);
}

.design-casefile .authorize-card {
  background: linear-gradient(180deg, #155b4d, #0a3d33);
  color: #fff;
}

.design-casefile .authorize-card h3,
.design-casefile .authorize-card li {
  color: #fff;
}

.design-casefile .authorize-card li::before {
  background: var(--gold-400);
  color: var(--green-950);
}

.design-casefile .record-list div {
  background: linear-gradient(180deg, #14584a, #1c452c);
  border: 1px solid rgba(232, 205, 142, 0.35);
}

.design-casefile .chat-toggle {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 3px solid var(--gold-400);
  background: linear-gradient(180deg, #196d59, #0a3d33);
  color: #fff;
  font-size: 0;
  line-height: 1;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
  animation: chatLauncherPulse 3.2s ease-in-out infinite;
}

.design-casefile .chat-toggle__icon {
  width: 28px;
  height: 28px;
  display: block;
}

.design-casefile .chat-toggle:hover {
  transform: scale(1.06);
  filter: brightness(1.08);
  animation: none;
}

/* Keep the user's choice to hide the duplicate hero CTA, while preserving all primary CTA green styling elsewhere. */


@media (max-width: 1100px) {
  .design-casefile .hero__copy,
  .design-casefile .p2-copy {
    max-width: 760px;
    margin-inline: auto;
  }
}

@media (max-width: 780px) {
      .design-casefile a.btn.btn--primary.btn--large.hero__cta {
        display: flex;
    }
  .design-casefile .hero::before {
    inset: 10px;
    border-radius: 24px;
  }

  .design-casefile .hero__bg {
    opacity: 0.38;
  }

  .design-casefile .hero__shade {
    background: linear-gradient(180deg, rgba(4, 28, 24, 0.93), rgba(4, 28, 24, 0.82));
  }

  .design-casefile .hero__copy h1 {
    font-size: 30px;
    line-height: 1.02;
  }

  .design-casefile .hero__sub {
    font-size: 15px;
    line-height: 1.45;
  }

  .design-casefile .eyebrow--hero {
    font-size: 10px;
    padding: 8px 12px;
  }

  .design-casefile .metric-row article {
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 14px;
  }

  .design-casefile .metric-row strong {
    min-width: 92px;
  }

  .design-casefile .claim-card,
  .design-casefile .p2-summary {
    border-width: 2px;
  }

  .design-casefile .p2-copy h1 span {
    font-size: 30px;
  }

  .design-casefile .p2-copy h1 strong {
    font-size: 30px;
  }

  .page-p2.design-casefile .p2-copy h1 strong {
    font-size: 34px;
  }

  .design-casefile .chat-toggle {
    width: 60px;
    height: 60px;
  }

  .design-casefile .chat-toggle__icon {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 420px) {
  .design-casefile .metric-row article {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .design-casefile .hero__copy h1 {
    font-size: clamp(34px, 10.6vw, 40px);
  }
}

@media (max-width: 800px) {
  .design-casefile .carousel-btn--next,
  .design-casefile .carousel-btn--prev {
    display: none;
  }
}

/* my css */

/* Section transitions — funnel-v1: gradient in light section, fade strip on dark (no blur haze) */
main > section {
  position: relative;
  isolation: isolate;
}

main > section + section {
  margin-top: -1px;
}

/* Default thin edge fades off; casefile rules above handle real blends */
.section-light::before,
.section-dark::after {
  display: none;
}

.surplus-section.section-light:has(+ .testimonials) {
  overflow: hidden;
  padding-bottom: 88px;
  background: linear-gradient(180deg, #f8fbf7 0%, #ecf4ee 100%);
}

/*.surplus-section + .testimonials.section-dark {
  margin-top: -56px;
  padding-top: clamp(128px, 16vw, 176px);
  background: linear-gradient(
    180deg,
    #f8fbf7 0%,
    #ecf4ee 8%,
    #e8eae0 16%,
    #c5d4cc 24%,
    #a8b5a4 34%,
    #6d948a 44%,
    #4a7268 54%,
    #2f5d4d 64%,
    #1a4a3d 74%,
    var(--green-900) 86%,
    var(--green-950) 94%,
    var(--green-975) 100%
  );*/
}

.testimonials .section-heading,
.testimonials .testimonial-stage,
.testimonials .carousel-dots {
  position: relative;
  z-index: 2;
}

.faq.section-light:has(+ .final-cta) {
  overflow: hidden;
  padding-bottom: 88px;
  background: linear-gradient(180deg, #f8fbf7 0%, #ecf4ee 100%);
}
/*
.section-light.faq + .final-cta.section-dark {
  margin-top: -56px;
  padding-top: clamp(128px, 16vw, 176px);
  background: linear-gradient(
    180deg,
    #f8fbf7 0%,
    #ecf4ee 8%,
    #e8eae0 16%,
    #c5d4cc 24%,
    #a8b5a4 34%,
    #6d948a 44%,
    #4a7268 54%,
    #2f5d4d 64%,
    #1a4a3d 74%,
    var(--green-900) 86%,
    var(--green-950) 94%,
    var(--green-975) 100%
  );*/
}

/*.section-dark:has(+ .section-light)::after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 200px;
  background: linear-gradient(
    to top,
    #ecf4ee 0%,
    rgba(236, 244, 238, 0.92) 20%,
    rgba(236, 244, 238, 0.65) 45%,
    rgba(236, 244, 238, 0.28) 70%,
    transparent 100%
  );
  filter: none;
  opacity: 1;
  z-index: 2;
  pointer-events: none;
}*/

.surplus-section + .testimonials.section-dark,
.section-light.faq + .final-cta.section-dark {
  padding-top: clamp(128px, 16vw, 176px);
}

.section-light:not(.faq):not(.surplus-section) + .section-dark {
  padding-top: clamp(48px, 7vw, 72px);
}

/* Footer should stay subtle: only thin gold line */
.site-footer {
  border-top: 1px solid rgba(216, 155, 36, 0.55);
}
button.btn.btn--primary.btn--large.js-open-agreement.page.\32 {
    margin-top: 60px;
    width: 100%;
}
svg.chat-toggle__icon {
    color: #fff;
}
.authorize-card li:before {
    padding: 4px 11px;
    border-radius: 30px;
}


section.green_separator img {
    height: 200px;
    width: 100vw;
    object-fit: fill;
    position: relative;
    top: -103px;
}
section.green_separator {
    position: absolute;
    z-index: 11;
}

section.final-cta.section-dark {
    padding-top: 100px;
}
section#faq {
    padding-bottom: 130px;
    z-index: 99;
}
.design-casefile .section-light {
    background: white;
}
section#success-stories {
    padding-bottom: 140px;
    padding-top: 140px;
}
section.hero.hero--p2.hero--casefile.section-dark {
    padding-bottom: 140px;
}
.design-casefile .p2-copy h1 strong {
    line-height: 0.9;
    font-family: "Playfair Display", Georgia, serif;
}
.video-card.video-card--hero {
    padding: 0px;
}

html, body {

    width: initial !important;

}
section.hero.hero--home.section-dark {
    padding-bottom: 140px;
}
span.sh-brand-2 {
    text-align: left;
}








@media (max-width: 767px) {
section.green_separator img {

    top: -99px;
}
.authorize-card li:before {
    padding: 12px 22px;
    border-radius: 30px;
}
.site-footer .brand {
    margin: 0 auto;
}


}

/* Page 1 — header, trust badges, hero subheadline, CTA polish */
.page-home .top-trust__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(8px, 1.5vw, 24px);
  flex-wrap: nowrap;
  /*width: 100%;*/
  min-height: 40px;
  padding: 8px 0;
}

.page-home .top-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 1 auto;
  font-size: clamp(11px, 0.92vw, 13px);
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.page-home .top-trust span::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.75px solid rgba(216, 155, 36, 0.55);
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.25 8.25L6.5 11.5L12.75 4.75' stroke='%23d89b24' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    no-repeat center / 12px,
    rgba(118, 210, 144, 0.28);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.18);
}

.page-home .header__inner {
  gap: clamp(14px, 2vw, 22px);
}

.page-home .header__inner .primary-nav {
  margin-left: auto;
  margin-right: clamp(10px, 1.6vw, 20px);
  justify-content: flex-end;
  gap: clamp(18px, 2.4vw, 34px);
}

.page-home .primary-nav a {
  color: var(--gold-400);
  font-weight: 700;
}

.page-home .primary-nav a::after {
  background: rgba(232, 205, 142, 0.9);
}

.page-home .btn {
  text-transform: none;
  letter-spacing: 0.015em;
  font-weight: 700;
}

.page-home .btn--header {
  font-size: clamp(11px, 0.9vw, 13px);
  padding-inline: clamp(14px, 1.5vw, 22px);
  white-space: nowrap;
}

.page-home .btn--primary.btn--large,
.page-home .btn--primary.btn--block {
  font-size: 20px;
  font-weight: 700;
}

.page-home .hero__sub {
  display: grid;
  max-width: 760px;
  margin: 0 0 20px;
  font-size: 24px;
  line-height: 1.35;
  font-weight: 600;
  color: #fff;
}

.page-home .hero__sub-line {
  display: block;
}

.page-home .hero__sub-highlight {
    color: var(--gold-400);
    font-weight: 800;
    font-size: 22px;
}

.design-casefile.page-home .hero__sub {
  color: #fff;
  font-size: 24px;
  line-height: 1.35;
  font-weight: 600;
}

.design-casefile.page-home .hero__sub strong {
  color: var(--gold-400);
}

.design-casefile.page-home .primary-nav a {
  color: var(--gold-400);
}

.design-casefile.page-home .top-trust span::before {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.25 8.25L6.5 11.5L12.75 4.75' stroke='%23d89b24' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    no-repeat center / 12px,
    rgba(118, 210, 144, 0.28);
  border: 1.75px solid rgba(216, 155, 36, 0.55);
}

@media (max-width: 900px) {
  .page-home .top-trust__inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
    gap: 10px 20px;
    padding: 12px 6px;
  }

  .page-home .top-trust span {
    white-space: normal;
    font-size: 11px;
    line-height: 1.35;
    gap: 7px;
  }

  .page-home .top-trust span::before {
    width: 16px;
    height: 16px;
    background-size: 10px;
  }
}

@media (max-width: 780px) {
  .page-home .hero__sub,
  .design-casefile.page-home .hero__sub {
    font-size: clamp(17px, 4.8vw, 20px);
    line-height: 1.4;
  }

  .page-home .btn--header {
    font-size: 11px;
    padding-inline: 14px;
    min-height: 40px;
    border-radius: 20px;
  }

  .page-home .btn--header .arrow-right {
    width: 16px;
  }

  .page-home .btn--primary.btn--large,
  .page-home .btn--primary.btn--block {
    font-size: 15px;
  }

  .page-home .hero__media-stack .video-card--hero {
    margin-top: 20px;
  }

  .page-home .hero__media-stack .hero__cta {
    margin-top: 16px;
    padding: 12px 22px;
    min-height: 48px;
  }

  .page-home .hero__media-stack .metric-row {
    margin-top: 10px;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .page-home .top-trust__inner {
    gap: 8px 14px;
    padding: 10px 4px;
  }

  .page-home .top-trust span {
    font-size: 9px;
    line-height: 1.3;
    gap: 6px;
  }

  .page-home .top-trust span::before {
    width: 15px;
    height: 15px;
    background-size: 9px;
  }
}

@media (max-width: 380px) {
  .page-home .top-trust__inner {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 10px 2px;
  }
  .page-p2 .p2-summary > .btn--primary.btn--large {
    font-size: 14px;
  }

  .page-home .top-trust span {
    font-size: 11px;
    justify-content: flex-start;
  }

  .page-home .btn--header {
    font-size: 10px;
    padding-inline: 12px;
  }

  .page-home .btn--header .arrow-right {
    width: 14px;
  }
}

/* Page 1 — hero video CTA + trust metrics */
.page-home .hero__media-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 760px;
}

.page-home .hero__media-stack .video-card--hero {
  width: 100%;
  max-width: 680px;
  margin: 28px auto 0;
}

.page-home .hero__media-stack .hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  margin-top: 22px;
  min-width: min(100%, 320px);
  text-align: center;
}

.page-home .hero__media-stack .metric-row {
  width: 100%;
  margin-top: 10px;
  gap: 10px;
}

.page-home .metric-row .metric-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(22px, 3vw, 30px) clamp(14px, 2vw, 18px);
  gap: 10px;
  min-height: 156px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(18, 86, 71, 0.88), rgba(6, 40, 34, 0.9));
  border: 1px solid rgba(232, 205, 142, 0.44);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 42px rgba(0, 0, 0, 0.22);
}

.page-home .metric-card__icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-bottom: 2px;
  color: var(--gold-400);
  opacity: 0.88;
}

.page-home .metric-card__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.page-home .metric-row .metric-card strong.num {
  font-family: "Archivo Black", Inter, sans-serif;
  font-size: clamp(40px, 5.2vw, 58px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--gold-400);
  text-shadow: 0 2px 20px rgba(215, 180, 109, 0.18);
}

.page-home .metric-row .metric-card__label {
  font-size: clamp(11px, 1.05vw, 15px);
  font-weight: 700;
  line-height: 1.45;
  color: #fff;
  max-width: 18ch;
}

@media (max-width: 780px) {
  .page-home .metric-row .metric-card {
    grid-template-columns: unset;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 0;
    padding: 16px 14px;
    gap: 6px;
  }

  .page-home .metric-row .metric-card strong.num {
    min-width: 0;
    font-size: clamp(32px, 9vw, 44px);
  }

  .page-home .metric-card__icon {
    width: 24px;
    height: 24px;
  }

  .page-home .metric-row .metric-card__label {
    font-size: 10px;
  }

  .page-home .hero__media-stack .hero__cta {
    width: 100%;
    max-width: 420px;
  }
}

@media (max-width: 640px) {
  .page-home .hero__media-stack .metric-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .page-home .metric-row .metric-card {
    flex-direction: row;
    text-align: left;
    padding: 14px 16px;
    gap: 12px;
  }

  .page-home .metric-row .metric-card strong.num {
    font-size: clamp(28px, 8vw, 36px);
    white-space: nowrap;
  }

  .page-home .metric-row .metric-card__label {
    max-width: none;
    font-size: 11px;
  }

  .page-home .metric-card__icon {
    display: none;
  }
}

/* ── Page 1 — premium lead form (compact) ── */

.page-home #claim-form.claim-card {
  padding: clamp(18px, 2.4vw, 24px);
}

/* 1. Form header */
.page-home .claim-card__top--centered {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 8px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(232, 205, 142, 0.22);
}

.page-home .claim-card__top--centered .mini-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--gold-300);
  opacity: 0.92;
}

.page-home .claim-card__top--centered h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
  color: #fff;
}

/* 2. Amount card */
.page-home .amount-panel--hero {
  text-align: center;
  padding: clamp(18px, 2.8vw, 24px) clamp(16px, 2vw, 22px);
  margin: 0 0 14px;
  border-radius: 20px;
  background: linear-gradient(180deg, #0f5244, #08362e);
  border: 1px solid rgba(232, 205, 142, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 14px 36px rgba(0, 0, 0, 0.22);
}

.page-home .amount-panel__label {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 8px;
}

.page-home .amount-panel--hero strong.num {
  display: block;
  font-family: "Archivo Black", Inter, sans-serif;
  font-size: clamp(40px, 5.5vw, 61px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--gold-400);
  position: relative;
    top: -7px;

}

/* 3. Property match section */
.page-home .property-match {
  background: linear-gradient(180deg, rgba(8, 44, 37, 0.72), rgba(5, 30, 26, 0.82));
  border: 1px solid rgba(232, 205, 142, 0.32);
  border-radius: 18px;
  padding: clamp(14px, 2vw, 18px);
  margin-bottom: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.page-home .property-match__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 12px;
  padding: 5px 11px;
  border-radius: 999px;
  border: 1.75px solid rgba(118, 210, 144, 0.55);
  background: rgb(43 112 85);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
}

.page-home .property-match__check {
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  border: 1.75px solid rgba(216, 155, 36, 0.55);
  background: rgb(9 52 44);
  color: var(--gold-400);
  flex-shrink: 0;
}

.page-home .property-match__check svg {
  width: 10px;
  height: 10px;
  display: block;
}

.page-home .property-match__check--small {
  width: 15px;
  height: 15px;
}

.page-home .property-match__check--small svg {
  width: 9px;
  height: 9px;
}

.page-home .property-match__fields {
  display: grid;
  gap: 12px;
}

.page-home .property-match__field {
  display: grid;
  gap: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(232, 205, 142, 0.12);
}

.page-home .property-match__field:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.page-home .property-match__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-400);
}

.page-home .property-match__value {
  font-size: clamp(14px, 1.6vw, 17px);
  font-weight: 600;
  line-height: 1.3;
  color: #fff;
}

.page-home .property-match__field--address .property-match__value {
  font-size: clamp(16px, 2vw, 17px);
  font-weight: 600;
  line-height: 1.25;
}

.page-home .property-match__city {
  display: block;
  margin-top: 2px;
  font-size: clamp(13px, 1.4vw, 17px);
  font-weight: 600;
  color: #fff;
}

.page-home .property-match__footnote {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 12px 0 0;
  padding-top: 12px;
  border-top: 1px solid rgba(232, 205, 142, 0.12);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.75);
}

/* 4. Input fields */
.page-home .property-match + .lead-form {
  margin-top: 4px;
}

.page-home .lead-form {
  gap: 14px;
}

.page-home .lead-form label {
  gap: 6px;
}

.page-home .lead-form label span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--gold-300);
}

.page-home .lead-form input {
  min-height: 48px;
  border-radius: 12px;
  padding: 0 15px;
  font-size: 15px;
  font-weight: 600;
}

.page-home .lead-form input::placeholder {
  font-weight: 500;
  color: #7a9189;
}

/* Trust box */
.page-home .form-trust {
  padding: 10px 14px;
  border-radius: 14px;
  gap: 10px;
  align-items: flex-start;
}

.page-home .form-trust__icon {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(4, 28, 24, 0.5);
  /*border: 1px solid rgba(232, 205, 142, 0.35);*/
  color: var(--gold-400);
}

.page-home .form-trust__icon svg {
  width: 14px;
  height: 14px;
  display: block;
}
.page-home .form-trust .text-gold {
  color: var(--gold-400);
  font-weight: bold;
}

.page-home .form-trust strong {
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: none;
}

.page-home .form-trust p {
  font-size: 10.5px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
}

/* CTA button */
.page-home .lead-form .btn--block {
  min-height: 54px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 14px 24px;
  border-radius: 14px;
}

.page-home .hero__media-stack .hero__cta {
  font-size: 17px;
}

/* Security line */
.page-home .secure-note--gold {
  color: var(--gold-400);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: none;
  margin-top: 6px;
}

@media (max-width: 780px) {
  .page-home .claim-card__top--centered h2 {
    font-size: clamp(22px, 5.5vw, 26px);
  }

  .page-home .amount-panel--hero strong.num {
    font-size: clamp(36px, 10vw, 46px);
  }

  .page-home .property-match {
    padding: 14px;
  }

  .page-home .property-match__fields {
    gap: 10px;
  }

  .page-home .property-match__field {
    padding-bottom: 10px;
  }

  .page-home .lead-form {
    gap: 12px;
  }

  .page-home .lead-form input {
    min-height: 46px;
    font-size: 14px;
  }

  .page-home .lead-form .btn--block {
    min-height: 50px;
    font-size: 15px;
    padding: 12px 20px;
  }

  .page-home .hero__media-stack .hero__cta {
    font-size: 15px;
  }

  .page-home .form-trust {
    padding: 10px 12px;
  }

  .page-home .secure-note--gold {
    font-size: 12px;
  }
}

@media (max-width: 420px) {
  .page-home #claim-form.claim-card {
    padding: 16px 14px;
  }

  .page-home .amount-panel--hero {
    padding: 16px 12px;
  }

  .page-home .amount-panel--hero strong.num {
    font-size: clamp(44px, 14vw, 55px);
  }

  .page-home .claim-card__top--centered {
    gap: 6px;
    margin-bottom: 12px;
    padding-bottom: 12px;
  }

  .page-home .claim-card__top--centered h2 {
    font-size: 21px;
  }

  .page-home .property-match {
    padding: 12px;
  }

  .page-home .property-match__badge {
    margin-bottom: 10px;
    font-size: 10px;
    padding: 4px 10px;
  }

  .page-home .lead-form label span {
    font-size: 10px;
  }

  .page-home .lead-form input {
    min-height: 44px;
    font-size: 14px;
    padding: 0 12px;
  }
}

/* ============================================================
   LOWER SECTIONS — bridges, surplus, testimonials, FAQ
   ============================================================ */

/* --- 1. Section bridges (straight, full-width, soft blur) --- */
.section-bridge {
  position: relative;
  width: 100%;
  height: 145px;
  z-index: 5;
  pointer-events: none;
  overflow: hidden;
  margin-top: -70px;
  margin-bottom: -20px;
}

.section-bridge {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  height: 170px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: -90px;
  margin-bottom: -25px;
  z-index: 5;
  pointer-events: none;
  overflow: hidden;
}

/* Hero dark/video background -> light section */
.section-bridge--hero-to-light,
.section-bridge--dark-to-light {
  background: linear-gradient(
    180deg,
    rgba(4, 39, 33, 0) 0%,
    rgba(4, 39, 33, 0.75) 18%,
    rgba(245, 242, 236, 0.85) 58%,
    #f5f2ec 100%
  );
  filter: blur(11px);
}

/* Strong soft blur band */
.section-bridge--hero-to-light::before,
.section-bridge--dark-to-light::before {
  content: "";
  position: absolute;
  left: -5vw;
  right: -5vw;
  top: -45px;
  height: 145px;
  background: linear-gradient(
    180deg,
    rgba(4, 39, 33, 0.95) 0%,
    rgba(4, 39, 33, 0.75) 22%,
    rgba(245, 242, 236, 0.75) 62%,
    rgba(245, 242, 236, 1) 100%
  );
  filter: blur(38px);
  transform: translateZ(0);
}

/* Clean light bottom so it blends with next section */
.section-bridge--hero-to-light::after,
.section-bridge--dark-to-light::after {
  content: "";
  position: absolute;
  left: -5vw;
  right: -5vw;
  bottom: -35px;
  height: 85px;
  background: #f5f2ec;
}


.section-bridge--light-to-dark {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  height: 147px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: -101px;
  margin-bottom: -1px;
  z-index: 5;
  pointer-events: none;
  overflow: hidden;
  background: linear-gradient(179deg, #f5f2ec 0%, rgb(245 242 236 / 0%) 22%, rgb(24 52 40) 65%, #00000000 100%);
  filter: blur(10px);
}

.section-bridge--light-to-dark::before {
  content: "";
  position: absolute;
  left: -5vw;
  right: -5vw;
  top: 10px;
  height: 145px;

  background: linear-gradient(
    180deg,
    rgba(245, 242, 236, 1) 0%,
    rgba(245, 242, 236, 0.9) 25%,
    rgba(4, 39, 33, 0.75) 68%,
    rgba(4, 39, 33, 1) 100%
  );

  filter: blur(42px);
  transform: translateZ(0);
}

.section-bridge--light-to-dark::after {
  content: "";
  position: absolute;
  left: -5vw;
  right: -5vw;
  bottom: -40px;
  height: 85px;
  background: #042721;
}

/* Hide the old green_separator images on page-home and page-p2 */
/*.page-home section.green_separator,
.page-p2 section.green_separator {
  display: none;
}*/

/* Gold text utility */
.gold-text {
  color: var(--gold-500);
}

/* --- 2. Surplus Funds section polish --- */
.page-home .surplus-section .section-copy p {
  font-size: 16.5px;
  line-height: 1.4;
}
.page-home .surplus-section .example-box {
    font-size: 17.2px;
    line-height: 1.5;
    padding: 5px 18px;
}
.page-home .surplus-section .image-frame {
  max-width: 420px;
  width: 100%;
}
.page-home .surplus-section .image-frame img {
  width: 100%;
  height: 318px;
}

/* --- 3. Testimonial section --- */

/* Headline styling */
.page-home .section-heading h2 {
  color: #fff;
}
.page-home .section-heading p strong {
  font-weight: 700;
  color: #fff;
}

/* Card grid — new layout: amount first, no "recovered" row */
.page-home .testimonial-card {
  grid-template-areas:
    "photo amount"
    "photo stars"
    "text text"
    "meta meta";
  gap: 4px 18px;
  padding: 32px 30px;
}
.page-home .testimonial-card__amount {
  grid-area: amount;
  font-size: 65px;
  font-weight: 900;
  color: #d89b24;
  line-height: 1;
  align-self: end;
  margin-bottom: 14px;
}
.page-home .testimonial-card .stars {
  grid-area: stars;
  font-size: 22px;
  letter-spacing: 0.06em;
  opacity: 0.7;
}

@keyframes text-shimmer {
  0%, 100% {
    background-position: 200% center;
  }
  50% {
    background-position: 0% center;
  }
}

.page-home .testimonial-card.is-center .stars {
  font-size: 20px;
  letter-spacing: 4px;
  opacity: 1;
  background: linear-gradient(135deg, #a07840 0%, #b8935c 18%, #d4af77 35%, #e8c99b 48%, #fff0c8 52%, #e8c99b 56%, #d4af77 70%, #b8935c 85%, #a07840 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  animation: text-shimmer 8s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(232, 201, 155, 0.55)) drop-shadow(0 2px 3px rgba(184, 147, 92, 0.35));
  display: inline-block;
}
.page-home .testimonial-card .recovered {
  display: inline;
  font-size: 0.4em;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: none;
  opacity: 0.85;
  vertical-align: middle;
}
.page-home .testimonial-card p {
  grid-area: text;
  margin: 14px 0 16px;
  font-size: 15px;
  line-height: 1.8;
  color: #3d504a;
}
.page-home .testimonial-card small {
  grid-area: meta;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testimonial-card__county {
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--gold-700);
  text-transform: uppercase;
}
.testimonial-card__name {
  font-weight: 600;
  font-size: 13px;
  color: var(--green-800);
  letter-spacing: 0.04em;
}

/* Carousel: more center prominence */
.page-home .testimonial-card.is-center {
  transform: translate(-50%, -50%) scale(1.04);
  opacity: 1;
  z-index: 5;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38), 0 0 0 3px rgba(215, 180, 109, 0.18);
}
.page-home .testimonial-card.is-left {
  transform: translate(calc(-50% - 462px), -50%) scale(0.78);
  opacity: 0.35;
  z-index: 2;
  filter: brightness(0.85);
}
.page-home .testimonial-card.is-right {
  transform: translate(calc(-50% + 462px), -50%) scale(0.78);
  opacity: 0.35;
  z-index: 2;
  filter: brightness(0.85);
}

/* --- 4. FAQ section --- */

/* FAQ intro left column */
.page-home .faq__grid {
  grid-template-columns: 1.15fr 1.45fr;
  gap: 56px;
}
.page-home .faq__intro h2 {
  /*font-size: clamp(24px, 3vw, 32px);
  line-height: 1.3;*/
}
.page-home .faq__intro h2 span {
  color: var(--gold-500);
}
.page-home .faq__intro p {
  font-size: 16px;
  line-height: 1.65;
  color: #4a5e58;
}

/* FAQ list spacing */
.page-home .faq-list {
  gap: 16px;
}
.page-home .faq-item {
  border-radius: 16px;
}
.page-home .faq-question {
  padding: 22px 24px;
  font-size: 17px;
}

/* Chevron icon */
.faq-chevron {
  font-style: normal;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid var(--gold-500);
  color: var(--gold-700);
  transition: transform 0.3s ease;
}
.faq-chevron svg {
    width: 21px;
    height: 21px;
}
.faq-item.is-open .faq-chevron {
  transform: rotate(180deg);
}

/* Override old <i> styles for chevron */
.faq-question .faq-chevron {
    font-style: normal;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 3px solid var(--gold-500);
    color: var(--gold-700);
    flex: 0 0 40px;
}

/* FAQ answer padding */
.page-home .faq-answer > p {
  padding: 0 24px;
  font-size: 15.5px;
  line-height: 1.7;
}
.page-home .faq-item.is-open .faq-answer > p {
  padding-bottom: 24px;
}

/* --- Responsive: lower sections --- */
@media (max-width: 900px) {
  .section-bridge {
    height: 120px;
    margin-top: -58px;
    margin-bottom: -16px;
  }
  .section-bridge--hero-to-light::after,
  .section-bridge--dark-to-light::after {
    height: 64px;
    bottom: -20px;
  }
  .page-home .faq__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .page-home .faq__intro {
    position: static;
    text-align: center;
  }
}
@media (max-width: 780px) {
  .section-bridge {
    height: 105px;
    margin-top: -50px;
    margin-bottom: -14px;
  }
  .section-bridge--hero-to-light::after,
  .section-bridge--dark-to-light::after {
    height: 56px;
    bottom: -18px;
  }
  .page-home .testimonial-card__amount {
    font-size: 52px;
  }
  .page-home .testimonial-card.is-left {
    transform: translate(calc(-50% - 322px), -50%) scale(0.78);
  }
  .page-home .testimonial-card.is-right {
    transform: translate(calc(-50% + 322px), -50%) scale(0.78);
  }
  .page-home .surplus-section .section-copy p {
    font-size: 16px;
  }
  .page-home .surplus-section .example-box {
    font-size: 16.5px;
  }
}
@media (max-width: 640px) {
  .section-bridge {
    height: 90px;
    margin-top: -44px;
    margin-bottom: -12px;
  }
  .section-bridge--hero-to-light::after,
  .section-bridge--dark-to-light::after {
    height: 48px;
    bottom: -16px;
  }
  .page-home .testimonial-card.is-left {
    transform: translate(calc(-50% - 253px), -50%) scale(0.75);
  }
  .page-home .testimonial-card.is-right {
    transform: translate(calc(-50% + 253px), -50%) scale(0.75);
  }
  .page-home .faq-question {
    padding: 18px 20px;
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .page-home .testimonial-card__amount {
    font-size: 33px;
  }
  .page-home .testimonial-card p {
    font-size: 14px;
  }
  .page-home .faq-question {
    font-size: 15px;
    padding: 16px 18px;
  }
  .faq-chevron {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
  }
  .faq-chevron svg {
    width: 14px;
    height: 14px;
  }
}

/* ============================================================
   AGREEMENT DOCUMENT — sig-intro title, sign prompt, modal,
   post-sign confirmation, submit CTA arrows
   ============================================================ */

.ag-sig-intro-title {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 14px;
  text-align: center;
  margin-bottom: 4px;
  color: var(--green-950, #041c18);
}

.agreement-doc .ag-sign-prompt {
  align-items: center;
  max-width: none;
  width: 100%;
}

.ag-sig-confirmed {
  text-align: center;
  color: #1a6e4d;
  font-weight: 800;
  font-size: 14px;
  margin: 12px 0 0;
  letter-spacing: 0.02em;
}

.scm-help {
  font-size: 15px;
  font-weight: 600;
  color: var(--green-950, #041c18);
}

.scm-cursive-preview {
  font-size: clamp(38px, 5vw, 52px);
  padding: 14px 16px;
  min-height: 64px;
  border-width: 1.5px;
}

.scm-cursive-preview-label {
  font-size: 10px;
  letter-spacing: 0.14em;
}

.scm-adopt {
  min-height: 54px;
  font-weight: 900;
  font-size: 14px;
}

.scm-tabs {
  margin-top: 14px;
  margin-bottom: 12px;
}

.submit-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.submit-arrows {
  color: #e67e22;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -6px;
  animation: submitArrowPulse 2.5s ease-in-out infinite;
}
.submit-arrows--right {
  animation-delay: 0.3s;
}
@keyframes submitArrowPulse {
  0%, 100% { opacity: 0.4; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(4px); }
}
.submit-arrows--left {
  animation-name: submitArrowPulseLeft;
}
@keyframes submitArrowPulseLeft {
  0%, 100% { opacity: 0.4; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(-4px); }
}

/* ============================================================
   THANK YOU PAGE
   ============================================================ */
.page-thanks {
  background: #fff;
  /*color: #fff;*/
}

.page-thanks .thanks-header__inner {
  justify-content: space-between;
  align-items: center;
  gap: clamp(10px, 3vw, 20px);
  flex-wrap: nowrap;
}

.page-thanks .thanks-header__inner .brand {
  flex: 0 1 auto;
  min-width: 0;
}

.page-thanks .thanks-header__inner .brand img {
  width: clamp(36px, 10vw, 44px);
  height: clamp(36px, 10vw, 44px);
}

.page-thanks .thanks-header__case {
  text-align: right;
  flex: 0 0 auto;
  min-width: 0;
}

.page-thanks .thanks-header__case span {
  display: block;
  font-size: clamp(8px, 2.2vw, 10px);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 2px;
  white-space: nowrap;
}

.page-thanks .thanks-header__case strong {
  display: block;
  font-size: clamp(13px, 3.8vw, 18px);
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: min(42vw, 180px);
}

/* Hero — same dark section as Page 1 / Page 2 */
.thanks-hero {
  padding: 56px 0 44px;
  text-align: center;
  color: #fff;
  border-bottom: 0;
}

.thanks-hero::after {
  display: none;
}

.thanks-hero__inner {
  max-width: 720px;
  margin: 0 auto;
}

.thanks-hero__badge {
  margin: 0 auto 20px;
  width: 56px;
  height: 56px;
}

.thanks-hero__badge svg {
  width: 56px;
  height: 56px;
}

.eyebrow--thanks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  max-width: 100%;
  margin: 0 auto 16px;
  color: var(--gold-500);
  font-size: clamp(13px, 1.6vw, 16px);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-align: center;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
}

.eyebrow--thanks::before,
.eyebrow--thanks::after {
  display: block;
  content: "";
  flex: 1 1 72px;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 119, 0.85), transparent);
}

.thanks-hero h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  color: #fff;
}

.thanks-hero__body {
  font-size: 16px;
  line-height: 1.6;
  color: #d5eee4;
  margin: 0 0 10px;
}

.thanks-hero__body--single-line {
  white-space: nowrap;
  font-size: clamp(13px, 1.55vw, 16px);
}

.thanks-hero__body--bold {
  font-weight: 700;
  color: #fff;
}

.thanks-hero__body--bold strong {
  color: #216755;
  text-decoration: none;
}

/* Status bar */
.thanks-status-bar {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 28px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(
    180deg,
    rgba(28, 104, 84, 0.97),
    rgba(13, 70, 59, 0.98)
  );
  border-radius: 999px;
  border: 1px solid rgba(232, 205, 142, 0.38);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.thanks-status__item {
  flex: 1;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
  font-size: 14px;
  color: #fff;
}

.thanks-status__item + .thanks-status__item {
  border-left: 1px solid rgba(212, 175, 119, 0.28);
}

.thanks-status__check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-400);
  color: var(--gold-400);
  font-weight: 900;
  font-size: 11px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  line-height: 1;
}

/* Cards — match claim-card / Page 2 blocks */
.thanks-attorney__card,
.thanks-info__card,
.thanks-reassure__card {
  background: linear-gradient(
    180deg,
    rgba(28, 104, 84, 0.97),
    rgba(13, 70, 59, 0.98)
  );
  border: 1px solid rgba(232, 205, 142, 0.38);
  border-radius: 32px;
  color: #fff;
  box-shadow: var(--shadow-soft);
}

/* Attorney card */
.thanks-attorney {
  padding: 32px 0 20px;
  background: transparent;
}

.thanks-attorney__card {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 40px);
  text-align: center;
}

.thanks-attorney__label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin: 0 0 8px;
}

.thanks-attorney__name {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 900;
  margin: 0 0 4px;
  color: var(--gold-400);
}

.thanks-attorney__title {
  font-size: 19px;
  font-weight: 700;
  color: white;
  margin: 0 0 22px;
}

.thanks-attorney__contacts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(212, 175, 119, 0.28);
}

.thanks-attorney__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
}

.thanks-attorney__contact + .thanks-attorney__contact {
  border-left: 1px solid rgba(212, 175, 119, 0.22);
}

.thanks-attorney__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.85);
  background: rgba(10, 61, 51, 0.55);
  display: grid;
  place-items: center;
  color: #fff;
}

.thanks-attorney__icon svg {
  width: 20px;
  height: 20px;
}

.thanks-attorney__icon svg,
.thanks-attorney__icon svg path,
.thanks-attorney__icon svg line,
.thanks-attorney__icon svg circle {
  stroke: #fff;
  stroke-width: 2.25;
}

.thanks-attorney__contact-label {
  font-size: clamp(11px, 1.2vw, 15px);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-400);
}

.thanks-attorney__contact a,
.thanks-attorney__contact span:last-child {
  font-size: 15px;
  font-weight: 700;
  color: var(--gold-400);
}

.thanks-attorney__contact a {
  text-decoration: none;
}

.thanks-attorney__contact a:hover {
  color: var(--gold-400);
}

.thanks-attorney__bio {
  font-size: 14px;
  line-height: 1.55;
  color: #fff;
  margin: 0;
  max-width: 620px;
  margin-inline: auto;
}

/* Info cards */
.thanks-info {
  padding: 0 0 28px;
  background: transparent;
}

.thanks-info__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
}

.thanks-info__card {
  padding: clamp(22px, 3vw, 30px);
}

.thanks-info__card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 800;
  margin: 0 0 14px;
  color: var(--gold-400);
}

.thanks-info__card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.thanks-info__card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  color: #fff;
}

.thanks-info__card li::before {
  content: "✓";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 119, 0.55);
  color: var(--gold-400);
  font-weight: 900;
  font-size: 10px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  margin-top: 1px;
}

.thanks-info__card p {
  font-size: 13px;
  line-height: 1.55;
  color: #fff;
  margin: 0 0 16px;
}

.thanks-info__contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--gold-400);
}

.thanks-info__contact-row a {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.thanks-info__contact-row a:hover {
  color: var(--gold-400);
}

/* Bottom reassurance */
.thanks-reassure {
  background: transparent;
  padding: 0 0 48px;
  text-align: center;
}

.thanks-reassure__card {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 36px);
}

.thanks-reassure__card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 900;
  color: var(--gold-400);
  margin: 0 0 8px;
}

.thanks-reassure__card p {
  font-size: 14px;
  line-height: 1.6;
  color: #fff;
  margin: 0 auto;
  max-width: 740px;
}

.page-thanks a {
  text-decoration: none;
}

/* Thank you responsive */
@media (max-width: 640px) {
  .thanks-hero {
    padding: 36px 0 32px;
  }

  .page-thanks .site-header .header__inner {
    min-height: 60px;
    padding-block: 8px;
  }

  .page-thanks .thanks-header__inner .brand {
    gap: 8px;
  }

  .page-thanks .thanks-header__inner .brand strong {
    font-size: clamp(11px, 3.2vw, 14px);
  }

  .page-thanks .thanks-header__inner .brand em {
    font-size: clamp(8px, 2.4vw, 10px);
    letter-spacing: 0.22em;
  }

  .page-thanks .thanks-header__case strong {
    max-width: min(48vw, 160px);
  }

  .eyebrow--thanks::before,
  .eyebrow--thanks::after {
    max-width: 48px;
  }

  .thanks-hero__body--single-line {
    white-space: normal;
    font-size: 15px;
  }

  .thanks-attorney__contacts {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .thanks-attorney__contact + .thanks-attorney__contact {
    border-left: 0;
    border-top: 1px solid rgba(212, 175, 119, 0.22);
    padding-top: 14px;
  }

  .thanks-info__grid {
    grid-template-columns: 1fr;
  }

  .thanks-status-bar {
    flex-direction: column;
    border-radius: 18px;
  }

  .thanks-status__item + .thanks-status__item {
    border-left: 0;
    border-top: 1px solid rgba(212, 175, 119, 0.25);
  }
}



section#verified-details {
    margin-top: 80px;
    background: white;
    margin-bottom: 80px;
    margin-right: 20px;
    margin-left: 20px;
}
.page-thanks .section-dark {
  background: #fff;
  color: var(--ink);
}

.page-thanks .thanks-hero h1 {
  color: var(--green-900);
}

.page-thanks .thanks-hero__body {
  color: #206654;
}

.page-thanks .site-footer {
  position: relative;
  z-index: 12;
  background: var(--green-950);
  border-top: 1px solid rgba(216, 155, 36, 0.55);
}

/* Page 2 footer — match Page 1 placement and visibility */
.page-p2 .site-footer {
  position: relative;
  z-index: 12;
  background: var(--green-950);
}

/* Page 2 — match Page 1 button + checkmark + trust bar style */
.page-p2 .btn--header {
  font-size: clamp(11px, 0.9vw, 13px);
  padding-inline: clamp(14px, 1.5vw, 22px);
  white-space: nowrap;
}


.design-casefile.page-p2 .top-trust span::before {
  content: "";
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.25 8.25L6.5 11.5L12.75 4.75' stroke='%23d89b24' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    no-repeat center / 12px,
    rgba(118, 210, 144, 0.28);
  border: 1.75px solid rgba(216, 155, 36, 0.55);
}

@media (max-width: 780px) {
  .page-p2 .btn--header {
    font-size: 10px;
    padding-inline: 14px;
    min-height: 40px;
    border-radius: 10px;
  }

  .page-p2 .btn--header .arrow-right {
    width: 16px;
  }

  .page-p2 .btn--primary.btn--large {
    font-size: 18px;
    min-height: 52px;
    padding: 12px 22px;
    gap: 10px;
  }

  .page-p2 .btn--primary.btn--large .arrow-right {
    width: 18px;
  }

  /* Hero CTA: keep within viewport and full width on small screens */
  .page-p2 .p2-video-cta {
    width: 100%;
    margin-bottom: 78px;
  }

  .page-p2 .p2-video-cta > .btn--primary.btn--large {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  /* Stop the single column from being stretched wider than the viewport */
  .page-p2 .p2-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .page-p2 .btn--primary.btn--large {
    font-size: 16px;
    padding: 12px 16px;
    gap: 8px;
  }

  .page-p2 .btn--primary.btn--large .arrow-right {
    width: 16px;
  }
}

@media (max-width: 380px) {
  .page-p2 .btn--header {
    font-size: 10px;
    padding-inline: 10px;
  }

  .page-p2 .btn--header .arrow-right {
    width: 14px;
  }

  .page-p2 .btn--primary.btn--large {
    font-size: 14px;
    padding: 11px 12px;
  }
}

/* Page 2 — agreement section, transition seam, footer visibility only */
.page-p2 main > section.green_separator + .agreement-review {
  position: relative;
  z-index: 12;
  margin-top: -72px;
  width: min(1320px, calc(100vw - 40px));
  left: 50%;
  transform: translateX(-50%);
}

.page-p2 .agreement-review .agreement-review__label {
  font-size: 14px;
}

.page-p2 .agreement-review__left .agreement-review__img-wrap {
  margin-top: 20px;
  min-height: 0;
  align-items: flex-start;
}

.page-p2 .agreement-review__left .agreement-review__img {
  min-height: 0;
  max-height: none;
  object-position: center;
}

.page-p2 .agreement-review__label--light span {
  opacity: 0.65;
}

.page-p2 .agreement-review__icon
 {
  flex: 0 0 56px;
  width: 99px;
  height: 55px;
  border: 2px solid rgba(216, 155, 36, 0.58);
  background: transparent;
}

.page-p2 .agreement-review__icon svg {
    width: 48px;
    height: 47px;
    border: 2.5px solid rgba(216, 155, 36, 0.58);
    background: rgba(216, 155, 36, 0.14);
    border-radius: 50%;
}

.page-p2 .agreement-review__point strong {
  font-size: 16px;
  font-weight: 900;
}

.page-p2 .agreement-review__trust-card {
  border: 2.5px solid rgba(216, 155, 36, 0.55);
}

.page-p2 .agreement-review__trust-label {
  font-size: 15px;
}

.page-p2 .agreement-review__clover-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 12px;
  max-width: 220px;
}

.page-p2 .agreement-review__clover-line {
  flex: 1;
  height: 1px;
  background: rgba(216, 155, 36, 0.45);
}

.page-p2 .agreement-review__clover-circle {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgb(7 48 37);
  border: 1.75px solid rgba(118, 210, 144, 0.45);
  flex-shrink: 0;
}

.page-p2 .agreement-review__clover {
  display: block;
  margin: 0;
  opacity: 1;
}

.page-p2 .agreement-review__before-label {
  font-size: 14px;
}

.page-p2 .agreement-review__before-copy {
  font-size: 16px;
  font-weight: 800;
  color: #2a4a3e;
}

.page-p2 .agreement-review__body {
  font-weight: 700;
}

.page-p2 .agreement-review__body strong {
  font-weight: 900;
}

@media (max-width: 900px) {
  .page-p2 main > section.green_separator + .agreement-review {
    left: 0;
    transform: none;
    margin-inline: auto;
  }
  .page-p2 .agreement-review__left .agreement-review__img-wrap {
    margin-top: 20px;
  }
  button.btn.btn--primary.btn--large.js-open-agreement.hero__cta.p2-video-cta
  {
    margin-bottom: 10px;
  }
}

/* Page 2 video — match Page 1 hero video component exactly */
.page-p2 .p2-copy > .video-card.video-card--hero {
  width: 100%;
  max-width: 680px;
  border: 2px solid rgba(232, 205, 142, 0.72);
  border-radius: 24px;
  overflow: hidden;
  padding: 0;
  background: #000;
  box-shadow: var(--shadow-soft);
}

.page-p2.design-casefile .p2-copy > .video-card.video-card--hero {
  border: 2px solid var(--gold-ring);
  box-shadow:
    0 28px 76px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.page-p2 .p2-copy > .video-card.video-card--hero video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #000;
  display: block;
}

/* Page 2 — show same poster + gradient thumbnail as Page 1 before playback */
.page-p2 .p2-copy > .video-card.video-card--hero:not(.is-playing)::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: url("../assets/images/posters/explainer-poster.jpg") center / cover no-repeat;
  pointer-events: none;
}

.page-p2 .p2-copy > .video-card.video-card--hero:not(.is-playing) video {
  opacity: 0;
}
.page-contact .btn--primary {
    background: #d89b24;
    color: #fff;
}
.faq-cta__trust .property-match__check--small {
    width: 20px;
    height: 20px;
}
.faq-cta__trust .property-match__check--small svg {
    width: 17px;
    height: 15px;
}
p.property-match__badge.topTitle {
    text-transform: capitalize;
    font-size: 13px;
    position: relative;
    top: -11px;
    /* color:#d89b24; */
}
.ZerdCard strong.num {
    position: relative;
    top: -12px;
}
.ZerdCard span.metric-card__label {
    position: relative;
    top: -12px;
}
a.brand.brand--footer {
    position: relative;
}
span.goldsurplusfund {
    color: #d89b24;
    font-weight: 800;
}
span.property-match__check.topchecklist {
  position: relative;
  top: 3px;
}
.primary-nav a {

    color: #d89b24;
}
.header__inner .primary-nav {
    margin-left: auto;
    margin-right: clamp(10px, 1.6vw, 20px);
    justify-content: flex-end;
    gap: clamp(18px, 2.4vw, 34px);
}

@media (max-width: 900px) {
.page-home .property-match__footnote {
    font-size: 9px;

}
.page-home .form-trust p {
    font-size: 8.5px;
}
.section-heading p {
    font-size: 16px;

}
.final-cta__trust {
    font-size: 14.5px;

}
.footer__legal-links {

    gap: 8px 12px;
    font-size: 9.5px;

}
.ZerdCard span.metric-card__label {
    position: relative;
    top: 0px;
}
.ZerdCard strong.num {
    position: relative;
    top: 0px;
}
.page-p2 .property-match__footnote
 {

    font-size: 9px;

}
span.sib-arrow.left-arrow-sib {
    display: none !important;
}
button#scmAdopt {
    font-size: 12px;
}



}


