/* ==========================================================================
   Forward Insights™ landing page
   Clean implementation build
   ========================================================================== */

/* Font loading ------------------------------------------------------------- */

@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 600;
  src:
    local("Roboto Condensed SemiBold"),
    local("RobotoCondensed-SemiBold"),
    local("Roboto Condensed");
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  src:
    local("Roboto Light"),
    local("Roboto-Light"),
    local("Roboto");
}

/* Design tokens ----------------------------------------------------------- */

:root {
  --color-navy-900: #061c2a;
  --color-navy-800: #0b2a3a;
  --color-navy-700: #0f3445;
  --color-ink: #111820;
  --color-muted: #61717b;
  --color-muted-light: #c4d4dd;
  --color-line: #d8e1e7;
  --color-paper: #f5f7f8;
  --color-white: #ffffff;
  --color-pink: #f05271;
  --color-pink-light: #ff6c88;

  --font-display: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  --font-body: "Roboto", Arial, sans-serif;

  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 30px;
  --shadow-soft: 0 18px 48px rgba(6, 28, 42, 0.08);
  --shadow-hero: 0 18px 52px rgba(0, 0, 0, 0.2);

  --container-max: 1180px;
  --site-header-height: 78px;
}

/* Base -------------------------------------------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-paper);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

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

button,
input {
  font: inherit;
}

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

.container {
  width: min(100% - 44px, var(--container-max));
  margin-inline: auto;
}

/* Header ------------------------------------------------------------------ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--site-header-height);
  background: var(--color-white);
  border-bottom: 1px solid #eef1f3;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--site-header-height);
  padding: 0 24px 0 78px;
}

.brand {
  display: flex;
  align-items: center;
  height: var(--site-header-height);
}

.brand__logo {
  width: 142px;
  height: auto;
}
/* Buttons ----------------------------------------------------------------- */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 20px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

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

.button--small {
  width: auto;
  min-width: 128px;
  padding: 11px 20px;
  font-size: 15px;
}

.button--primary {
  background: var(--color-pink);
  color: var(--color-white);
  box-shadow: 0 16px 38px rgba(240, 82, 113, 0.28);
}

.button--primary:hover {
  background: var(--color-pink-light);
}

.button--secondary-dark {
  background: var(--color-white);
  border-color: rgba(6, 28, 42, 0.22);
  color: var(--color-navy-900);
}

.button--secondary-dark:hover {
  background: #f6f8fa;
}

.button--secondary-light {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.26);
  color: var(--color-white);
}

.button--secondary-light:hover {
  background: rgba(255, 255, 255, 0.11);
}

/* Hero -------------------------------------------------------------------- */

.hero {
  position: relative;
  overflow: hidden;
  color: var(--color-white);
  background:
    radial-gradient(900px 480px at 78% 18%, rgba(140, 170, 189, 0.26), transparent 62%),
    linear-gradient(105deg, var(--color-navy-900) 0%, var(--color-navy-900) 57%, var(--color-navy-700) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -36%;
  left: 42%;
  height: 430px;
  background: linear-gradient(135deg, rgba(240, 82, 113, 0.22), rgba(140, 170, 189, 0.1));
  filter: blur(44px);
  transform: rotate(-8deg);
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 44px, var(--container-max));
  margin-inline: auto;
  padding: 104px 0 86px;
}

.eyebrow,
.slide-kicker,
.insights__title,
.insight-card__number {
  color: var(--color-pink);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 22px;
  font-size: 14px;
}

.hero__title {
  margin: 0 0 24px;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 600;
  line-height: 0.91;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.hero__title span {
  color: var(--color-pink);
}

.hero__lead {
  max-width: 1120px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
  line-height: 1.45;
}

/* Offer cards ------------------------------------------------------------- */

.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
  max-width: 1040px;
  margin-top: 28px;
}

.offer-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hero);
}

.offer-card h2 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
}

.offer-card p {
  margin: 0;
  color: var(--color-muted);
}

.offer-card--free {
  background: rgba(255, 255, 255, 0.96);
  color: var(--color-navy-900);
}

.offer-card--full {
  background: linear-gradient(135deg, var(--color-navy-800), var(--color-navy-900));
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--color-white);
}

.offer-card--full p,
.offer-card--full li {
  color: rgba(255, 255, 255, 0.72);
}

.price {
  margin: 22px 0;
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
}

.price span {
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 600;
}

.offer-card--full .price span {
  color: rgba(255, 255, 255, 0.58);
}

.lead-form {
  margin-top: auto;
  padding: 16px;
  background: var(--color-paper);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.lead-form label {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}

.lead-form label span {
  color: #52636d;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lead-form input {
  width: 100%;
  padding: 13px 12px;
  color: #1e2a31;
  background: var(--color-white);
  border: 1px solid #cad7de;
  border-radius: 12px;
}

.feature-list {
  margin: 20px 0 22px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid rgba(140, 170, 189, 0.23);
}

.feature-list li::before {
  content: "—";
  color: var(--color-pink);
  font-family: var(--font-display);
  font-weight: 600;
}

.offer-card__actions {
  display: grid;
  gap: 10px;
  margin-top: auto;
}


/* Offer card alignment refinement ---------------------------------------- */

.offer-card > p {
  min-height: 48px;
}

.price {
  min-height: 54px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.lead-form,
.offer-card__actions {
  margin-top: auto;
}

.offer-card--full .feature-list {
  margin-bottom: 28px;
}


/* Order form refinement --------------------------------------------------- */

.lead-form,
.order-form {
  margin-top: auto;
  padding: 16px;
  border-radius: var(--radius-md);
}

.order-form {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.order-form--compact {
  display: grid;
  gap: 10px;
}

.order-form label {
  display: grid;
  gap: 6px;
  margin: 0;
}

.order-form label span {
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.order-form input {
  width: 100%;
  padding: 11px 12px;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
}

.order-form input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.form-note {
  margin: -2px 0 0 !important;
  color: rgba(255, 255, 255, 0.62) !important;
  font-size: 12px;
  line-height: 1.35;
}

.offer-card > p {
  min-height: 48px;
}

.price {
  min-height: 54px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.offer-card--full .feature-list {
  margin-bottom: 18px;
}

.offer-card--full .feature-list li {
  padding: 8px 0;
}

@media (max-width: 900px) {
  .order-form .field-grid {
    grid-template-columns: 1fr;
  }
}


/* Free/full card spacing refinement -------------------------------------- */

.access-grid {
  align-items: start;
}

.feature-list--free {
  margin: 16px 0 18px;
}

.feature-list--free li {
  color: var(--color-muted);
}

.offer-card--free .lead-form {
  margin-top: 18px;
}

.offer-card > p {
  min-height: 0;
}

.price {
  min-height: 0;
}


/* Required field refinement ---------------------------------------------- */

.lead-form input:required,
.order-form input:required {
  scroll-margin-top: calc(var(--site-header-height) + 18px);
}


/* Equal-height report cards variant -------------------------------------- */

.access-grid {
  align-items: stretch;
}

.offer-card {
  min-height: 760px;
}

.offer-card--free,
.offer-card--full {
  height: 100%;
}

.offer-card .feature-list {
  margin: 18px 0 22px;
}

.offer-card .feature-list li {
  min-height: 38px;
  display: flex;
  align-items: center;
}

.offer-card--free .lead-form,
.offer-card--full .order-form {
  margin-top: auto;
}

.offer-card--free .lead-form,
.offer-card--full .order-form {
  min-height: 318px;
}

@media (max-width: 900px) {
  .offer-card {
    min-height: 0;
  }

  .offer-card--free .lead-form,
  .offer-card--full .order-form {
    min-height: 0;
  }
}


/* Exact card-row alignment variant --------------------------------------- */

.access-grid {
  align-items: stretch;
}

.offer-card--aligned {
  display: grid;
  grid-template-rows:
    34px     /* headline */
    56px     /* description */
    60px     /* price */
    198px    /* feature bullets */
    1fr;     /* form incl. CTA */
  gap: 0;
  min-height: 790px;
}

.offer-card--aligned .offer-card__title {
  align-self: start;
  margin: 0;
}

.offer-card--aligned .offer-card__description {
  align-self: start;
  min-height: 0;
  margin: 0;
}

.offer-card--aligned .offer-card__price {
  align-self: start;
  min-height: 0;
  margin: 0;
  padding-top: 6px;
}

.offer-card--aligned .offer-card__features {
  align-self: start;
  margin: 0;
  padding-top: 14px;
}

.offer-card--aligned .offer-card__features li {
  min-height: 40px;
  display: flex;
  align-items: center;
}

.offer-card--aligned .offer-card__form {
  align-self: stretch;
  display: grid;
  grid-template-rows: auto auto auto auto 1fr auto auto;
  margin-top: 0;
  min-height: 0;
}

.offer-card--free.offer-card--aligned .offer-card__form,
.offer-card--full.offer-card--aligned .offer-card__form {
  min-height: 0;
}

.offer-card--aligned .offer-card__form .button {
  align-self: end;
  margin-top: 12px;
}

/* Free form has one less visible field row than Full Report. This spacer
   keeps the final red CTA button on the same horizontal baseline. */
.offer-card--free.offer-card--aligned .offer-card__form::before {
  content: "";
  display: block;
  grid-row: 5;
}

@media (max-width: 900px) {
  .offer-card--aligned {
    display: flex;
    min-height: 0;
  }

  .offer-card--aligned .offer-card__form {
    display: grid;
  }

  .offer-card--free.offer-card--aligned .offer-card__form::before {
    display: none;
  }
}


/* Fine alignment fix for both offer forms -------------------------------- */

.offer-card--aligned .offer-card__form {
  display: grid;
  grid-template-rows:
    82px   /* first + last name row */
    82px   /* business email */
    82px   /* company */
    1fr
    auto   /* primary CTA */
    22px;  /* note / reserved space */
  row-gap: 12px;
  align-content: start;
}

.offer-card--aligned .offer-card__form > .field-grid {
  grid-row: 1;
}

.offer-card--aligned .offer-card__form > label:nth-of-type(1) {
  grid-row: 2;
}

.offer-card--aligned .offer-card__form > label:nth-of-type(2) {
  grid-row: 3;
}

.offer-card--aligned .offer-card__form > .button {
  grid-row: 5;
  align-self: end;
  margin-top: 0;
}

.offer-card--aligned .offer-card__form > .form-note {
  grid-row: 6;
  margin: 0 !important;
  align-self: start;
}

.offer-card--aligned .offer-card__form::after {
  content: "";
  grid-row: 6;
}

.offer-card--aligned .field-grid,
.offer-card--aligned .field-grid label,
.offer-card--aligned .lead-form label,
.offer-card--aligned .order-form label {
  margin: 0;
}

.offer-card--aligned .lead-form input,
.offer-card--aligned .order-form input {
  padding: 12px 12px;
}

.offer-card--aligned .lead-form,
.offer-card--aligned .order-form {
  padding: 16px;
}

@media (max-width: 900px) {
  .offer-card--aligned .offer-card__form {
    grid-template-rows: auto;
  }

  .offer-card--aligned .offer-card__form > .field-grid,
  .offer-card--aligned .offer-card__form > label:nth-of-type(1),
  .offer-card--aligned .offer-card__form > label:nth-of-type(2),
  .offer-card--aligned .offer-card__form > .button,
  .offer-card--aligned .offer-card__form > .form-note,
  .offer-card--aligned .offer-card__form::after {
    grid-row: auto;
  }
}


/* Equal input width fix --------------------------------------------------- */

.offer-card--aligned .offer-card__form,
.offer-card--aligned .offer-card__form > label,
.offer-card--aligned .offer-card__form > .field-grid {
  width: 100%;
}

.offer-card--aligned .field-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: 16px;
}

.offer-card--aligned .field-grid label,
.offer-card--aligned .lead-form label,
.offer-card--aligned .order-form label {
  min-width: 0;
}

.offer-card--aligned .lead-form input,
.offer-card--aligned .order-form input {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.offer-card--aligned .button {
  width: 100%;
}

/* Report preview section -------------------------------------------------- */

.report-section {
  padding: 70px 22px 84px;
}

.section-title {
  margin: 0 0 34px;
  color: var(--color-navy-900);
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.035em;
}

/* Carousel ---------------------------------------------------------------- */

.preview-carousel {
  margin-bottom: 46px;
}

.carousel {
  display: grid;
  grid-template-columns: 54px 1fr 54px;
  gap: 14px;
  align-items: center;
}

.carousel__button {
  height: 78px;
  color: var(--color-navy-900);
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(6, 28, 42, 0.07);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.carousel__button:hover {
  color: var(--color-white);
  background: var(--color-navy-900);
  transform: translateY(-1px);
}

.carousel__viewport {
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-white) 0%, var(--color-paper) 72%);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.carousel__track {
  display: flex;
  transition: transform 340ms ease;
}

.preview-slide {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-width: 100%;
  min-height: 300px;
  gap: 34px;
  align-items: center;
  padding: 36px 40px;
}

.preview-slide__media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tablet-frame {
  position: relative;
  width: 100%;
  max-width: 470px;
  padding: 8px;
  background: linear-gradient(180deg, #202a31, #11191f);
  border-radius: 18px;
  box-shadow:
    0 16px 34px rgba(6, 28, 42, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.tablet-frame::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 4px;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  transform: translateY(-50%);
}

.tablet-frame img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: 10px;
}

.preview-slide--locked .tablet-frame img {
  filter: blur(3px) saturate(0.9);
  transform: scale(1.025);
}

.preview-slide__content {
  max-width: 420px;
}

.slide-kicker {
  margin: 0 0 18px;
  font-size: 12px;
}

.preview-slide h3 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.preview-slide p:not(.slide-kicker) {
  margin: 0;
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.42;
}

.locked-badge {
  display: inline-flex;
  margin-top: 18px;
  padding: 8px 12px;
  color: var(--color-white);
  background: var(--color-pink);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.carousel__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  background: #c8d5dc;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.carousel__dot.is-active {
  width: 28px;
  background: var(--color-pink);
}

/* Insights ---------------------------------------------------------------- */

.insights__title {
  margin: 0 0 20px;
  font-size: 13px;
}

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

.insight-card {
  padding: 26px;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: 22px;
  box-shadow: 0 12px 34px rgba(6, 28, 42, 0.05);
}

.insight-card__number {
  margin: 0 0 34px;
  font-size: 13px;
}

.insight-card h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.06;
}

.insight-card p:not(.insight-card__number) {
  max-width: 92%;
  margin: 0;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.38;
}

/* Footer ------------------------------------------------------------------ */

.site-footer {
  padding: 0;
  color: #6f777a;
  background: #3f484b;
  border: 0;
}

.site-footer__inner {
  display: flex;
  align-items: center;
  min-height: 44px;
  width: min(100% - 52px, var(--container-max));
  margin-inline: auto;
}

.footer-legal {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #6f777a;
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}

.footer-legal a {
  color: #6f777a;
  text-decoration: none;
}

.footer-legal a:hover {
  color: #9ca4a7;
}

.footer-separator {
  color: #6f777a;
}

.linkedin-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 19px;
  height: 19px;
  margin-left: 2px;
  color: #3f484b !important;
  background: #c3c8ca;
  border-radius: 1px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.linkedin-link:hover {
  background: #ffffff;
  color: #3f484b !important;
}

/* Responsive -------------------------------------------------------------- */

@media (max-width: 900px) {
  :root {
    --site-header-height: 72px;
  }

  .site-nav {
    padding: 0 18px 0 20px;
  }

  .brand__logo {
    width: 142px;
  }

  .header-actions {
    gap: 8px;
  }

  .button--small {
    min-width: 112px;
    padding: 10px 14px;
    font-size: 14px;
  }

  .hero__inner {
    padding: 80px 0 70px;
  }

  .hero__lead br {
    display: none;
  }

  .access-grid,
  .insight-grid,
  .preview-slide {
    grid-template-columns: 1fr;
  }

  .carousel {
    grid-template-columns: 1fr;
  }

  .carousel__button {
    height: 46px;
  }

  .carousel__button--prev {
    order: 2;
  }

  .carousel__button--next {
    order: 3;
  }

  .preview-slide {
    padding: 28px 22px;
  }

  .field-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    display: block;
  }

  .footer-content p + p {
    margin-top: 16px;
  }
}

@media (max-width: 900px) {

  .site-footer__inner {
    width: min(100% - 32px, var(--container-max));
  }

  .footer-legal {
    flex-wrap: wrap;
    gap: 5px;
    font-size: 14px;
    line-height: 1.4;
    padding: 12px 0;
  }
}


/* Header logo fix --------------------------------------------------------- */

.site-nav {
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  height: var(--site-header-height);
}

.brand__logo {
  display: block;
  width: 142px;
  height: auto;
}


/* Hard equal field sizing override --------------------------------------- */

.offer-card--aligned .offer-card__form {
  display: grid !important;
  grid-template-columns: 1fr !important;
  grid-template-rows:
    82px
    82px
    82px
    1fr
    56px
    22px !important;
  width: 100% !important;
  max-width: none !important;
  justify-items: stretch !important;
  align-items: start !important;
  row-gap: 12px !important;
  box-sizing: border-box !important;
}

.offer-card--aligned .offer-card__form > .field-grid {
  grid-row: 1 !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 16px !important;
  width: 100% !important;
  max-width: none !important;
  justify-self: stretch !important;
  box-sizing: border-box !important;
}

.offer-card--aligned .offer-card__form > label:nth-of-type(1) {
  grid-row: 2 !important;
}

.offer-card--aligned .offer-card__form > label:nth-of-type(2) {
  grid-row: 3 !important;
}

.offer-card--aligned .offer-card__form > .button {
  grid-row: 5 !important;
  width: 100% !important;
  max-width: none !important;
  justify-self: stretch !important;
  margin: 0 !important;
  box-sizing: border-box !important;
}

.offer-card--aligned .offer-card__form > .form-note {
  grid-row: 6 !important;
}

.offer-card--aligned .offer-card__form > label,
.offer-card--aligned .offer-card__form .field-grid > label {
  display: grid !important;
  grid-template-columns: 1fr !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  justify-self: stretch !important;
  box-sizing: border-box !important;
  margin: 0 !important;
}

.offer-card--aligned .offer-card__form input {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
  padding: 12px 14px !important;
}

.offer-card--aligned .lead-form,
.offer-card--aligned .order-form {
  padding: 16px !important;
  min-height: 0 !important;
}

.offer-card--aligned .lead-form .field-grid,
.offer-card--aligned .order-form .field-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.offer-card--free.offer-card--aligned .offer-card__form::before {
  content: none !important;
  display: none !important;
}


/* Web3Forms status messages ---------------------------------------------- */

.form-status {
  min-height: 18px;
  margin: 4px 0 0 !important;
  color: var(--color-muted) !important;
  font-size: 12px;
  line-height: 1.35;
}

.offer-card--full .form-status {
  color: rgba(255, 255, 255, 0.62) !important;
}

.form-status.is-error {
  color: #d23b4f !important;
}

.form-status.is-success {
  color: #5d7a62 !important;
}


/* Exact bullet-row alignment fix ----------------------------------------- */

.offer-card--aligned .offer-card__features {
  align-self: stretch !important;
  display: grid !important;
  grid-template-rows: repeat(4, 42px) !important;
  gap: 0 !important;
  width: 100% !important;
  margin: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.offer-card--aligned .offer-card__features li,
.offer-card--full.offer-card--aligned .offer-card__features li,
.offer-card--free.offer-card--aligned .offer-card__features li {
  display: grid !important;
  grid-template-columns: 16px minmax(0, 1fr) !important;
  align-items: center !important;
  min-height: 0 !important;
  height: 42px !important;
  padding: 0 !important;
  margin: 0 !important;
  gap: 10px !important;
  line-height: 1.25 !important;
  border-top: 1px solid rgba(140, 170, 189, 0.23) !important;
}

.offer-card--aligned .offer-card__features li::before {
  display: block !important;
  align-self: center !important;
  line-height: 1 !important;
}


/* v59 refinements --------------------------------------------------------- */
.hero__lead {
  max-width: 920px;
}

.offer-card__header {
  display: grid;
  gap: 6px;
  margin-bottom: 10px;
}

.offer-card h2 {
  margin: 0;
  font-size: 31px;
  line-height: 0.98;
}

.offer-card__type {
  margin: 0;
  color: var(--color-pink) !important;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer-card__description {
  min-height: 54px;
}

.lead-form,
.order-form {
  padding: 14px;
}

.field-grid {
  gap: 10px;
}

.lead-form label,
.order-form label {
  gap: 5px;
  margin-bottom: 10px;
}

.lead-form label span,
.order-form label span {
  font-size: 10.5px;
}

.lead-form input,
.order-form input {
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 11px;
}

.offer-card--aligned .offer-card__form {
  gap: 0;
}

.offer-card--aligned .offer-card__form .button {
  margin-top: 10px;
}

@media (max-width: 900px) {
  .offer-card h2 {
    font-size: 28px;
  }
}


/* v60 three-report pricing grid ------------------------------------------ */

.access-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  max-width: 1320px !important;
  gap: 18px !important;
}

.offer-card {
  padding: 30px !important;
}

.offer-card__header {
  display: grid;
  gap: 6px;
  margin-bottom: 10px;
}

.offer-card h2 {
  margin: 0 !important;
  font-size: clamp(25px, 2.05vw, 31px) !important;
  line-height: 0.98 !important;
  letter-spacing: -0.035em !important;
}

.offer-card__type {
  margin: 0 !important;
  color: var(--color-pink) !important;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer-card__description {
  min-height: 78px !important;
}

.offer-card--aligned {
  grid-template-rows:
    76px
    86px
    58px
    176px
    1fr !important;
  min-height: 785px !important;
}

.offer-card--aligned .offer-card__features {
  align-self: stretch !important;
  display: grid !important;
  grid-template-rows: repeat(4, 40px) !important;
  gap: 0 !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.offer-card--aligned .offer-card__features li,
.offer-card--full.offer-card--aligned .offer-card__features li,
.offer-card--free.offer-card--aligned .offer-card__features li {
  display: grid !important;
  grid-template-columns: 16px minmax(0, 1fr) !important;
  align-items: center !important;
  min-height: 0 !important;
  height: 40px !important;
  padding: 0 !important;
  margin: 0 !important;
  gap: 10px !important;
  line-height: 1.2 !important;
  border-top: 1px solid rgba(140, 170, 189, 0.23) !important;
}

.offer-card--aligned .offer-card__form {
  display: grid !important;
  grid-template-columns: 1fr !important;
  grid-template-rows:
    72px
    72px
    72px
    1fr
    54px
    20px !important;
  row-gap: 10px !important;
  width: 100% !important;
  max-width: none !important;
  justify-items: stretch !important;
  align-items: start !important;
  box-sizing: border-box !important;
}

.offer-card--aligned .offer-card__form > .field-grid {
  grid-row: 1 !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px !important;
  width: 100% !important;
}

.offer-card--aligned .offer-card__form > label:nth-of-type(1) {
  grid-row: 2 !important;
}

.offer-card--aligned .offer-card__form > label:nth-of-type(2) {
  grid-row: 3 !important;
}

.offer-card--aligned .offer-card__form > .button {
  grid-row: 5 !important;
  width: 100% !important;
  margin: 0 !important;
}

.offer-card--aligned .offer-card__form > .form-note {
  grid-row: 6 !important;
  margin: 0 !important;
}

.lead-form,
.order-form {
  padding: 14px !important;
}

.offer-card--aligned .offer-card__form input {
  min-height: 42px !important;
  padding: 9px 12px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.lead-form label span,
.order-form label span {
  font-size: 10.5px !important;
}

@media (max-width: 1180px) {
  .access-grid {
    grid-template-columns: 1fr !important;
    max-width: 720px !important;
  }

  .offer-card--aligned {
    min-height: 0 !important;
  }
}

@media (max-width: 900px) {
  .offer-card--aligned {
    display: flex !important;
  }

  .offer-card__description {
    min-height: 0 !important;
  }
}


/* v61 paid-card CTA and subtitle spacing refinement ---------------------- */

.offer-card__header {
  margin-bottom: 18px !important;
}

.offer-card__type {
  margin-bottom: 4px !important;
  line-height: 1.2 !important;
}

.offer-card--aligned .offer-card__form {
  grid-template-rows:
    72px
    72px
    72px
    1fr
    54px
    0px !important;
}

/* Paid report forms no longer have a helper note below the CTA. */
.offer-card--full .offer-card__form,
.offer-card--teardown .offer-card__form {
  grid-template-rows:
    72px
    72px
    72px
    1fr
    54px
    0px !important;
}

.offer-card--aligned .offer-card__form > .form-note {
  display: none !important;
}


/* v62 three-card spacing refinement -------------------------------------- */
.offer-card {
  padding: 30px !important;
}

.offer-card__header {
  gap: 10px !important;
  margin-bottom: 18px !important;
}

.offer-card__type {
  margin-top: 0 !important;
  margin-bottom: 8px !important;
  line-height: 1.15 !important;
}

.offer-card__description {
  min-height: 74px !important;
  line-height: 1.32 !important;
}

.offer-card__price {
  min-height: 66px !important;
  margin: 0 !important;
  padding-top: 2px !important;
}

.offer-card--aligned {
  grid-template-rows:
    98px   /* title + red subtype */
    84px   /* short description */
    70px   /* price */
    206px  /* bullets */
    auto !important;
  min-height: 758px !important;
}

.offer-card--aligned .offer-card__features {
  align-self: start !important;
  display: grid !important;
  grid-template-rows: repeat(4, 46px) !important;
  gap: 0 !important;
  margin: 0 !important;
  padding: 6px 0 0 !important;
}

.offer-card--aligned .offer-card__features li {
  min-height: 46px !important;
  display: flex !important;
  align-items: center !important;
  line-height: 1.18 !important;
  padding: 0 !important;
}

.offer-card--aligned .offer-card__features li::before {
  margin-top: 0 !important;
}

.offer-card--aligned .offer-card__form {
  display: grid !important;
  grid-template-rows:
    74px   /* first + last name */
    74px   /* business email */
    74px   /* company */
    8px    /* compact spacer */
    56px   /* CTA */
    0px !important;
  row-gap: 10px !important;
  align-content: start !important;
  margin-top: 8px !important;
  min-height: 0 !important;
}

.offer-card--aligned .offer-card__form > .field-grid {
  grid-row: 1 !important;
}

.offer-card--aligned .offer-card__form > label:nth-of-type(1) {
  grid-row: 2 !important;
}

.offer-card--aligned .offer-card__form > label:nth-of-type(2) {
  grid-row: 3 !important;
}

.offer-card--aligned .offer-card__form > .button {
  grid-row: 5 !important;
  align-self: end !important;
  margin-top: 0 !important;
}

.offer-card--aligned .offer-card__form > .form-note,
.offer-card--aligned .offer-card__form > .form-status {
  grid-row: 6 !important;
  min-height: 0 !important;
  margin: 0 !important;
}

.offer-card--aligned .offer-card__form::before,
.offer-card--aligned .offer-card__form::after {
  display: none !important;
  content: none !important;
}

/* keep inputs compact but consistent */
.field-grid {
  gap: 10px !important;
}

.lead-form,
.order-form {
  padding: 14px !important;
}

.lead-form label,
.order-form label {
  gap: 5px !important;
  margin: 0 !important;
}

.lead-form input,
.order-form input {
  min-height: 42px !important;
  padding: 10px 12px !important;
}

@media (max-width: 1100px) {
  .access-grid {
    grid-template-columns: 1fr !important;
  }

  .offer-card--aligned {
    grid-template-rows: auto !important;
    min-height: 0 !important;
  }

  .offer-card--aligned .offer-card__features,
  .offer-card--aligned .offer-card__form {
    grid-template-rows: none !important;
  }
}


/* v63 compact three-card layout ------------------------------------------ */

.hero__inner {
  padding-top: 92px !important;
  padding-bottom: 54px !important;
}

.hero__lead {
  margin-bottom: 22px !important;
}

.access-grid {
  gap: 16px !important;
  max-width: 1280px !important;
  margin-top: 22px !important;
}

.offer-card {
  padding: 26px !important;
  border-radius: 26px !important;
}

.offer-card__header {
  gap: 5px !important;
  margin-bottom: 14px !important;
}

.offer-card h2 {
  font-size: clamp(24px, 1.85vw, 29px) !important;
  line-height: 0.98 !important;
  letter-spacing: -0.035em !important;
}

.offer-card__type {
  font-size: 11px !important;
  line-height: 1.05 !important;
  letter-spacing: 0.12em !important;
  margin: 0 !important;
}

.offer-card__description {
  min-height: 48px !important;
  font-size: 15px !important;
  line-height: 1.3 !important;
}

.offer-card__price {
  min-height: 54px !important;
  padding-top: 0 !important;
}

.price {
  font-size: 38px !important;
}

.price span {
  font-size: 12px !important;
}

.offer-card--aligned {
  grid-template-rows:
    72px   /* title + type */
    54px   /* max 1-2 sentence description */
    58px   /* price */
    150px  /* compact bullets */
    auto !important;
  min-height: 686px !important;
}

.offer-card--aligned .offer-card__features {
  grid-template-rows: repeat(4, 34px) !important;
  padding: 4px 0 0 !important;
}

.offer-card--aligned .offer-card__features li,
.offer-card--full.offer-card--aligned .offer-card__features li,
.offer-card--free.offer-card--aligned .offer-card__features li {
  height: 34px !important;
  min-height: 34px !important;
  font-size: 14px !important;
  line-height: 1.15 !important;
  gap: 8px !important;
  grid-template-columns: 14px minmax(0, 1fr) !important;
}

.offer-card--aligned .offer-card__form {
  grid-template-rows:
    60px   /* first + last name */
    60px   /* business email */
    60px   /* company */
    4px    /* compact spacer */
    48px   /* CTA */
    0px !important;
  row-gap: 8px !important;
  margin-top: 6px !important;
}

.lead-form,
.order-form {
  padding: 12px !important;
  border-radius: 20px !important;
}

.field-grid {
  gap: 8px !important;
}

.lead-form label,
.order-form label {
  gap: 4px !important;
  margin: 0 !important;
}

.lead-form label span,
.order-form label span {
  font-size: 9.5px !important;
  letter-spacing: 0.12em !important;
}

.lead-form input,
.order-form input,
.offer-card--aligned .offer-card__form input {
  min-height: 36px !important;
  padding: 8px 10px !important;
  border-radius: 10px !important;
  font-size: 14px !important;
}

.button {
  min-height: 48px !important;
  padding: 12px 18px !important;
  font-size: 13px !important;
}

.form-status {
  display: none !important;
}

@media (max-width: 1180px) {
  .offer-card--aligned {
    min-height: 0 !important;
  }
}


/* v64 aligned report-type label spacing ---------------------------------- */

/* Give the red subtype labels more breathing room and lock them to the
   same vertical baseline across all three cards. */
.offer-card__header {
  display: grid !important;
  grid-template-rows: 58px 18px !important;
  gap: 12px !important;
  margin-bottom: 20px !important;
}

.offer-card h2 {
  align-self: start !important;
  min-height: 58px !important;
}

.offer-card__type {
  align-self: start !important;
  min-height: 18px !important;
  line-height: 1.1 !important;
  margin: 0 !important;
}

/* Increase the card row reserved for title + red report type without moving
   the aligned price / bullet / form blocks out of sync. */
.offer-card--aligned {
  grid-template-rows:
    110px  /* title + red subtype + spacing */
    52px   /* description */
    58px   /* price */
    150px  /* compact bullets */
    auto !important;
  min-height: 714px !important;
}

/* Keep compact text blocks readable after adding top spacing. */
.offer-card__description {
  min-height: 52px !important;
  line-height: 1.28 !important;
}

@media (max-width: 1180px) {
  .offer-card__header {
    grid-template-rows: auto auto !important;
  }

  .offer-card h2 {
    min-height: 0 !important;
  }
}
