.results-page {
  width: 100%;
  max-width: var(--mobile-max-width);
  min-height: 100dvh;
  margin: 0 auto;

  padding:
    calc(var(--safe-top) + 8px)
    clamp(14px, 4vw, 18px)
    calc(var(--safe-bottom) + 16px);

  background:
    radial-gradient(circle at 50% 0%, rgba(255, 230, 237, 0.42), transparent 34%),
    linear-gradient(180deg, #fffdfb 0%, #fff8f8 100%);
}

/* TOP */

.results-top {
  text-align: center;
}

.results-logo {
  width: clamp(28px, 7vw, 34px);
  height: clamp(28px, 7vw, 34px);
  object-fit: contain;
  margin: 0 auto 5px;
}

.results-title {
  position: relative;
  font-family: var(--font-title);
  font-size: clamp(33px, 8.7vw, 42px);
  line-height: 0.98;
  letter-spacing: -1.5px;
  color: var(--color-navy);
}

.results-title::before,
.results-title::after {
  content: "✦";
  position: absolute;
  bottom: 12px;
  color: #ffc9d5;
  font-family: var(--font-main);
  font-size: 14px;
}

.results-title::before {
  left: 36px;
}

.results-title::after {
  right: 36px;
}

.results-title span {
  display: block;
  color: #f25578;
}

.results-subtitle {
  max-width: 326px;
  margin: 9px auto 0;
  color: #51586f;
  font-size: clamp(12.4px, 3.25vw, 14.5px);
  line-height: 1.4;
  font-weight: 520;
}

.results-content {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

/* RESULT MATCH CARD */

.results-match-card {
  min-height: 136px;
  padding: 13px;

  display: grid;
  grid-template-columns: 122px 1fr;
  align-items: center;
  gap: 13px;

  border-radius: 22px;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 47, 117, 0.05), transparent 36%),
    rgba(255, 255, 255, 0.98);
  box-shadow:
    0 16px 34px rgba(7, 20, 63, 0.08),
    inset 0 0 0 1px rgba(255, 220, 230, 0.7);
  border: 1px solid rgba(255, 219, 228, 0.95);
}

.results-donut {
  --size: 116px;
  --ring-width: 10px;

  width: var(--size);
  height: var(--size);
  border-radius: 50%;

  display: grid;
  place-items: center;

  background:
    conic-gradient(
      from -18deg,
      #ff3d7d 0%,
      #ff6b3d calc(var(--result-percent) * 0.55%),
      var(--result-ring-color) calc(var(--result-percent) * 1%),
      #ffe1e9 0
    );

  position: relative;
  box-shadow:
    0 10px 24px rgba(255, 47, 117, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

.results-donut::before {
  content: "";
  position: absolute;
  inset: var(--ring-width);
  border-radius: inherit;
  background:
    radial-gradient(circle, #ffffff 0%, #fffafd 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 229, 237, 0.8);
}

.results-donut-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 78px;
}

.results-donut-inner strong {
  display: block;
  font-family: var(--font-title);
  color: var(--color-navy);
  font-size: 34px;
  line-height: 0.88;
  letter-spacing: -1px;
}

.results-donut-inner span {
  display: block;
  margin-top: 5px;
  color: var(--result-ring-color);
  font-size: 12.5px;
  line-height: 1.02;
  font-weight: 900;
}

.results-donut-inner small {
  display: block;
  margin-top: 5px;
  color: var(--result-ring-color);
  font-size: 18px;
  line-height: 1;
}

.results-match-text p {
  margin-bottom: 5px;
  color: var(--color-navy);
  font-size: 13.4px;
  line-height: 1.15;
  font-weight: 900;
}

.results-match-text h2 {
  margin-bottom: 7px;
  font-family: var(--font-title);
  color: #f25578;
  font-size: clamp(19px, 4.9vw, 23px);
  line-height: 1.03;
  letter-spacing: -0.5px;
}

.results-match-text span {
  display: block;
  color: #444b63;
  font-size: 12.2px;
  line-height: 1.34;
  font-weight: 560;
}

/* DISCOVER */

.results-discover h2 {
  text-align: center;
  font-family: var(--font-title);
  color: var(--color-navy);
  font-size: clamp(22px, 5.9vw, 28px);
  line-height: 1;
  letter-spacing: -0.6px;
  margin-bottom: 9px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.results-discover h2 span {
  color: #ffc9d5;
  font-family: var(--font-main);
  font-size: 14px;
}

.results-discover-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.discover-result-item {
  min-height: 78px;
  padding: 8px 6px;

  border-radius: 15px;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.discover-result-item span {
  width: 32px;
  height: 32px;
  border-radius: 50%;

  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.discover-result-item svg {
  width: 23px;
  height: 23px;
}

.discover-result-item p {
  color: var(--color-navy);
  font-size: 9.4px;
  line-height: 1.16;
  font-weight: 760;
}

.discover-pink {
  background: #fff0f4;
  color: #ff3d7d;
}

.discover-purple {
  background: #f5edff;
  color: #9b62e8;
}

.discover-green {
  background: #ecfbf6;
  color: #28c991;
}

.discover-orange {
  background: #fff3ea;
  color: #f2a032;
}

/* REPORT CARD */

.full-report-card {
  min-height: 120px;
  padding: 12px;

  display: grid;
  grid-template-columns: 102px 1fr;
  align-items: center;
  gap: 14px;

  border-radius: 16px;
  color: #ffffff;

  background:
    radial-gradient(circle at 13% 20%, rgba(255, 255, 255, 0.13), transparent 28%),
    linear-gradient(135deg, #07143f 0%, #071b4e 100%);

  box-shadow: 0 13px 26px rgba(7, 20, 63, 0.16);
}

.report-book {
  width: 90px;
  height: 104px;
  perspective: 700px;
}

.report-book-cover {
  width: 100%;
  height: 100%;
  padding: 14px 9px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  border-radius: 4px 9px 9px 4px;

  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 7px, transparent 7px),
    linear-gradient(135deg, #101c47 0%, #172960 100%);

  box-shadow:
    9px 10px 18px rgba(0, 0, 0, 0.22),
    inset -7px 0 12px rgba(255, 255, 255, 0.08);

  transform: rotateY(-10deg);
}

.report-book-cover img {
  width: 25px;
  height: 25px;
  object-fit: contain;
  margin-bottom: 8px;
}

.report-book-cover p {
  color: #ffffff;
  font-family: var(--font-title);
  font-size: 15.5px;
  line-height: 1.08;
  text-align: center;
}

.report-info h2 {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.08;
  font-weight: 850;
}

.report-info ul {
  display: grid;
  gap: 6px;
}

.report-info li {
  position: relative;
  padding-left: 23px;
  font-size: 11.5px;
  line-height: 1.2;
  font-weight: 550;
}

.report-info li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;

  width: 17px;
  height: 17px;
  border-radius: 50%;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: #ff6b8f;
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
}

/* PRICE */

.price-card {
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 28px rgba(7, 20, 63, 0.08);
  border: 1px solid rgba(236, 236, 242, 0.95);
}

.price-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 9px;
}

.old-price-wrap {
  text-align: right;
}

.old-price {
  position: relative;
  color: #8b8e9f;
  font-size: 21px;
  line-height: 1;
  font-weight: 720;
}

.old-price::after {
  content: "";
  position: absolute;
  left: -4px;
  right: -4px;
  top: 50%;
  height: 2px;
  background: #f25578;
  transform: rotate(-10deg);
}

.price-main {
  color: #f25578;
  font-family: var(--font-title);
  font-size: 56px;
  line-height: 0.86;
  letter-spacing: -1.5px;
  font-weight: 900;
}

.payment-pill {
  justify-self: start;
  padding: 8px 10px;
  border-radius: 999px;
  background: #fff1f3;
  color: #f25578;
  font-size: 10.5px;
  line-height: 1.15;
  text-align: center;
  font-weight: 850;
}

.instant-access {
  margin-top: 8px;
  text-align: center;
  color: #686b7e;
  font-size: 11.5px;
  line-height: 1.2;
  font-weight: 680;
}

.instant-access span {
  color: #ff6b3d;
}

.instant-access i {
  margin: 0 6px;
  font-style: normal;
  color: #9da0ad;
}

.unlock-report-button {
  position: relative;
  margin-top: 11px;
  min-height: 48px;
  border-radius: 13px;
  font-size: 17.5px;
  font-weight: 850;
  box-shadow: 0 12px 24px rgba(255, 47, 117, 0.27);
}

.unlock-icon {
  width: 21px;
  height: 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.unlock-icon svg {
  width: 21px;
  height: 21px;
}

.unlock-arrow {
  position: absolute;
  right: 18px;
  font-size: 25px;
  line-height: 1;
}

/* PAYMENT LOGOS */

.payment-strip {
  margin-top: 10px;
  min-height: 42px;
  padding: 8px 10px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 7px;

  border-radius: 14px;
  border: 1px solid #eef0f5;
  background: #ffffff;
}

.brand-logo {
  height: 25px;
  min-width: 45px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 7px;
  background: #ffffff;
  white-space: nowrap;
  line-height: 1;
}

.paypal-brand {
  gap: 3px;
  color: #003087;
}

.paypal-brand b {
  width: 17px;
  height: 17px;
  display: inline-grid;
  place-items: center;

  border-radius: 4px;
  background: #0070ba;
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  font-style: italic;
}

.paypal-brand strong {
  color: #003087;
  font-size: 12.5px;
  font-weight: 900;
  letter-spacing: -0.4px;
}

.visa-brand {
  color: #1a4fb7;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: -0.6px;
  font-style: italic;
}

.mastercard-brand {
  width: 41px;
  min-width: 41px;
  position: relative;
}

.mastercard-brand i,
.mastercard-brand b {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.mastercard-brand i {
  left: 8px;
  background: #eb001b;
}

.mastercard-brand b {
  right: 8px;
  background: #f79e1b;
  opacity: 0.9;
}

.apple-brand {
  min-width: 48px;
  padding: 0 7px;
  color: #111111;
  border: 1px solid #dde0e7;
  font-size: 13px;
  font-weight: 900;
}

.google-brand {
  min-width: 52px;
  gap: 4px;
  padding: 0 6px;
  color: #3c4043;
  border: 1px solid #dde0e7;
}

.google-brand b {
  color: #4285f4;
  font-size: 15px;
  font-weight: 950;
}

.google-brand strong {
  color: #3c4043;
  font-size: 12.5px;
  font-weight: 850;
}

/* TRUST STRIP */

.trust-strip {
  margin-top: 8px;
  min-height: 43px;
  padding: 6px 0;

  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  align-items: center;

  border-radius: 14px;
  border: 1px solid #eef0f5;
  background: #ffffff;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  color: var(--color-navy);
  font-size: 10.5px;
  line-height: 1.12;
  font-weight: 850;
}

.trust-item svg {
  width: 22px;
  height: 22px;
}

.trust-divider {
  width: 1px;
  height: 30px;
  background: #e4e6ee;
}

/* TESTIMONIAL */

.testimonial-card {
  position: relative;
  min-height: 88px;
  padding: 12px;

  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 12px;

  border-radius: 18px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 12px 28px rgba(7, 20, 63, 0.07);
  border: 1px solid rgba(236, 236, 242, 0.95);
  overflow: hidden;
}

.testimonial-image {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-stars {
  color: #ffc72c;
  font-size: 12px;
  letter-spacing: 1.5px;
  line-height: 1;
  margin-bottom: 5px;
}

.testimonial-content p {
  max-width: 235px;
  color: var(--color-navy);
  font-size: 12px;
  line-height: 1.28;
  font-weight: 560;
}

.testimonial-content strong {
  display: block;
  margin-top: 5px;
  color: #f25578;
  font-size: 11.5px;
  font-weight: 850;
}

.quote-mark {
  position: absolute;
  right: 18px;
  bottom: 2px;
  color: #ffe2e8;
  font-family: var(--font-title);
  font-size: 56px;
  line-height: 1;
}

/* IPHONE PRO MAX */

@media (min-width: 414px) and (min-height: 890px) {
  .results-page {
    padding-top: calc(var(--safe-top) + 9px);
  }

  .results-content {
    gap: 10px;
  }
}

/* IPHONE NORMAL / PRO */

@media (max-width: 414px) and (max-height: 880px) {
  .results-title {
    font-size: 35px;
  }

  .results-subtitle {
    font-size: 12px;
  }

  .results-match-card {
    grid-template-columns: 108px 1fr;
    min-height: 124px;
    padding: 11px;
  }

  .results-donut {
    --size: 102px;
    --ring-width: 9px;
  }

  .results-donut-inner strong {
    font-size: 31px;
  }

  .results-donut-inner span {
    font-size: 11.5px;
  }

  .results-match-text p {
    font-size: 12.4px;
  }

  .results-match-text h2 {
    font-size: 20px;
  }

  .results-match-text span {
    font-size: 11.4px;
  }

  .discover-result-item {
    min-height: 72px;
  }

  .full-report-card {
    grid-template-columns: 92px 1fr;
    min-height: 112px;
  }

  .report-book {
    width: 82px;
    height: 96px;
  }

  .report-info h2 {
    font-size: 16px;
  }

  .report-info li {
    font-size: 10.5px;
  }

  .price-main {
    font-size: 50px;
  }

  .unlock-report-button {
    min-height: 46px;
    font-size: 16px;
  }

  .payment-strip {
    gap: 5px;
    padding-left: 7px;
    padding-right: 7px;
  }

  .brand-logo {
    min-width: 39px;
  }

  .paypal-brand strong {
    font-size: 10.8px;
  }

  .visa-brand {
    font-size: 12.5px;
  }

  .apple-brand,
  .google-brand {
    min-width: 43px;
    font-size: 11px;
  }

  .google-brand strong {
    font-size: 11px;
  }

  .trust-item {
    font-size: 9.5px;
  }
}

/* SMALL PHONES */

@media (max-width: 374px), (max-height: 760px) {
  .results-page {
    padding-left: 13px;
    padding-right: 13px;
  }

  .results-title {
    font-size: 31px;
  }

  .results-match-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .results-donut {
    margin: 0 auto;
  }

  .results-discover-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .full-report-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .report-book {
    margin: 0 auto;
  }

  .price-row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .old-price-wrap {
    text-align: center;
  }

  .payment-pill {
    justify-self: center;
  }

  .payment-strip {
    flex-wrap: wrap;
    justify-content: center;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 10px;
  }

  .trust-divider {
    display: none;
  }
}


/* Real report book image */

.report-book {
  width: 96px;
  height: 118px;

  display: flex;
  align-items: center;
  justify-content: center;

  perspective: none;
}

.report-book-image {
  width: 100%;
  height: 100%;
  object-fit: contain;

  display: block;

  filter:
    drop-shadow(0 12px 18px rgba(0, 0, 0, 0.28))
    drop-shadow(0 0 14px rgba(255, 107, 143, 0.12));
}

@media (max-width: 414px) and (max-height: 880px) {
  .report-book {
    width: 86px;
    height: 106px;
  }
}

@media (max-width: 374px), (max-height: 760px) {
  .report-book {
    width: 100px;
    height: 132px;
  }
}

/* QUICK TOP PURCHASE CARD */

.results-page {
  padding-bottom: calc(var(--safe-bottom) + 112px);
}

.quick-unlock-card {
  min-height: 72px;
  padding: 11px 12px;

  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;

  border-radius: 18px;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 47, 117, 0.08), transparent 38%),
    #ffffff;

  border: 1px solid rgba(255, 220, 230, 0.95);
  box-shadow: 0 12px 26px rgba(7, 20, 63, 0.07);
}

.quick-unlock-left {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.quick-lock {
  width: 38px;
  height: 38px;
  border-radius: 50%;

  display: grid;
  place-items: center;

  flex-shrink: 0;

  background: linear-gradient(135deg, #fff0f4 0%, #ffe6ee 100%);
  color: #f25578;
}

.quick-lock svg {
  width: 20px;
  height: 20px;
}

.quick-unlock-left h3 {
  color: var(--color-navy);
  font-size: 15px;
  line-height: 1.05;
  font-weight: 950;
}

.quick-unlock-left p {
  margin-top: 4px;
  color: #6d7085;
  font-size: 10.8px;
  line-height: 1.25;
  font-weight: 650;
}

.quick-unlock-button {
  min-width: 92px;
  min-height: 44px;
  padding: 0 13px;
  border-radius: 999px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  background: var(--gradient-primary);
  color: #ffffff;

  font-size: 12px;
  line-height: 1;
  font-weight: 900;

  box-shadow: 0 10px 20px rgba(255, 47, 117, 0.22);
}

.quick-unlock-button strong {
  font-size: 16px;
  font-weight: 950;
}

/* STICKY RESULTS CTA */

.results-sticky-cta {
  position: fixed;
  left: 50%;
  bottom: calc(var(--safe-bottom) + 8px);
  z-index: 70;

  width: min(calc(100% - 28px), calc(var(--mobile-max-width) - 28px));
  transform: translateX(-50%);

  padding: 10px;
  border-radius: 18px;

  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(236, 236, 242, 0.95);

  box-shadow:
    0 -10px 28px rgba(7, 20, 63, 0.08),
    0 12px 30px rgba(7, 20, 63, 0.1);

  backdrop-filter: blur(14px);
}

.results-sticky-button {
  width: 100%;
  min-height: 52px;
  border-radius: 15px;

  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 9px;

  padding: 0 14px;

  background: linear-gradient(135deg, #ff4f54 0%, #ff2f75 48%, #ff824e 100%);
  color: #ffffff;

  box-shadow:
    0 13px 25px rgba(255, 47, 117, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.results-sticky-button span {
  width: 25px;
  height: 25px;
  border-radius: 50%;

  display: grid;
  place-items: center;

  background: rgba(255, 255, 255, 0.18);
}

.results-sticky-button svg {
  width: 16px;
  height: 16px;
}

.results-sticky-button strong {
  text-align: left;
  font-size: 15px;
  line-height: 1;
  font-weight: 950;
}

.results-sticky-button em {
  padding: 7px 10px;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;

  font-size: 12px;
  line-height: 1;
  font-style: normal;
  font-weight: 950;
}

.results-sticky-cta p {
  margin-top: 7px;
  text-align: center;
  color: #697085;
  font-size: 10.3px;
  line-height: 1.2;
  font-weight: 700;
}

/* MAKE FIRST SCREEN MORE SALES FOCUSED */

@media (max-width: 430px) {
  .results-content {
    gap: 9px;
  }

  .results-top {
    padding-top: 2px;
  }

  .results-logo {
    width: 28px;
    height: 28px;
    margin-bottom: 4px;
  }

  .results-title {
    font-size: clamp(32px, 8.2vw, 39px);
  }

  .results-subtitle {
    margin-top: 7px;
    font-size: 12.5px;
    line-height: 1.35;
  }

  .results-match-card {
    min-height: 126px;
    padding: 11px;
  }

  .results-discover h2 {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .results-discover-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .discover-result-item {
    min-height: 66px;
    padding: 8px;
  }

  .discover-result-item span {
    width: 30px;
    height: 30px;
  }

  .discover-result-item p {
    font-size: 10.5px;
  }
}

@media (max-width: 374px), (max-height: 760px) {
  .quick-unlock-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .quick-unlock-left {
    justify-content: center;
  }

  .quick-unlock-button {
    width: 100%;
  }

  .results-sticky-button strong {
    font-size: 13.5px;
  }

  .results-sticky-cta p {
    display: none;
  }
}