/**
 * Notifal single "alternative" comparison landing page styles.
 *
 * Scoped under .notifal-alt-page to avoid leaking into the rest of the site.
 * Uses the Notifal brand purple palette and is fully responsive.
 *
 * @package Notifal
 * @since   1.4.0
 */

/* ---------------------------------------------------------------------------
 * Root scope, tokens & base
 * ------------------------------------------------------------------------- */
.notifal-alt-page {
  --purple-primary: #7b2cbf;
  --purple-deep: #5a189a;
  --purple-light: #c77dff;
  --purple-pale: #f8ebff;
  --purple-mid: #9d4edd;
  --purple-dark: #3c096c;
  --ink: #1a1a2e;
  --muted: #6b6b8a;
  --line: #edd9ff;
  --win: #16a34a;
  --neutral: #d97706;
  --no: #cbd0dc;
  --white: #ffffff;

  font-family: "Raleway", sans-serif;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.notifal-alt-page *,
.notifal-alt-page *::before,
.notifal-alt-page *::after {
  box-sizing: border-box;
}

/* Shared section shells */
.notifal-alt-page section {
  padding: 72px 24px;
}

.notifal-alt-page .nalt-section__head {
  max-width: 720px;
  margin: 0 auto 44px;
  text-align: center;
}

.notifal-alt-page .nalt-section__head--left {
  margin-left: 0;
  text-align: left;
}

.notifal-alt-page .nalt-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--purple-primary);
  margin-bottom: 12px;
}

.notifal-alt-page .nalt-eyebrow--light {
  color: var(--purple-light);
}

.notifal-alt-page .nalt-section__title {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.4px;
  margin: 0 0 14px;
  color: var(--ink);
}

.notifal-alt-page .nalt-section__title--light {
  color: var(--white);
}

.notifal-alt-page .nalt-section__sub {
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}

.notifal-alt-page .nalt-section__sub--left {
  margin: 0;
}

/* Brand wordmarks and logo images */
.notifal-alt-page .nalt-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.notifal-alt-page .nalt-brand--notifal.nalt-brand--text {
  font-weight: 800;
  letter-spacing: -0.3px;
  background: linear-gradient(135deg, var(--purple-primary), var(--purple-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--purple-primary);
}

.notifal-alt-page .nalt-brand--competitor.nalt-brand--text {
  font-weight: 800;
  color: #334155;
}

.notifal-alt-page .nalt-brand__img-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 10px;
  background: #122140;
  border: 1px solid #e2e8f0;
  min-height: 44px;
  min-width: 193px;
}

.notifal-alt-page .nalt-brand__img {
  display: block;
  max-width: 160px;
  width: auto;
  height: auto;
  max-height: 36px;
  object-fit: contain;
}

.notifal-alt-page .nalt-brand__img--site {
  max-height: 40px;
}

.notifal-alt-page .nalt-brand--sm .nalt-brand__img,
.notifal-alt-page .nalt-brand--sm .nalt-brand__img--site {
  max-height: 28px;
}

.notifal-alt-page .nalt-brand--versus .nalt-brand__img--site {
  max-height: 34px;
}

.notifal-alt-page .nalt-brand--pricing .nalt-brand__img--site {
  max-height: 32px;
}

.notifal-alt-page .nalt-brand--sm .nalt-brand__img-wrap {
  min-height: 36px;
  min-width: 96px;
  padding: 6px 10px;
}

/* Buttons */
.notifal-alt-page .nalt-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 26px;
  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.notifal-alt-page .nalt-btn--primary {
  background: linear-gradient(135deg, var(--purple-primary), var(--purple-deep));
  color: var(--white);
  box-shadow: 0 8px 24px rgba(123, 44, 191, 0.28);
}

.notifal-alt-page .nalt-hero .nalt-btn--primary {
  background: var(--white);
  color: var(--purple-primary);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22), 0 2px 8px rgba(0, 0, 0, 0.12);
}

.notifal-alt-page .nalt-hero .nalt-btn--primary:hover {
  background: var(--purple-pale);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}

.notifal-alt-page .nalt-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(123, 44, 191, 0.38);
}

.notifal-alt-page .nalt-btn--ghost {
  background: var(--white);
  color: var(--purple-primary);
  border: 1.5px solid var(--line);
}

.notifal-alt-page .nalt-btn--ghost:hover {
  border-color: var(--purple-light);
  background: var(--purple-pale);
}

.notifal-alt-page .nalt-btn--light {
  background: var(--white);
  color: var(--purple-primary);
}

.notifal-alt-page .nalt-btn--light:hover {
  transform: translateY(-2px);
  background: var(--purple-pale);
}

.notifal-alt-page .nalt-btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.notifal-alt-page .nalt-btn--outline:hover {
  border-color: var(--white);
}

.notifal-alt-page .nalt-btn__arrow {
  transition: transform 0.2s ease;
}

.notifal-alt-page .nalt-btn:hover .nalt-btn__arrow {
  transform: translateX(3px);
}

/* Accessible hidden text */
.notifal-alt-page .screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Shared support icons */
.notifal-alt-page .nalt-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.notifal-alt-page .nalt-ic--yes {
  color: var(--win);
}

.notifal-alt-page .nalt-ic--partial {
  color: var(--neutral);
}

.notifal-alt-page .nalt-ic--no {
  color: var(--no);
}

/* ---------------------------------------------------------------------------
 * HERO
 * ------------------------------------------------------------------------- */
.notifal-alt-page .nalt-hero {
  position: relative;
  background: linear-gradient(135deg, #3c096c 0%, #7b2cbf 55%, #9d4edd 100%);
  border-radius: 0 0 40px 40px;
  overflow: hidden;
  padding: 64px 24px 84px;
}

.notifal-alt-page .nalt-hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}

.notifal-alt-page .nalt-hero__blob--1 {
  width: 460px;
  height: 460px;
  background: rgba(199, 125, 255, 0.28);
  top: -140px;
  right: -80px;
}

.notifal-alt-page .nalt-hero__blob--2 {
  width: 320px;
  height: 320px;
  background: rgba(90, 24, 154, 0.4);
  bottom: -120px;
  left: -60px;
}

.notifal-alt-page .nalt-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 1160px;
  margin: 0 auto;
}

.notifal-alt-page .nalt-hero__content {
  flex: 0 0 56%;
  max-width: 56%;
}

.notifal-alt-page .nalt-hero__visual {
  flex: 0 0 44%;
  max-width: 44%;
  display: flex;
  justify-content: center;
}

.notifal-alt-page .nalt-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  margin-bottom: 22px;
}

.notifal-alt-page .nalt-breadcrumb a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.notifal-alt-page .nalt-breadcrumb a:hover {
  color: var(--white);
}

.notifal-alt-page .nalt-breadcrumb__sep {
  color: rgba(255, 255, 255, 0.5);
}

.notifal-alt-page .nalt-breadcrumb__current {
  color: var(--white);
  font-weight: 600;
}

.notifal-alt-page .nalt-hero .nalt-eyebrow {
  color: var(--purple-light);
}

.notifal-alt-page .nalt-hero__title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.5px;
  color: var(--white);
  margin: 0 0 18px;
}

.notifal-alt-page .nalt-hero__sub {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 26px;
  max-width: 560px;
}

.notifal-alt-page .nalt-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.notifal-alt-page .nalt-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 100px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}

.notifal-alt-page .nalt-hero__badge-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(199, 125, 255, 0.45);
  color: var(--white);
}

.notifal-alt-page .nalt-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}

.notifal-alt-page .nalt-hero__updated {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

/* Versus card */
.notifal-alt-page .nalt-versus {
  width: 100%;
  max-width: 380px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.notifal-alt-page .nalt-versus__side {
  background: var(--white);
  border-radius: 16px;
  padding: 22px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.notifal-alt-page .nalt-versus__side--notifal {
  border: 2px solid var(--purple-light);
}

.notifal-alt-page .nalt-versus__side--notifal .nalt-brand--text {
  font-size: 26px;
}

.notifal-alt-page .nalt-versus__tag {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
}

.notifal-alt-page .nalt-versus__tag--win {
  color: var(--win);
}

.notifal-alt-page .nalt-versus__vs {
  align-self: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-light), var(--purple-mid));
  color: var(--white);
  font-weight: 800;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

/* ---------------------------------------------------------------------------
 * VERDICT (TL;DR)
 * ------------------------------------------------------------------------- */
.notifal-alt-page .nalt-verdict {
  background: var(--white);
}

.notifal-alt-page .nalt-verdict__card {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(180deg, #ffffff, var(--purple-pale));
  border: 1.5px solid var(--line);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(123, 44, 191, 0.1);
}

.notifal-alt-page .nalt-verdict__head {
  text-align: center;
  margin-bottom: 28px;
}

.notifal-alt-page .nalt-verdict__title {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 14px;
  color: var(--ink);
}

.notifal-alt-page .nalt-verdict__summary {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 auto;
  max-width: 700px;
}

.notifal-alt-page .nalt-verdict__grid {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
}

.notifal-alt-page .nalt-verdict__row {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr 1.4fr;
  border-bottom: 1px solid #f2e6ff;
}

.notifal-alt-page .nalt-verdict__row:last-child {
  border-bottom: 0;
}

.notifal-alt-page .nalt-verdict__row--head {
  background: var(--purple-pale);
}

.notifal-alt-page .nalt-verdict__c {
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.45;
  display: flex;
  align-items: center;
  gap: 8px;
}

.notifal-alt-page .nalt-verdict__row--head .nalt-verdict__c {
  font-weight: 700;
  color: var(--ink);
}

.notifal-alt-page .nalt-verdict__c--label {
  font-weight: 600;
  color: var(--ink);
  background: #fbf5ff;
}

.notifal-alt-page .nalt-verdict__c--notifal {
  color: var(--purple-deep);
  font-weight: 600;
}

.notifal-alt-page .nalt-verdict__c--comp {
  color: var(--muted);
}

.notifal-alt-page .nalt-verdict__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.notifal-alt-page .nalt-verdict__dot--win {
  background: var(--win);
}

.notifal-alt-page .nalt-verdict__badge {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-top: 26px;
  padding: 14px 20px;
  border-radius: 100px;
  background: rgba(123, 44, 191, 0.08);
  color: var(--purple-deep);
  font-weight: 700;
  font-size: 14px;
  text-align: center;
}

.notifal-alt-page .nalt-verdict__badge-ic {
  color: var(--purple-primary);
  display: inline-flex;
}

/* ---------------------------------------------------------------------------
 * REASONS
 * ------------------------------------------------------------------------- */
.notifal-alt-page .nalt-reasons {
  background: var(--purple-pale);
}

.notifal-alt-page .nalt-reasons__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.notifal-alt-page .nalt-reason {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 20px;
  padding: 28px 26px;
  box-shadow: 0 4px 20px rgba(123, 44, 191, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.notifal-alt-page .nalt-reason:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(123, 44, 191, 0.18);
  border-color: var(--purple-light);
}

.notifal-alt-page .nalt-reason__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--purple-primary), var(--purple-deep));
  margin-bottom: 18px;
}

.notifal-alt-page .nalt-reason__title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 10px;
  color: var(--ink);
}

.notifal-alt-page .nalt-reason__text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* ---------------------------------------------------------------------------
 * PRICING
 * ------------------------------------------------------------------------- */
.notifal-alt-page .nalt-pricing {
  background: var(--white);
}

.notifal-alt-page .nalt-pricing__cols {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.notifal-alt-page .nalt-price-card {
  border-radius: 22px;
  padding: 32px 28px;
  border: 1.5px solid var(--line);
  background: var(--white);
  position: relative;
}

.notifal-alt-page .nalt-price-card--notifal {
  border-color: var(--purple-primary);
  box-shadow: 0 14px 44px rgba(123, 44, 191, 0.18);
  background: linear-gradient(180deg, #ffffff, #fbf5ff);
}

.notifal-alt-page .nalt-price-card__flag {
  position: absolute;
  top: -13px;
  left: 28px;
  background: linear-gradient(135deg, var(--purple-primary), var(--purple-deep));
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
}

.notifal-alt-page .nalt-price-card__brand {
  font-size: 22px;
  font-weight: 800;
  color: #334155;
  margin-bottom: 12px;
}

.notifal-alt-page .nalt-price-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 10px;
}

.notifal-alt-page .nalt-price-card__amount {
  font-size: 44px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -1px;
}

.notifal-alt-page .nalt-price-card__amount--sale {
  color: var(--purple-primary);
}

.notifal-alt-page .nalt-price-card__was {
  font-size: 18px;
  color: var(--muted);
  margin-left: 6px;
}

.notifal-alt-page .nalt-price-card__period {
  font-size: 15px;
  color: var(--muted);
  font-weight: 600;
}

.notifal-alt-page .nalt-price-card__note {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 18px;
}

.notifal-alt-page .nalt-price-card__note--muted {
  margin-top: 18px;
  margin-bottom: 0;
  font-size: 12.5px;
}

.notifal-alt-page .nalt-price-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.notifal-alt-page .nalt-price-card__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink);
}

.notifal-alt-page .nalt-price-tiers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.notifal-alt-page .nalt-price-tier {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 14px;
  background: #fbfbfe;
}

.notifal-alt-page .nalt-price-tier__name {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--purple-primary);
  margin-bottom: 8px;
}

.notifal-alt-page .nalt-price-tier__price {
  display: flex;
  align-items: baseline;
  gap: 3px;
  margin-bottom: 6px;
}

.notifal-alt-page .nalt-price-tier__amount {
  font-size: 24px;
  font-weight: 800;
  color: var(--ink);
}

.notifal-alt-page .nalt-price-tier__period {
  font-size: 12.5px;
  color: var(--muted);
}

.notifal-alt-page .nalt-price-tier__meta {
  font-size: 12px;
  line-height: 1.45;
  color: var(--muted);
}

.notifal-alt-page .nalt-pricing__callout {
  max-width: 820px;
  margin: 32px auto 0;
  text-align: center;
  font-size: 15px;
  line-height: 1.65;
  color: var(--purple-deep);
  background: var(--purple-pale);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px 26px;
}

/* ---------------------------------------------------------------------------
 * COMPARISON TABLE
 * ------------------------------------------------------------------------- */
.notifal-alt-page .nalt-compare {
  background: var(--purple-pale);
}

.notifal-alt-page .nalt-compare__table {
  max-width: 920px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(123, 44, 191, 0.1);
}

.notifal-alt-page .nalt-compare__header,
.notifal-alt-page .nalt-compare__row {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
}

.notifal-alt-page .nalt-compare__header {
  position: sticky;
  top: 0;
  z-index: 2;
  background: var(--white);
  border-bottom: 2px solid var(--line);
}

.notifal-alt-page .nalt-compare__hc {
  padding: 18px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--ink);
}

.notifal-alt-page .nalt-compare__hc--feature {
  justify-content: flex-start;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.notifal-alt-page .nalt-compare__hc--notifal {
  background: rgba(123, 44, 191, 0.06);
}

.notifal-alt-page .nalt-compare__hc--notifal .nalt-brand--notifal {
  font-size: 20px;
}

.notifal-alt-page .nalt-compare__grouptitle {
  padding: 12px 16px;
  background: #f6eeff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--purple-deep);
}

.notifal-alt-page .nalt-compare__row {
  border-top: 1px solid #f2e6ff;
}

.notifal-alt-page .nalt-compare__row:hover {
  background: #fcf8ff;
}

.notifal-alt-page .nalt-compare__c {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.notifal-alt-page .nalt-compare__c--feature {
  justify-content: flex-start;
  color: var(--ink);
  font-weight: 500;
}

.notifal-alt-page .nalt-compare__c--notifal {
  background: rgba(123, 44, 191, 0.04);
}

.notifal-alt-page .nalt-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.notifal-alt-page .nalt-cell__note {
  font-size: 11px;
  line-height: 1.3;
  color: var(--muted);
  text-align: center;
}

/* ---------------------------------------------------------------------------
 * LEAD GENERATION
 * ------------------------------------------------------------------------- */
.notifal-alt-page .nalt-leadgen {
  background: var(--white);
}

.notifal-alt-page .nalt-leadgen__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.notifal-alt-page .nalt-leadgen__badge {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--purple-primary), var(--purple-deep));
  box-shadow: 0 10px 26px rgba(123, 44, 191, 0.28);
}

.notifal-alt-page .nalt-leadgen__text {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  margin: 0 0 18px;
}

.notifal-alt-page .nalt-leadgen .nalt-btn {
  margin-top: 8px;
}

/* ---------------------------------------------------------------------------
 * HONEST TRANSPARENCY
 * ------------------------------------------------------------------------- */
.notifal-alt-page .nalt-honest {
  background: #fbf8ff;
}

.notifal-alt-page .nalt-honest__inner {
  max-width: 880px;
  margin: 0 auto;
}

.notifal-alt-page .nalt-honest__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.notifal-alt-page .nalt-honest__item {
  display: flex;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--purple-mid);
  border-radius: 14px;
  padding: 22px 24px;
}

.notifal-alt-page .nalt-honest__mark {
  flex-shrink: 0;
  color: var(--purple-primary);
  display: inline-flex;
  margin-top: 2px;
}

.notifal-alt-page .nalt-honest__title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--ink);
}

.notifal-alt-page .nalt-honest__text {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* ---------------------------------------------------------------------------
 * MIGRATION
 * ------------------------------------------------------------------------- */
.notifal-alt-page .nalt-migration {
  background: var(--white);
}

.notifal-alt-page .nalt-migration__card {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, #3c096c, #7b2cbf);
  border-radius: 26px;
  padding: 48px 40px;
}

.notifal-alt-page .nalt-migration__card .nalt-section__head {
  margin-bottom: 32px;
}

.notifal-alt-page .nalt-steps {
  list-style: none;
  counter-reset: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.notifal-alt-page .nalt-step {
  display: flex;
  gap: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 20px;
}

.notifal-alt-page .nalt-step__num {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--white);
  color: var(--purple-primary);
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notifal-alt-page .nalt-step__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.notifal-alt-page .nalt-step__title {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--white);
}

.notifal-alt-page .nalt-step__text {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.notifal-alt-page .nalt-migration__offer {
  margin-top: 28px;
  padding: 24px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  text-align: center;
}

.notifal-alt-page .nalt-migration__offer-title {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
}

.notifal-alt-page .nalt-migration__offer-text {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.86);
}

/* ---------------------------------------------------------------------------
 * FAQ
 * ------------------------------------------------------------------------- */
.notifal-alt-page .nalt-faq {
  background: var(--purple-pale);
}

.notifal-alt-page .nalt-faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.notifal-alt-page .nalt-faq__item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.notifal-alt-page .nalt-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  list-style: none;
}

.notifal-alt-page .nalt-faq__q::-webkit-details-marker {
  display: none;
}

.notifal-alt-page .nalt-faq__icon {
  flex-shrink: 0;
  color: var(--purple-primary);
  transition: transform 0.25s ease;
}

.notifal-alt-page .nalt-faq__item[open] .nalt-faq__icon {
  transform: rotate(45deg);
}

.notifal-alt-page .nalt-faq__a {
  padding: 0 22px 20px;
}

.notifal-alt-page .nalt-faq__a p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

/* ---------------------------------------------------------------------------
 * CTA
 * ------------------------------------------------------------------------- */
.notifal-alt-page .nalt-cta {
  background: var(--white);
}

.notifal-alt-page .nalt-cta__card {
  position: relative;
  overflow: hidden;
  max-width: 840px;
  margin: 0 auto;
  background: linear-gradient(135deg, #3c096c, #7b2cbf);
  border-radius: 26px;
  padding: 64px 48px;
  text-align: center;
}

.notifal-alt-page .nalt-cta__glow {
  position: absolute;
  width: 340px;
  height: 340px;
  background: rgba(199, 125, 255, 0.35);
  filter: blur(80px);
  border-radius: 50%;
  top: -120px;
  right: -80px;
  pointer-events: none;
}

.notifal-alt-page .nalt-cta__title {
  position: relative;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
  margin: 0 0 16px;
}

.notifal-alt-page .nalt-cta__sub {
  position: relative;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 auto 32px;
  max-width: 560px;
}

.notifal-alt-page .nalt-cta__actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ---------------------------------------------------------------------------
 * RESPONSIVE
 * ------------------------------------------------------------------------- */
@media (max-width: 980px) {
  .notifal-alt-page .nalt-hero__inner {
    flex-direction: column;
    gap: 40px;
  }

  .notifal-alt-page .nalt-hero__content,
  .notifal-alt-page .nalt-hero__visual {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .notifal-alt-page .nalt-hero__visual {
    order: -1;
  }

  .notifal-alt-page .nalt-reasons__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .notifal-alt-page section {
    padding: 56px 18px;
  }

  .notifal-alt-page .nalt-hero {
    padding: 48px 18px 64px;
  }

  .notifal-alt-page .nalt-hero__title {
    font-size: 34px;
  }

  .notifal-alt-page .nalt-section__title {
    font-size: 27px;
  }

  .notifal-alt-page .nalt-verdict__card,
  .notifal-alt-page .nalt-migration__card,
  .notifal-alt-page .nalt-cta__card {
    padding: 32px 22px;
  }

  .notifal-alt-page .nalt-reasons__grid {
    grid-template-columns: 1fr;
  }

  .notifal-alt-page .nalt-pricing__cols {
    grid-template-columns: 1fr;
  }

  .notifal-alt-page .nalt-steps {
    grid-template-columns: 1fr;
  }

  /* Verdict quick grid collapses into stacked rows */
  .notifal-alt-page .nalt-verdict__row {
    grid-template-columns: 1fr 1fr;
  }

  .notifal-alt-page .nalt-verdict__row--head .nalt-verdict__c--label {
    display: none;
  }

  .notifal-alt-page .nalt-verdict__c--label {
    grid-column: 1 / -1;
    background: #f6eeff;
    font-weight: 700;
  }

  /* Comparison rows keep 3 columns but tighten spacing */
  .notifal-alt-page .nalt-compare__header,
  .notifal-alt-page .nalt-compare__row {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .notifal-alt-page .nalt-compare__c,
  .notifal-alt-page .nalt-compare__hc {
    padding: 12px 8px;
  }

  .notifal-alt-page .nalt-compare__c--feature {
    font-size: 13px;
  }
}

@media (max-width: 460px) {
  .notifal-alt-page .nalt-hero__title {
    font-size: 28px;
  }

  .notifal-alt-page .nalt-hero__actions .nalt-btn,
  .notifal-alt-page .nalt-cta__actions .nalt-btn {
    width: 100%;
    justify-content: center;
  }

  .notifal-alt-page .nalt-price-tiers {
    grid-template-columns: 1fr;
  }
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .notifal-alt-page * {
    transition: none !important;
  }
}
