:root {
  --ink: #26333d;
  --ink-strong: #101820;
  --muted: #65717c;
  --line: #dfe4e7;
  --green: #087a53;
  --green-2: #12a66e;
  --mint: #e8f7f0;
  --amber: #f3a425;
  --blue: #0868c9;
  --soft: #f6f7fb;
  --paper: #fff;
  --red: #a43a3a;
  --red-bg: #fff3f2;
  --shadow: 0 18px 46px rgba(16, 24, 32, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
}

body.payment-modal-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

.checkout-page {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  background: #fbfcfd;
}

.celebration-particles {
  position: fixed;
  inset: 0;
  z-index: 25;
  pointer-events: none;
  overflow: hidden;
}

.celebration-particles span {
  width: var(--size);
  height: var(--size);
  position: absolute;
  left: var(--x);
  top: -18px;
  border-radius: 2px;
  background: var(--green-2);
  opacity: 0;
  animation: particleFall var(--duration) ease-out var(--delay) forwards;
}

.celebration-particles span.is-amber {
  background: var(--amber);
}

.checkout-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 64px;
  border-bottom: 1px solid var(--line);
  padding: 0 max(24px, calc((100vw - 1260px) / 2));
}

.brand-line {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink-strong);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
}

.brand-line img {
  width: 31px;
  height: 31px;
  border-radius: 8px;
}

.account-chip {
  max-width: 260px;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-chip::before {
  content: "S";
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  margin-right: 7px;
  border: 2px solid #d9dde1;
  border-radius: 50%;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  vertical-align: middle;
}

.deal-strip {
  min-height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  border-bottom: 1px solid #edf0f2;
  background: #fff;
  box-shadow: 0 8px 24px rgba(16, 24, 32, 0.05);
  font-size: 15px;
  font-weight: 800;
}

.deal-strip strong {
  color: var(--green);
}

.deal-strip b {
  color: var(--green);
}

.deal-strip em {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border: 1px solid #bfe9d9;
  border-radius: 999px;
  background: var(--mint);
  color: var(--green);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  padding: 0 11px;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 1fr);
  gap: 28px;
  width: min(1180px, calc(100% - 36px));
  margin: 24px auto 0;
  align-items: stretch;
}

.report-column {
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  min-height: 100%;
}

.eyebrow,
.section-label {
  margin: 0 0 10px;
  color: #747b84;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 12px;
  color: var(--green);
  font-size: 31px;
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  color: #020508;
  font-size: 31px;
  line-height: 1.1;
  letter-spacing: 0;
}

.report-preview-card {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid #d9dee2;
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
}

.report-preview {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 12px;
  background:
    linear-gradient(180deg, rgba(248, 252, 250, 0.96), rgba(255, 255, 255, 0.96)),
    repeating-linear-gradient(0deg, rgba(35, 51, 61, 0.035) 0 44px, rgba(8, 122, 83, 0.025) 44px 88px);
}

.report-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(5px);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.2));
  pointer-events: none;
}

.chat-history-preview {
  position: relative;
  z-index: 0;
  display: grid;
  min-height: 100%;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(8, 122, 83, 0.08);
  border-radius: 12px;
  background: rgba(238, 249, 243, 0.72);
  filter: blur(2.4px);
  transform: translateZ(0);
}

.chat-preview-top {
  min-height: 36px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(8, 122, 83, 0.08);
  background: rgba(255, 255, 255, 0.72);
  padding: 0 16px;
}

.chat-preview-top span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-2), var(--green));
}

.chat-preview-top strong {
  width: 180px;
  height: 13px;
  border-radius: 999px;
  background: rgba(38, 51, 61, 0.18);
}

.chat-preview-row {
  min-height: 45px;
  display: grid;
  grid-template-columns: 31px minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  border-bottom: 1px solid rgba(8, 122, 83, 0.08);
  padding: 5px 10px;
}

.chat-preview-row:last-child {
  border-bottom: 0;
}

.chat-preview-row i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 32%, rgba(255, 255, 255, 0.9) 0 9px, transparent 10px),
    radial-gradient(ellipse at 50% 76%, rgba(255, 255, 255, 0.9) 0 16px, transparent 17px),
    linear-gradient(135deg, #d4dfda, #aebdb7);
}

.chat-preview-row i.photo {
  background:
    radial-gradient(circle at 44% 35%, rgba(82, 63, 48, 0.5), transparent 24%),
    linear-gradient(135deg, #9fb7a8, #547a61);
}

.chat-preview-row i.deep {
  background:
    radial-gradient(circle at 48% 36%, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(135deg, #586f78, #23353d);
}

.chat-preview-row div {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.chat-preview-row strong,
.chat-preview-row span {
  overflow: hidden;
  color: rgba(8, 91, 62, 0.78);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 11px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chat-preview-row span {
  color: rgba(72, 87, 96, 0.62);
  font-size: 10px;
}

.chat-preview-row time {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.preview-lock {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  border-radius: 999px;
  padding: 8px 11px;
  color: var(--green);
  background: var(--mint);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(8, 122, 83, 0.14);
}

.report-caption {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 14px;
  background: #e9eaec;
  color: #3f464d;
  font-size: 13px;
  text-align: center;
}

.display-number {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #26333d;
  font-weight: 900;
  white-space: nowrap;
}

.display-number img {
  width: 22px;
  height: 15px;
  border-radius: 4px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(16, 24, 32, 0.1);
}

.social-proof-pill {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  min-height: 56px;
  margin-top: 12px;
  border: 1px solid #d8dee3;
  border-radius: 14px;
  padding: 0 16px 0 20px;
  color: #424c55;
  background: #fff;
  font-size: 14px;
}

.avatar-stack {
  display: flex;
  align-items: center;
}

.avatar-stack i,
.avatar-stack b {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  margin-left: -8px;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.avatar-stack i:nth-child(2) {
  background: #41525d;
}

.avatar-stack i:nth-child(3) {
  background: #98a5ad;
}

.avatar-stack i:nth-child(4) {
  background: #c9a36c;
}

.avatar-stack b {
  color: #6a747d;
  background: #f2f4f5;
}

.payment-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  border: 1px solid #dfe7e2;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(232, 247, 240, 0.54), rgba(255, 255, 255, 0) 180px),
    #fff;
  padding: 20px 24px;
  box-shadow: 0 24px 70px rgba(16, 24, 32, 0.1);
}

.payment-hero {
  display: grid;
  gap: 5px;
  margin-bottom: 8px;
}

.payment-hero > span {
  width: fit-content;
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  border: 1px solid #bfe9d9;
  border-radius: 999px;
  background: #fff;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  padding: 0 12px;
}

.payment-hero h2 {
  margin-bottom: 0;
}

.payment-hero p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.rating-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 9px;
  color: #222;
  font-size: 14px;
}

.stars {
  color: var(--amber);
  letter-spacing: 0;
}

.payment-assurance {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin: 0 0 10px;
}

.payment-assurance article {
  display: grid;
  gap: 3px;
  min-height: 48px;
  align-content: center;
  border: 1px solid rgba(8, 122, 83, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  text-align: center;
}

.payment-assurance strong {
  color: var(--green);
  font-size: 16px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.payment-assurance span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
  line-height: 1.2;
}

.security-list {
  display: grid;
  gap: 6px;
  margin-bottom: 9px;
}

.security-list div {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  color: #35424d;
  font-size: 12px;
  line-height: 1.35;
}

.security-list i,
.promo-box > i {
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border: 1px solid #a9e7cd;
  border-radius: 7px;
  color: var(--green-2);
  background: #eafff5;
}

.security-list svg,
.promo-box svg {
  width: 14px;
  height: 14px;
}

.promo-box {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  margin: 8px 0;
  border: 1px solid #bfe9d9;
  border-radius: 14px;
  padding: 10px 12px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0)),
    #eaf8f2;
}

.promo-box strong,
.promo-box span {
  display: block;
}

.promo-box span {
  margin-top: 4px;
  color: #38515e;
  font-size: 12px;
}

.amount-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin: 8px 0 11px;
  border-top: 1px solid #e6ece9;
  border-bottom: 1px solid #e6ece9;
  padding: 10px 0;
  color: #171d22;
  font-size: 16px;
  font-weight: 900;
}

.price-stack {
  display: grid;
  gap: 3px;
  justify-items: end;
}

.price-stack em {
  min-height: 20px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #fff1d7;
  color: #9a5a00;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  padding: 0 8px;
}

.price-stack del {
  color: #8c949b;
  font-size: 13px;
  font-weight: 850;
}

.amount-row strong {
  color: var(--green);
  font-size: 21px;
}

.pay-button {
  display: inline-flex;
  width: 100%;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #075fc2, #0878dd);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(8, 104, 201, 0.22);
  transition: transform 160ms ease, filter 160ms ease, box-shadow 160ms ease;
}

.pay-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow: 0 20px 42px rgba(8, 104, 201, 0.28);
}

.pay-button.is-loading,
.pay-button:disabled {
  cursor: wait;
  opacity: 0.74;
  transform: none;
}

.pay-button.is-loading span::after {
  content: "...";
}

.payment-column small {
  display: block;
  max-width: 390px;
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
}

.payment-modal[hidden] {
  display: none;
}

.payment-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 18px;
}

.payment-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 24, 32, 0.52);
  backdrop-filter: blur(10px);
}

.payment-dialog {
  width: min(100%, 560px);
  max-height: calc(100vh - 36px);
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  overflow: auto;
  border: 1px solid rgba(8, 122, 83, 0.18);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 28px 90px rgba(16, 24, 32, 0.28);
  padding: 24px;
  animation: paymentDialogIn 220ms ease both;
}

.payment-close {
  width: 36px;
  height: 36px;
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: #eef2f4;
  color: var(--muted);
  cursor: pointer;
}

.payment-close svg {
  width: 19px;
  height: 19px;
}

.payment-dialog-head {
  display: grid;
  gap: 4px;
  padding-right: 48px;
}

.payment-dialog-head h2 {
  margin: 0;
  color: var(--ink-strong);
  font-size: 28px;
  line-height: 1.1;
}

.payment-dialog-head span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.embedded-checkout-frame {
  min-height: 420px;
}

@keyframes paymentDialogIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.checkout-error,
.cancel-alert {
  margin: 0 0 14px;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.45;
}

.checkout-error {
  color: var(--red);
  background: var(--red-bg);
  border: 1px solid #f3ceca;
}

.cancel-alert {
  color: #8a5a10;
  background: #fff8e8;
  border: 1px solid #efd89c;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: min(1180px, calc(100% - 36px));
  margin: 46px auto 28px;
}

.trust-strip article {
  min-height: 128px;
  display: grid;
  align-content: start;
  gap: 8px;
  border: 1px solid #dfe8e5;
  border-radius: 14px;
  padding: 18px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(16, 24, 32, 0.045);
}

.trust-strip svg {
  width: 24px;
  height: 24px;
  color: var(--green);
}

.trust-strip strong {
  color: var(--ink-strong);
  font-size: 14px;
  font-weight: 900;
}

.trust-strip span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.reviews-marquee {
  position: relative;
  overflow: hidden;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 58px;
  border-block: 1px solid #e7ecef;
  padding: 18px 0 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0.78), rgba(255,255,255,0));
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

.reviews-heading {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}

.reviews-heading span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.reviews-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: reviewsFlow 30s linear infinite;
}

.reviews-track:hover {
  animation-play-state: paused;
}

.reviews-track article {
  width: 270px;
  min-height: 132px;
  border: 1px solid #e3e8eb;
  border-radius: 12px;
  padding: 16px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(16, 24, 32, 0.04);
}

.reviews-track article > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.reviews-track span {
  color: #00b67a;
  font-size: 15px;
  letter-spacing: 0;
}

.reviews-track em {
  border: 1px solid #cdeee1;
  border-radius: 999px;
  padding: 3px 8px;
  color: var(--green);
  background: #f0fbf6;
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
}

.reviews-track strong {
  display: block;
  margin: 8px 0 5px;
  color: #1d242b;
  font-size: 14px;
}

.reviews-track p {
  margin: 0;
  color: #3f4b55;
  font-size: 13px;
  line-height: 1.35;
}

.reviews-track small {
  display: block;
  margin-top: 10px;
  color: #7a848d;
  font-size: 11px;
  font-weight: 850;
}

.faq-footer {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 52px;
  padding: 66px max(24px, calc((100vw - 1180px) / 2));
  background: #f7f7fb;
}

.faq-title h2 {
  margin: 0;
  color: #31414c;
  font-size: 44px;
  line-height: 1.05;
}

.faq-list {
  display: grid;
}

.faq-list details {
  border-bottom: 1px solid #d6d9de;
  padding: 0;
}

.faq-list summary {
  position: relative;
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 0 0 0 34px;
  color: #33414c;
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #8d959d;
  font-size: 25px;
}

.faq-list details[open] summary::before {
  transform: rotate(90deg);
}

.faq-list p {
  margin: -2px 0 20px 34px;
  color: var(--muted);
  line-height: 1.5;
  font-size: 14px;
  font-weight: 650;
}

.checkout-footer {
  border-top: 1px solid #dfe3e7;
  padding: 34px max(24px, calc((100vw - 1180px) / 2)) 42px;
  color: #5f6870;
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(4, minmax(130px, 1fr));
  gap: 26px;
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 14px;
}

.checkout-footer .brand-line {
  justify-content: start;
  color: var(--ink-strong);
}

.footer-brand p {
  margin: 0;
  max-width: 330px;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 650;
}

.checkout-footer nav {
  display: grid;
  gap: 10px;
}

.checkout-footer nav strong {
  margin-bottom: 3px;
  color: #1f2a33;
  font-size: 13px;
  font-weight: 900;
}

.checkout-footer nav a {
  color: #5f6870;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.checkout-footer nav a:hover {
  color: var(--green);
}

.payment-methods {
  margin: 30px 0 0;
  border-top: 1px solid #e7ecef;
  padding-top: 20px;
  color: #52616d;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.55;
}

.legal-note {
  margin: 16px 0 0;
  color: #68737c;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.6;
}

.copyright-note {
  margin: 24px 0 0;
  border-top: 1px solid #e7ecef;
  padding-top: 20px;
  color: #68737c;
  font-size: 12px;
  font-weight: 700;
}

.success-shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 28px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 206, 109, 0.28), transparent 34%),
    linear-gradient(135deg, rgba(9, 122, 83, 0.16), rgba(26, 98, 255, 0.12)),
    #f7faf9;
}

.success-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(19, 31, 40, 0.58);
  backdrop-filter: blur(14px);
}

.success-card {
  width: min(620px, 100%);
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 38px;
  background: #fff;
  box-shadow: var(--shadow);
  text-align: center;
}

.success-icon {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  margin: 0 auto 24px;
  border-radius: 22px;
  background: #fff3d2;
  color: var(--green);
}

.success-icon svg {
  width: 36px;
  height: 36px;
}

.success-card h1 {
  color: var(--ink);
  font-size: 42px;
}

.success-card p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 700;
}

.success-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0;
}

.success-summary div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: var(--soft);
}

.success-summary span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.success-summary strong {
  display: block;
  overflow-wrap: anywhere;
  color: var(--ink-strong);
}

.home-link {
  display: inline-flex;
  width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #fff;
  background: var(--green);
  font-weight: 900;
  text-decoration: none;
}

.home-link:disabled {
  cursor: wait;
  opacity: 0.58;
}

@keyframes reviewsFlow {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes particleFall {
  0% {
    opacity: 0;
    transform: translateY(-10px) rotate(0deg);
  }
  18% {
    opacity: 0.95;
  }
  100% {
    opacity: 0;
    transform: translateY(72vh) rotate(260deg);
  }
}

@media (max-width: 980px) {
  .checkout-layout,
  .faq-footer,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .checkout-layout {
    gap: 30px;
    margin-top: 30px;
  }

  .payment-column {
    padding: 24px;
  }

  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 36px;
  }
}

@media (max-width: 640px) {
  .checkout-topbar,
  .deal-strip {
    padding-left: 16px;
    padding-right: 16px;
  }

  .checkout-topbar {
    display: block;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .account-chip {
    margin-top: 10px;
  }

  .deal-strip {
    display: block;
    padding-top: 16px;
    padding-bottom: 16px;
    line-height: 1.5;
    text-align: center;
  }

  h1,
  h2 {
    font-size: 32px;
  }

  .report-preview {
    padding: 14px;
  }

  .chat-preview-row {
    grid-template-columns: 34px minmax(0, 1fr) auto;
    gap: 9px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .chat-preview-row i {
    width: 32px;
    height: 32px;
  }

  .social-proof-pill,
  .amount-row {
    display: block;
  }

  .avatar-stack {
    margin-top: 12px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .payment-modal {
    padding: 10px;
  }

  .payment-dialog {
    max-height: calc(100vh - 20px);
    border-radius: 16px;
    padding: 20px 14px 14px;
  }

  .payment-dialog-head {
    padding-right: 44px;
  }

  .payment-dialog-head h2 {
    font-size: 24px;
  }

  .faq-footer {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .faq-title h2 {
    font-size: 38px;
  }
}

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