/* FRONT-PAGE CUSTOM CSS - Pure CSS modern styles without Tailwind */

:root {
  --color-brand-50: #fff1f2;
  --color-brand-100: #ffe4e6;
  --color-brand-300: #fda4af;
  --color-brand-400: #fb7185;
  --color-brand-500: #e11d48;
  --color-brand-600: #e11d48;
  --color-brand-700: #be123c;
  --color-brand-900: #4c0519;

  --color-warm-50: #fafaf9;
  --color-warm-100: #f5f5f4;
  --color-warm-200: #e7e5e4;

  --color-slate-50: #f8fafc;
  --color-slate-100: #f1f5f9;
  --color-slate-200: #e2e8f0;
  --color-slate-300: #cbd5e1;
  --color-slate-400: #94a3b8;
  --color-slate-500: #64748b;
  --color-slate-600: #475569;
  --color-slate-700: #334155;
  --color-slate-800: #1e293b;
  --color-slate-900: #0f172a;
  --color-slate-950: #020617;

  --color-trustpilot-green: #00b67a;
  --color-trustpilot-dark: #111827;

  --color-emerald-50: #ecfdf5;
  --color-emerald-600: #059669;
  --color-emerald-800: #065f46;

  --max-content-width: 1285px;
}

/* GENERAL RESETS & BASICS */
body.lp-body {
  background-color: var(--color-slate-50);
  color: var(--color-slate-800);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.5;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

/* STICKY HEADER */
.lp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(250, 250, 249, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-warm-200);
  height: 80px;
}

.lp-header-container {
  max-width: var(--max-content-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lp-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.lp-logo-img {
  height: 40px;
  width: auto;
}

.lp-logo-text {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-slate-900);
  letter-spacing: -0.5px;
}

.lp-logo-span {
  color: var(--color-brand-600);
}

@media (max-width: 481px) {
  .lp-logo-text {
    display: none;
  }
}

.lp-nav {
  display: none;
  align-items: center;
  gap: 32px;
}

@media (min-width: 768px) {
  .lp-nav {
    display: flex;
  }
}

.lp-nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-slate-600);
  text-decoration: none;
  transition: color 0.2s ease-in-out;
  display: flex;
  align-items: center;
  gap: 6px;
}

.lp-nav-link:hover {
  color: var(--color-brand-600);
}

.lp-menu-toggle,
.lp-menu-toggle-label {
  display: none;
}

.lp-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lp-btn-login {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-slate-700);
  text-decoration: none;
  padding: 8px 12px;
  transition: color 0.15s ease;
}

.lp-btn-login:hover {
  color: var(--color-brand-600);
}

.lp-btn-signup {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background-color: var(--color-brand-600);
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(225, 29, 72, 0.2);
  transition: all 0.2s ease;
}

.lp-btn-signup:hover {
  background-color: var(--color-brand-700);
  transform: translateY(-1px);
}

@media (max-width: 481px) {
  .lp-btn-login {
    width: 60px;
    padding: 6px 8px;
    font-size: 13px;
  }

  .lp-btn-signup {
    width: 72px;
    padding: 8px 12px;
    font-size: 13px;
  }
}

/* COLLAPSED NAVIGATION - TABLETS AND SMALLER SCREENS */
@media (max-width: 1024px) {
  .lp-header-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 12px;
    position: relative;
  }

  .lp-logo-link {
    grid-column: 1;
    justify-self: start;
  }

  .lp-actions {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    gap: 8px;
  }

  .lp-menu-toggle {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }

  .lp-menu-toggle-label {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    width: 42px;
    height: 42px;
    padding: 10px 8px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    border: 1px solid var(--color-warm-200);
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.8);
  }

  .lp-menu-toggle-label span {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background-color: var(--color-slate-700);
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .lp-nav {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    z-index: 60;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 24px 16px;
    background-color: rgba(250, 250, 249, 0.98);
    border-bottom: 1px solid var(--color-warm-200);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
  }

  .lp-nav-link {
    padding: 13px 4px;
    border-bottom: 1px solid var(--color-warm-200);
  }

  .lp-nav-link:last-child {
    border-bottom: 0;
  }

  .lp-menu-toggle:checked ~ .lp-nav {
    display: flex;
  }

  .lp-menu-toggle:checked + .lp-menu-toggle-label span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }

  .lp-menu-toggle:checked + .lp-menu-toggle-label span:nth-child(2) {
    opacity: 0;
  }

  .lp-menu-toggle:checked + .lp-menu-toggle-label span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
}

/* HERO SECTION */
.lp-hero-section {
  position: relative;
  overflow: hidden;
  padding: 32px 0 80px 0;
  background-color: var(--color-warm-50);
  border-bottom: 1px solid var(--color-warm-200);
}

@media (min-width: 1024px) {
  .lp-hero-section {
    padding: 40px 0 112px 0;
  }
}

.lp-hero-container {
  max-width: var(--max-content-width);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 10;
}

/* MICRO SOCIAL PROOF BANNER */
.lp-proof-banner {
  width: 100%;
  background-color: #fff;
  border: 1px solid rgba(231, 229, 228, 0.9);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  margin-bottom: 48px;
  box-sizing: border-box;
}

.lp-proof-flex {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}

@media (min-width: 640px) {
  .lp-proof-flex {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.lp-proof-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-slate-700);
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .lp-proof-item {
    justify-content: flex-start;
  }
}

@media (min-width: 640px) {
  .lp-proof-item + .lp-proof-item {
    border-left: 1px solid var(--color-warm-200);
    padding-left: 16px;
  }
}

.lp-proof-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lp-proof-badge.brand {
  background-color: var(--color-brand-50);
  color: var(--color-brand-600);
}

.lp-proof-badge.emerald {
  background-color: var(--color-emerald-50);
  color: var(--color-emerald-600);
}

.lp-proof-badge.trustpilot {
  background-color: rgba(0, 182, 122, 0.1);
  color: var(--color-trustpilot-green);
}

/* HERO GRID & CONTENT */
.lp-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .lp-hero-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}

.lp-hero-left {
  text-align: center;
}

@media (min-width: 1024px) {
  .lp-hero-left {
    grid-column: span 7;
    text-align: left;
  }
}

.lp-hero-h1 {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.75px;
  line-height: 1.15;
  color: var(--color-slate-900);
  margin: 0;
}

@media (min-width: 640px) {
  .lp-hero-h1 {
    font-size: 38px;
  }
}

@media (min-width: 1024px) {
  .lp-hero-h1 {
    font-size: 42px;
  }
}

@media (min-width: 1280px) {
  .lp-hero-h1 {
    font-size: 48px;
  }
}

.lp-text-gradient {
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-image: linear-gradient(to right, var(--color-brand-600), #e11d48, #d97706);
}

.lp-hero-p {
  margin: 24px 0 0 0;
  font-size: 18px;
  color: var(--color-slate-600);
  line-height: 1.6;
}

@media (min-width: 640px) {
  .lp-hero-p {
    font-size: 20px;
  }
}

/* HERO CTAs */
.lp-hero-ctas {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .lp-hero-ctas {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .lp-hero-ctas {
    justify-content: flex-start;
  }
}

.lp-btn-cta-primary {
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background-color: var(--color-brand-600);
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(225, 29, 72, 0.2);
  transition: all 0.2s ease;
  text-align: center;
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .lp-btn-cta-primary {
    width: auto;
  }
}

.lp-btn-cta-primary:hover {
  background-color: var(--color-brand-700);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(225, 29, 72, 0.3);
}

.lp-btn-cta-secondary {
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-slate-700);
  background-color: #fff;
  border: 1px solid var(--color-warm-200);
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
  text-align: center;
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .lp-btn-cta-secondary {
    width: auto;
  }
}

.lp-btn-cta-secondary:hover {
  background-color: var(--color-warm-100);
  color: var(--color-slate-900);
}

/* HERO CRITERIA BADGES */
.lp-criteria-grid {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--color-warm-200);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
}

@media (min-width: 640px) {
  .lp-criteria-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.lp-criteria-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-slate-600);
  text-align: left;
}

.lp-criteria-item i {
  color: var(--color-brand-600);
}

/* MEET RORY PILL */
.lp-rory-pill-box {
  margin-top: 32px;
}

.lp-rory-pill {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(to right, var(--color-brand-600), #e11d48, #d97706);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 14px 32px;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 10px 15px rgba(225, 29, 72, 0.15);
  transition: all 0.25s ease;
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .lp-rory-pill {
    font-size: 16px;
  }
}

.lp-rory-pill:hover {
  box-shadow: 0 12px 20px rgba(225, 29, 72, 0.25);
  transform: scale(1.01);
}

.lp-rory-pill i.fa-robot {
  font-size: 18px;
}

.lp-rory-pill i.fa-arrow-right {
  font-size: 12px;
  opacity: 0.8;
}

/* HERO VIDEO PORTRAIT PLAYER */
.lp-hero-right {
  display: flex;
  justify-content: right;
  position: relative;
}

@media (max-width: 1024px) {
  .lp-rory-pill {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
  }

  .lp-hero-right {
    justify-content: center;
  }
}
@media (min-width: 1024px) {
  .lp-hero-right {
    grid-column: span 5;
  }
}

.lp-glowing-blur {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  background-color: rgba(225, 29, 72, 0.15);
  border-radius: 50%;
  filter: blur(48px);
  pointer-events: none;
}

.lp-video-card {
  position: relative;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 9 / 16;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  background-color: var(--color-slate-900);
  border: 4px solid #fff;
  box-sizing: border-box;
}

.lp-video-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(250, 250, 249, 0.9) 0%, rgba(250, 250, 249, 0.95) 50%, rgba(15, 23, 42, 0.9) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  cursor: pointer;
  transition: opacity 0.5s ease;
  z-index: 10;
  box-sizing: border-box;
}

.lp-video-overlay.opacity-0 {
  opacity: 0;
  pointer-events: none;
}

.lp-video-logo {
  width: 192px;
  height: auto;
  max-height: 192px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(225, 29, 72, 0.2));
  transition: transform 0.3s ease;
}

.lp-video-card:hover .lp-video-logo {
  transform: scale(1.05);
}

.lp-play-badge {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: var(--color-brand-600);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 9999px;
  box-shadow: 0 10px 15px rgba(225, 29, 72, 0.3);
  transition: all 0.2s ease;
}

.lp-video-card:hover .lp-play-badge {
  background-color: var(--color-brand-700);
  transform: scale(1.05);
}

/* SECTION STRUCTURES */
.lp-section-py {
  padding: 96px 0;
  border-bottom: 1px solid var(--color-slate-200);
}

.lp-section-white {
  background-color: #fff;
}

.lp-section-slate {
  background-color: var(--color-slate-50);
}

.lp-container {
  max-width: var(--max-content-width);
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* SECTION SHARED HEADERS */
.lp-section-header {
  text-align: center;
  max-width: 768px;
  margin: 0 auto 64px auto;
}

.lp-pill-indicator {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-brand-600);
  background-color: var(--color-brand-50);
  padding: 4px 12px;
  border-radius: 9999px;
  border: 1px solid var(--color-brand-100);
  display: inline-block;
}

.lp-section-title {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--color-slate-900);
  margin: 12px 0 0 0;
}

@media (min-width: 640px) {
  .lp-section-title {
    font-size: 36px;
  }
}

.lp-section-subtitle {
  font-size: 18px;
  color: var(--color-slate-600);
  margin: 16px 0 0 0;
  line-height: 1.6;
}

/* HOW IT WORKS DYNAMIC ELEMENTS */
.lp-works-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

@media (min-width: 1024px) {
  .lp-works-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}

/* THE FAIR CREDIT SYSTEM CARD (LEFT) */
.lp-works-lhs {
  background-color: var(--color-slate-900);
  color: #fff;
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

@media (min-width: 1024px) {
  .lp-works-lhs {
    grid-column: span 5;
  }
}

@media (min-width: 640px) {
  .lp-works-lhs {
    padding: 40px;
  }
}

/* WALKTHROUGH VIDEO CARD (CENTER) */
.lp-works-video-col {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 48px auto 0;
}

.lp-works-video-glowing-blur {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 260px;
  height: 260px;
  background-color: rgba(225, 29, 72, 0.15);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

.lp-works-video-card {
  position: relative;
  width: 100%;
  max-width: 820px;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  background-color: var(--color-slate-900);
  border: 4px solid #fff;
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lp-works-video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px rgba(225, 29, 72, 0.15);
}

.lp-works-video-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-works-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(30, 41, 59, 0.85) 0%, rgba(15, 23, 42, 0.95) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  cursor: pointer;
  transition: opacity 0.5s ease;
  z-index: 10;
  box-sizing: border-box;
}

.lp-works-video-overlay.opacity-0 {
  opacity: 0;
  pointer-events: none;
}

.lp-works-video-logo-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgba(225, 29, 72, 0.1);
  border: 1px solid rgba(225, 29, 72, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 34px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lp-works-video-logo {
  display: block;
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.lp-works-video-card:hover .lp-works-video-logo-circle {
  transform: scale(1.1);
  background-color: rgba(225, 29, 72, 0.2);
  border-color: rgba(225, 29, 72, 0.4);
}

.lp-works-play-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 20px;
  border-radius: 9999px;
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.lp-works-play-badge i {
  color: var(--color-brand-500);
  font-size: 12px;
}

.lp-works-video-card:hover .lp-works-play-badge {
  background: var(--color-brand-600);
  border-color: var(--color-brand-500);
  box-shadow: 0 8px 16px rgba(225, 29, 72, 0.3);
}

.lp-works-video-card:hover .lp-works-play-badge i {
  color: #fff;
}

.lp-glow-corner {
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 192px;
  height: 192px;
  background-color: rgba(225, 29, 72, 0.2);
  border-radius: 50%;
  filter: blur(32px);
  pointer-events: none;
}

.lp-lhs-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 12px 0;
  color: #fff;
}

.lp-lhs-p {
  color: var(--color-slate-300);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 32px 0;
}

.lp-lhs-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lp-lhs-item {
  display: flex;
  align-items: start;
  gap: 16px;
}

.lp-lhs-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background-color: rgba(225, 29, 72, 0.2);
  color: var(--color-brand-400);
  border: 1px solid rgba(225, 29, 72, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lp-lhs-icon.emerald {
  background-color: rgba(16, 185, 129, 0.2);
  color: #34d399;
  border-color: rgba(16, 185, 129, 0.3);
}

.lp-lhs-icon.red {
  background-color: rgba(239, 68, 68, 0.2);
  color: #f87171;
  border-color: rgba(239, 68, 68, 0.3);
}

.lp-lhs-icon.emerald svg {
  width: 20px;
  height: 20px;
  fill: #34d399;
}

.lp-lhs-icon i {
  font-size: 18px;
}

.lp-lhs-item-h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.lp-lhs-item-p {
  color: var(--color-slate-400);
  font-size: 12px;
  margin: 4px 0 0 0;
  line-height: 1.4;
}

/* 5 STEPS CHRONOLOGY (RIGHT) */
.lp-works-rhs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 1024px) {
  .lp-works-rhs {
    grid-column: span 7;
  }
}

.lp-step-row {
  display: flex;
  align-items: start;
  gap: 20px;
  padding: 20px;
  border-radius: 16px;
  background-color: var(--color-slate-50);
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: border-color 0.2s ease-in-out;
  box-sizing: border-box;
}

.lp-step-row:hover {
  border-color: var(--color-brand-200);
}

.lp-step-num {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background-color: var(--color-brand-600);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 6px rgba(225, 29, 72, 0.2);
}

.lp-step-h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-slate-900);
  margin: 0;
}

.lp-step-p {
  color: var(--color-slate-600);
  font-size: 14px;
  margin: 4px 0 0 0;
  line-height: 1.6;
}

/* SPLIT ACTION BUTTONS BELOW WORKS */
.lp-center-ctas {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .lp-center-ctas {
    flex-direction: row;
  }
}

.lp-btn-py-cta {
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background-color: var(--color-brand-600);
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 10px 15px rgba(225, 29, 72, 0.2);
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .lp-btn-py-cta {
    width: auto;
  }
}

.lp-btn-py-cta:hover {
  background-color: var(--color-brand-700);
  transform: translateY(-2px);
}

/* UNIQUE FEATURES GRID */
.lp-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .lp-features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .lp-features-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.lp-feature-card {
  background-color: #fff;
  padding: 32px;
  border-radius: 16px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s ease-in-out;
  box-sizing: border-box;
}

.lp-feature-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.lp-feature-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: var(--color-brand-50);
  color: var(--color-brand-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}

.lp-feature-h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-slate-900);
  margin: 0 0 8px 0;
}

.lp-feature-p {
  font-size: 14px;
  color: var(--color-slate-600);
  line-height: 1.6;
  margin: 0;
}

/* PRICING PLANS STYLING */
.lp-reversal-banner {
  margin-top: 24px;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background-color: var(--color-emerald-50);
  color: var(--color-emerald-800);
  padding: 10px 20px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #a7f3d0;
  box-sizing: border-box;
}

.lp-reversal-banner span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lp-reversal-banner span i {
  color: var(--color-emerald-600);
}

.lp-reversal-dot {
  display: none;
  color: #6ee7b7;
}

@media (min-width: 640px) {
  .lp-reversal-dot {
    display: inline;
  }
}

.lp-pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: stretch;
  max-width: 1152px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .lp-pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .lp-pricing-grid {
    grid-template-columns: 1fr;
  }

  .lp-price-card {
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

.lp-price-card {
  border-radius: 24px;
  padding: 32px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.lp-price-card.basic-extra {
  background-color: var(--color-slate-50);
  border: 1px solid var(--color-slate-200);
}

.lp-price-card.popular {
  background-color: #fff;
  color: var(--color-slate-900);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border: 2px solid var(--color-brand-600);
  position: relative;
}

.lp-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-brand-600);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.lp-price-header {
  text-align: center;
  margin-bottom: 24px;
}

.lp-price-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-slate-900);
  margin: 0;
}

.lp-price-box {
  margin-top: 16px;
}

.lp-price-val {
  font-size: 36px;
  font-weight: 800;
  color: var(--color-slate-950);
}

.lp-price-unit {
  color: var(--color-slate-500);
  font-size: 14px;
}

.lp-subscribe-btn {
  display: block;
  text-align: center;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  transition: background-color 0.15s ease;
  margin-top: 24px;
}

.lp-subscribe-btn.secondary {
  background-color: var(--color-slate-200);
  color: var(--color-slate-800);
}

.lp-subscribe-btn.secondary:hover {
  background-color: var(--color-slate-300);
}

.lp-subscribe-btn.primary {
  background-color: var(--color-brand-600);
  color: #fff;
  box-shadow: 0 4px 12px rgba(225, 29, 72, 0.2);
}

.lp-subscribe-btn.primary:hover {
  background-color: var(--color-brand-700);
}

.lp-price-bullets {
  margin-top: 32px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lp-price-bullets li {
  display: flex;
  align-items: start;
  gap: 12px;
  font-size: 14px;
  color: var(--color-slate-600);
  text-align: left;
}

.lp-price-bullets li i {
  color: var(--color-brand-600);
  margin-top: 4px;
  flex-shrink: 0;
}

.lp-price-card-button-sub {
  margin-top: 48px;
  text-align: center;
}

.lp-full-details-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #fff;
  color: var(--color-slate-700);
  font-weight: 600;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: 12px;
  border: 1px solid var(--color-slate-300);
  transition: all 0.2s ease;
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.lp-full-details-btn:hover {
  background-color: var(--color-slate-100);
}

.lp-full-details-btn i {
  color: var(--color-slate-500);
}

/* TRUSTPILOT SLIDER CAROUSEL SECTION */
.lp-tp-header-row {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--color-slate-100);
}

@media (min-width: 640px) {
  .lp-tp-header-row {
    flex-direction: row;
    text-align: left;
  }
}

.lp-tp-header-left {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: center;
}

@media (min-width: 640px) {
  .lp-tp-header-left {
    text-align: left;
  }
}

.lp-star-green {
  color: var(--color-trustpilot-green);
  font-size: 30px;
}

.lp-tp-rating-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

@media (min-width: 640px) {
  .lp-tp-rating-heading {
    justify-content: flex-start;
  }
}

.lp-tp-rating-heading span {
  font-size: 24px;
  font-weight: 800;
  color: var(--color-slate-900);
}

.lp-stars-box {
  background-color: var(--color-trustpilot-green);
  color: #fff;
  font-size: 12px;
  padding: 4px;
  border-radius: 4px;
  display: flex;
  gap: 2s;
}

.lp-stars-box i {
  font-size: 10px;
}

.lp-tp-rating-p {
  font-size: 14px;
  color: var(--color-slate-500);
  margin: 2px 0 0 0;
}

.lp-tp-rating-p span.bold {
  font-weight: 600;
  color: var(--color-slate-800);
}

.lp-tp-rating-p span.heavy {
  font-weight: 700;
  color: var(--color-slate-900);
}

/* CAROUSEL NAVIGATION */
.lp-tp-header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lp-tp-read-all-btn {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-slate-700);
  background-color: var(--color-slate-100);
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lp-tp-read-all-btn:hover {
  background-color: var(--color-slate-200);
  color: var(--color-trustpilot-green);
}

.lp-carousel-actions-row {
  display: flex;
  gap: 8px;
}

.lp-carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-slate-200);
  background-color: #fff;
  color: var(--color-slate-600);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: all 0.15s ease;
}

.lp-carousel-btn:hover {
  background-color: var(--color-slate-50);
  border-color: var(--color-slate-300);
}

.lp-sub-carousel-indicator-banner {
  margin: 24px 0;
  text-align: center;
}

.lp-sub-carousel-indicator-banner span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-slate-400);
  text-transform: uppercase;
}

/* HORIZONTAL CAROUSEL DRAGGABLE CONTAINER */
.lp-carousel-container {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 16px 0;
}

/* Custom scrollbar hiders */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;  /* IE/Edge */
  scrollbar-width: none;  /* Firefox */
}

.lp-review-card {
  min-width: 320px;
  max-width: 380px;
  background-color: var(--color-slate-50);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 0.25s ease;
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .lp-review-card {
    min-width: 380px;
  }
}

.lp-review-card:hover {
  border-color: rgba(0, 182, 122, 0.4);
}

.lp-card-stars-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.lp-card-stars-green {
  background-color: var(--color-trustpilot-green);
  color: #fff;
  font-size: 12px;
  padding: 4px;
  border-radius: 4px;
  display: flex;
  gap: 2px;
}

.lp-card-stars-green i {
  font-size: 10px;
}

.lp-card-metadata {
  font-size: 12px;
  color: var(--color-slate-400);
}

.lp-review-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-slate-900);
  margin: 0 0 8px 0;
}

.lp-review-card p {
  font-size: 14px;
  color: var(--color-slate-600);
  line-height: 1.6;
  margin: 0;
}

.lp-reviewer-sig {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(226, 232, 240, 0.6);
  font-size: 12px;
  color: var(--color-slate-500);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lp-reviewer-sig span.bold {
  font-weight: 600;
  color: var(--color-slate-800);
}

/* FOOTER CALL TO ACTION (BLUE RED BANNER) */
.lp-cta-action-footer {
  padding: 80px 0;
  background-color: var(--color-slate-900);
  color: #fff;
  border-top: 1px solid var(--color-slate-800);
}

.lp-cta-action-footer-container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  box-sizing: border-box;
}

.lp-cta-action-footer h2 {
  font-size: 30px;
  font-weight: 800;
  margin: 0;
}

@media (min-width: 640px) {
  .lp-cta-action-footer h2 {
    font-size: 36px;
  }
}

.lp-cta-action-footer p {
  color: var(--color-slate-400);
  font-size: 16px;
  max-width: 576px;
  margin: 16px auto 0 auto;
  line-height: 1.6;
}

.lp-cta-footer-actions {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .lp-cta-footer-actions {
    flex-direction: row;
  }
}

.lp-btn-cta-footer-main {
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background-color: var(--color-brand-600);
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 10px 15px rgba(225, 29, 72, 0.2);
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .lp-btn-cta-footer-main {
    width: auto;
  }
}

.lp-btn-cta-footer-main:hover {
  background-color: var(--color-brand-700);
  transform: translateY(-2px);
}

.lp-btn-cta-footer-sub {
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-slate-200);
  background-color: var(--color-slate-800);
  border: 1px solid var(--color-slate-700);
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .lp-btn-cta-footer-sub {
    width: auto;
  }
}

.lp-btn-cta-footer-sub:hover {
  background-color: var(--color-slate-700);
}

