/* ==========================================================================
   Landing Page & Letter Flow Styles
   Palette matched to homepage: red/navy/yellow/orange
   ========================================================================== */

:root {
  --lp-primary: #b72d2d;
  --lp-primary-dark: #a02525;
  --lp-primary-light: #fef2f2;
  --lp-accent-blue: #243f9c;
  --lp-accent-yellow: #ffe600;
  --lp-cta-orange: #ef752f;
  --lp-cta-orange-hover: #e87f38;
  --lp-cta-red: #cb001c;
  --lp-success: #16a34a;
  --lp-success-light: #dcfce7;
  --lp-danger: #dc2626;
  --lp-gray-50: #f7f7f7;
  --lp-gray-100: #f3f4f6;
  --lp-gray-200: #e5e7eb;
  --lp-gray-300: #d1d5db;
  --lp-gray-400: #9ca3af;
  --lp-gray-500: #6b7280;
  --lp-gray-600: #4b5563;
  --lp-gray-700: #374151;
  --lp-gray-800: #1f2937;
  --lp-gray-900: #111827;
  --lp-radius: 5px;
  --lp-radius-lg: 5px;
  --lp-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  --lp-shadow-md:
    0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --lp-shadow-lg:
    0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --lp-shadow-xl:
    0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* ---------- Hero ---------- */
.lp-hero {
  background-image: url("../images/new-banner-change-2.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 80px 0 60px;
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
}
.lp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  pointer-events: none;
}
.lp-hero .container {
  position: relative;
  z-index: 1;
}
.lp-hero h1 {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-family: muli, sans-serif;
}
.lp-hero .lead {
  font-size: 1.15rem;
  opacity: 0.95;
  margin-bottom: 2rem;
  line-height: 1.7;
  font-family: muli, sans-serif;
}
.lp-hero .flag-badge {
  margin-bottom: 1.25rem;
}
.lp-hero .flag-badge img {
  height: 70px;
  width: auto;
}
.lp-hero .price-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 12px 24px;
  border-radius: 5px;
  margin-bottom: 2rem;
}
.lp-hero .price-tag .price-current {
  font-size: 2rem;
  font-weight: 800;
}
.lp-hero .price-tag .price-original {
  font-size: 1.1rem;
  text-decoration: line-through;
  opacity: 0.6;
}
.lp-hero .price-tag .price-badge {
  background: var(--lp-cta-red);
  color: #fff;
  padding: 4px 12px;
  border-radius: 3px;
  font-size: 0.85rem;
  font-weight: 700;
}
.lp-hero-right-card {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 5px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.lp-hero-right-card img {
  max-width: 200px;
  height: auto;
  margin-bottom: 12px;
}

/* ---------- Buttons ---------- */
.btn-lp-primary {
  background: var(--lp-accent-yellow);
  color: var(--lp-gray-900);
  font-weight: bold;
  font-size: 1.1rem;
  padding: 14px 36px;
  border-radius: 5px;
  border: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: muli, sans-serif;
}
.btn-lp-primary:hover {
  background: #ffef5a;
  color: var(--lp-cta-red);
  transform: translateY(-1px);
  box-shadow: var(--lp-shadow-lg);
  text-decoration: none;
}
.btn-lp-cta {
  background: var(--lp-cta-orange);
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 14px 36px;
  border-radius: 5px;
  border: 1px solid #ec5a24;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: muli, sans-serif;
}
.btn-lp-cta:hover {
  background: var(--lp-cta-orange-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--lp-shadow-lg);
  text-decoration: none;
}
.btn-lp-blue {
  background: var(--lp-cta-orange);
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 14px 36px;
  border-radius: 5px;
  border: 1px solid #ec5a24;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: muli, sans-serif;
}
.btn-lp-blue:hover {
  background: var(--lp-cta-orange-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--lp-shadow-lg);
  text-decoration: none;
}

/* ---------- Section ---------- */
.lp-section {
  padding: 80px 0;
  font-family: muli, serif;
}
.lp-section-gray {
  background: var(--lp-gray-50);
}
.lp-section-title {
  font-size: 2rem;
  font-weight: bold;
  color: var(--lp-primary);
  text-align: center;
  margin-bottom: 0.75rem;
  font-family: muli, serif;
}
.lp-section-subtitle {
  font-size: 1.1rem;
  color: #333;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Feature Cards ---------- */
.lp-feature-card {
  background: var(--lp-gray-50);
  border: 1px solid var(--lp-primary);
  border-radius: var(--lp-radius-lg);
  padding: 32px 28px;
  height: 100%;
  transition: all 0.2s;
}
.lp-feature-card:hover {
  box-shadow: var(--lp-shadow-lg);
  transform: translateY(-2px);
}
.lp-feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.lp-feature-icon img {
  width: 56px;
  height: 56px;
}
.lp-feature-icon i {
  font-size: 2rem;
  color: var(--lp-primary);
}
.lp-feature-card h3 {
  font-size: 1.15rem;
  font-weight: bold;
  color: var(--lp-primary);
  margin-bottom: 10px;
}
.lp-feature-card p {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ---------- How It Works ---------- */
.lp-step {
  text-align: center;
  position: relative;
}
.lp-step-number {
  width: 60px;
  height: 60px;
  background: var(--lp-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 20px;
}
.lp-step h3 {
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--lp-gray-900);
  margin-bottom: 8px;
}
.lp-step p {
  color: #333;
  font-size: 0.95rem;
}

/* ---------- Included List ---------- */
.lp-included-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.lp-included-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--lp-gray-100);
  font-size: 1rem;
  color: #333;
}
.lp-included-list li:last-child {
  border-bottom: none;
}
.lp-included-list .check-icon {
  color: var(--lp-success);
}

/* ---------- Trust bar ---------- */
.lp-trust-bar {
  background: var(--lp-accent-blue);
  color: #fff;
  padding: 24px 0;
  text-align: center;
}
.lp-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 24px;
  font-size: 0.95rem;
  opacity: 0.9;
  font-family: muli, sans-serif;
}
.lp-trust-item i {
  padding-top: 5px;
}

/* ---------- Why Choose Us (inspired by homepage) ---------- */
.lp-why-section {
  background-color: var(--lp-accent-blue);
}
.lp-why-content {
  padding: 5% 10% 5% 8%;
}
.lp-why-content h2 {
  color: var(--lp-accent-yellow);
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.lp-why-content p {
  color: #fff;
  font-size: 1.1rem;
  font-family: muli, sans-serif;
  line-height: 1.8;
}
.lp-why-image {
  background-image: url("../images/why-choose-us-banner.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 350px;
}

/* ---------- FAQ ---------- */
.lp-faq-item {
  border: 1px solid var(--lp-gray-200);
  border-radius: var(--lp-radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: #fff;
}
.lp-faq-item .btn-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 18px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--lp-gray-900);
  text-decoration: none;
  text-align: left;
  border: none;
  background: transparent;
}
.lp-faq-item .btn-link:hover {
  text-decoration: none;
  color: var(--lp-primary);
}
.lp-faq-item .btn-link .fa {
  transition: transform 0.2s;
}
.lp-faq-item .btn-link.collapsed .fa {
  transform: rotate(0deg);
}
.lp-faq-item .btn-link:not(.collapsed) .fa {
  transform: rotate(180deg);
}
.lp-faq-body {
  padding: 0 24px 18px;
  color: #333;
  line-height: 1.7;
}

/* ---------- CTA Banner ---------- */
.lp-cta-banner {
  background-color: var(--lp-cta-red);
  color: #fff;
  padding: 60px 0;
  text-align: center;
  position: relative;
}
.lp-cta-banner h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.lp-cta-banner p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  font-family: muli, sans-serif;
}

/* ---------- Pricing Card ---------- */
.lp-pricing-card {
  background: var(--lp-gray-50);
  border-radius: 5px;
  padding: 40px;
  border: 1px solid var(--lp-primary);
}
.lp-pricing-card .price-original {
  font-size: 1rem;
  color: var(--lp-gray-500);
  text-decoration: line-through;
}
.lp-pricing-card .price-current {
  font-size: 3rem;
  font-weight: bold;
  color: var(--lp-primary);
}
.lp-pricing-card .price-save {
  background: var(--lp-primary-light);
  color: var(--lp-primary);
  padding: 4px 14px;
  border-radius: 3px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ==========================================================================
   Multi-Step Flow Styles
   ========================================================================== */

/* ---------- Progress Bar ---------- */
.lp-progress {
  background: #fff;
  border-bottom: 1px solid var(--lp-gray-200);
  padding: 24px 0;
}
.lp-progress-steps {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}
.lp-progress-step {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.lp-progress-step + .lp-progress-step {
  margin-left: 40px;
}
.lp-progress-step::before {
  content: "";
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 2px;
  background: var(--lp-gray-200);
}
.lp-progress-step:first-child::before {
  display: none;
}
.lp-progress-step.completed::before {
  background: var(--lp-primary);
}
.lp-progress-step.active::before {
  background: var(--lp-primary);
}
.lp-progress-dot {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  border: 2px solid var(--lp-gray-300);
  background: #fff;
  color: var(--lp-gray-400);
  transition: all 0.2s;
}
.lp-progress-step.active .lp-progress-dot {
  background: var(--lp-primary);
  border-color: var(--lp-primary);
  color: #fff;
}
.lp-progress-step.completed .lp-progress-dot {
  background: var(--lp-primary);
  border-color: var(--lp-primary);
  color: #fff;
}
.lp-progress-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--lp-gray-400);
}
.lp-progress-step.active .lp-progress-label {
  color: var(--lp-primary);
}
.lp-progress-step.completed .lp-progress-label {
  color: var(--lp-primary);
}

/* ---------- Form Container ---------- */
.lp-form-container {
  max-width: 780px;
  margin: 0 auto;
  padding: 40px 0 80px;
}
.lp-form-header {
  text-align: center;
  margin-bottom: 40px;
}
.lp-form-header h1 {
  font-size: 1.75rem;
  font-weight: bold;
  color: var(--lp-primary);
  margin-bottom: 8px;
}
.lp-form-header p {
  color: #333;
  font-size: 1rem;
}

/* ---------- Confidential Banner ---------- */
.lp-confidential {
  background: var(--lp-accent-blue);
  border: none;
  border-radius: var(--lp-radius);
  padding: 24px 28px;
  margin-bottom: 32px;
  text-align: center;
  color: #fff;
}
.lp-confidential h3 {
  color: var(--lp-accent-yellow);
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 6px;
}
.lp-confidential p {
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 0;
  line-height: 1.5;
  opacity: 0.9;
}

/* ---------- Form Cards ---------- */
.lp-form-card {
  background: var(--lp-gray-50);
  border: 1px solid var(--lp-primary);
  border-radius: var(--lp-radius-lg);
  padding: 28px 32px;
  margin-bottom: 24px;
  box-shadow: var(--lp-shadow);
}
.lp-form-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.lp-form-card-header .icon {
  color: var(--lp-primary);
  font-size: 1.25rem;
}
.lp-form-card-header h2 {
  font-size: 1.15rem;
  font-weight: bold;
  color: var(--lp-gray-900);
  margin: 0;
}

/* ---------- Question Block ---------- */
.lp-block-header {
  background: var(--lp-gray-50);
  border: 1px solid var(--lp-primary);
  border-radius: var(--lp-radius-lg);
  padding: 28px 32px;
  margin-bottom: 24px;
  box-shadow: var(--lp-shadow);
}
.lp-block-header h2 {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--lp-primary);
  margin-bottom: 4px;
}
.lp-block-header .leading-text {
  color: #333;
  font-size: 0.95rem;
  margin-bottom: 0;
  line-height: 1.6;
}

.lp-question {
  background: #fff;
  border: 1px solid var(--lp-gray-200);
  border-radius: var(--lp-radius-lg);
  padding: 24px 32px;
  margin-bottom: 16px;
  box-shadow: var(--lp-shadow);
}
.lp-question-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--lp-gray-800);
  margin-bottom: 16px;
  line-height: 1.5;
}
.lp-question-text .required-star {
  color: var(--lp-danger);
}

/* ---------- Radio Options ---------- */
.lp-radio-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lp-radio-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid var(--lp-gray-200);
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.15s;
}
.lp-radio-option:hover {
  border-color: var(--lp-accent-blue);
  background: var(--lp-gray-50);
}
.lp-radio-option input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid var(--lp-gray-300);
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  transition: all 0.15s;
}
.lp-radio-option input[type="radio"]:checked {
  border-color: var(--lp-accent-blue);
}
.lp-radio-option input[type="radio"]:checked::after {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--lp-accent-blue);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.lp-radio-option input[type="radio"]:checked + .lp-radio-label {
  color: var(--lp-accent-blue);
  font-weight: 600;
}
.lp-radio-label {
  font-size: 0.95rem;
  color: var(--lp-gray-700);
  cursor: pointer;
}

/* ---------- Form Inputs ---------- */
.lp-input {
  display: block;
  width: 100%;
  height: 48px;
  padding: 8px 16px;
  font-size: 0.95rem;
  color: #000;
  background: #fff;
  border: 1px solid var(--lp-accent-blue);
  border-radius: 3px;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
}
.lp-input:focus {
  border-color: var(--lp-accent-blue);
  box-shadow: 0 0 0 3px rgba(45, 68, 183, 0.1);
  outline: none;
}
.lp-input::placeholder {
  color: var(--lp-gray-400);
}
.lp-textarea {
  height: auto;
  min-height: 100px;
  resize: vertical;
}
.lp-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.lp-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--lp-gray-700);
  margin-bottom: 6px;
}
.lp-label .required-star {
  color: var(--lp-danger);
}
.lp-label .optional {
  color: var(--lp-gray-400);
  font-weight: 400;
}

/* ---------- Upload Zone ---------- */
.lp-upload-zone {
  border: 2px dashed var(--lp-primary);
  border-radius: var(--lp-radius);
  padding: 32px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--lp-gray-50);
}
.lp-upload-zone:hover {
  border-color: var(--lp-primary-dark);
  background: var(--lp-primary-light);
}
.lp-upload-zone .upload-icon {
  font-size: 2.5rem;
  color: var(--lp-primary);
  margin-bottom: 12px;
}
.lp-upload-zone p {
  margin-bottom: 4px;
  font-weight: 600;
  color: var(--lp-gray-800);
}
.lp-upload-zone small {
  color: var(--lp-gray-400);
}
.lp-upload-preview {
  position: relative;
  display: inline-block;
}
.lp-upload-preview img {
  max-width: 200px;
  max-height: 200px;
  border-radius: 5px;
  border: 1px solid var(--lp-gray-200);
}
.lp-upload-preview .remove-btn {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  background: var(--lp-danger);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 0.75rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Form Actions ---------- */
.lp-form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  margin-top: 16px;
  border-top: 1px solid var(--lp-gray-200);
}
.lp-form-actions .btn-back {
  color: var(--lp-gray-600);
  font-weight: 600;
  padding: 12px 24px;
  border: 1px solid var(--lp-primary);
  border-radius: 5px;
  background: #fff;
  transition: all 0.15s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.lp-form-actions .btn-back:hover {
  border-color: var(--lp-primary-dark);
  color: var(--lp-primary);
  text-decoration: none;
}
.lp-form-actions .btn-next {
  background: var(--lp-cta-orange);
  color: #fff;
  font-weight: bold;
  padding: 14px 32px;
  border-radius: 5px;
  border: 1px solid #ec5a24;
  font-size: 1rem;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.lp-form-actions .btn-next:hover {
  background: var(--lp-cta-orange-hover);
  transform: translateY(-1px);
  box-shadow: var(--lp-shadow-md);
}

/* ---------- Checkout Summary ---------- */
.lp-summary-card {
  background: #fff;
  border: 1px solid var(--lp-gray-200);
  border-radius: var(--lp-radius-lg);
  overflow: hidden;
  box-shadow: var(--lp-shadow);
  margin-bottom: 24px;
}
.lp-summary-card-header {
  background: var(--lp-gray-50);
  padding: 16px 24px;
  border-bottom: 1px solid var(--lp-gray-200);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.lp-summary-card-header h3 {
  font-size: 1rem;
  font-weight: bold;
  color: var(--lp-gray-900);
  margin: 0;
}
.lp-summary-card-body {
  padding: 20px 24px;
}
.lp-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.95rem;
}
.lp-summary-row .label {
  color: var(--lp-gray-500);
}
.lp-summary-row .value {
  color: var(--lp-gray-900);
  font-weight: 600;
}
.lp-summary-total {
  display: flex;
  justify-content: space-between;
  padding: 16px 24px;
  border-top: 2px solid var(--lp-primary);
  font-size: 1.15rem;
  font-weight: bold;
  color: var(--lp-gray-900);
}
.lp-summary-total .price {
  color: var(--lp-primary);
}

/* ---------- Product Cards (List Page) ---------- */
.lp-product-card {
  background: #fff;
  border: 1px solid var(--lp-primary);
  border-radius: var(--lp-radius-lg);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.2s;
  box-shadow: var(--lp-shadow);
}
.lp-product-card:hover {
  box-shadow: var(--lp-shadow-lg);
  transform: translateY(-4px);
}
.lp-product-card-image {
  background: var(--lp-gray-50);
  /* padding: 32px 24px; */
  text-align: center;
  border-bottom: 1px solid var(--lp-gray-200);
}
.lp-product-card-image img {
  max-width: 350px;
  height: auto;
}
.lp-product-card-body {
  padding: 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.lp-product-card-body h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--lp-primary);
  margin-bottom: 10px;
}
.lp-product-card-body p {
  color: #333;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
}
.lp-product-card-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 20px;
}
.lp-product-card-price .price-current {
  font-size: 1.75rem;
  font-weight: bold;
  color: var(--lp-primary);
}
.lp-product-card-price .price-original {
  font-size: 1rem;
  color: var(--lp-gray-400);
  text-decoration: line-through;
}
.lp-sale-badge {
  background: var(--lp-cta-red);
  color: #fff;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  text-transform: uppercase;
  align-self: center;
}

.lp-product-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}
.lp-product-card-features li {
  padding: 6px 0;
  font-size: 0.9rem;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
}
.lp-product-card-features li i {
  color: var(--lp-success);
  font-size: 0.8rem;
}

/* ---------- Why Choose Card (List Page) ---------- */
.lp-why-row {
  display: flex;
  align-items: flex-end;
}
.lp-why-card-wrap {
  display: flex;
  align-items: flex-end;
  padding-bottom: 84px;
  justify-content: end;
}
.lp-why-card {
  background: var(--lp-accent-blue);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
}
.lp-why-card::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 50px;
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 22px solid var(--lp-accent-blue);
}
.lp-why-card-title {
  color: var(--lp-accent-yellow);
  font-size: 1.35rem;
  font-weight: bold;
  margin-bottom: 20px;
}
.lp-why-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.lp-why-card-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 6px 0;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  font-family: muli, sans-serif;
}
.lp-why-card-icon {
  width: 26px;
  height: 26px;
  min-width: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-why-card-icon img {
  width: 26px;
  height: 26px;
}
.lp-why-banner {
  display: flex;
  align-items: flex-end;
}
.lp-why-banner img {
  max-width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
}
@media (max-width: 991px) {
  .lp-why-card::after {
    display: none;
  }
  .lp-why-card-wrap {
    padding-bottom: 0;
  }
  .lp-why-row {
    flex-direction: column;
    align-items: stretch;
  }
  .lp-why-banner {
    justify-content: center;
  }
}

/* ---------- Pre-Screening Cards ---------- */
.lp-prescreening {
  background: #fff;
}
.lp-screening-card {
  background: #fff;
  border: 1px solid var(--lp-gray-200);
  border-radius: 12px;
  padding: 32px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.2s;
  box-shadow: var(--lp-shadow);
}
.lp-screening-card:hover {
  box-shadow: var(--lp-shadow-lg);
  transform: translateY(-3px);
}
.lp-screening-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 20px;
}
.lp-screening-icon--red {
  background: #fef2f2;
  color: var(--lp-cta-red);
}
.lp-screening-icon--blue {
  background: #eef2ff;
  color: var(--lp-accent-blue);
}
.lp-screening-icon--orange {
  background: #fff7ed;
  color: var(--lp-cta-orange);
}
.lp-screening-card h3 {
  font-size: 1.15rem;
  font-weight: bold;
  color: var(--lp-gray-900);
  margin-bottom: 8px;
}
.lp-screening-card p {
  font-size: 0.9rem;
  color: var(--lp-gray-500);
  line-height: 1.6;
  margin-bottom: 24px;
  flex: 1;
}
.btn-lp-screening {
  display: block;
  text-align: center;
  font-weight: bold;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: 5px;
  border: none;
  color: #fff;
  transition: all 0.2s;
  font-family: muli, sans-serif;
}
.btn-lp-screening:hover {
  transform: translateY(-1px);
  box-shadow: var(--lp-shadow-md);
  text-decoration: none;
  color: #fff;
}
.btn-lp-screening--red {
  background: var(--lp-cta-red);
}
.btn-lp-screening--red:hover {
  background: #b80018;
}
.btn-lp-screening--blue {
  background: var(--lp-accent-blue);
}
.btn-lp-screening--blue:hover {
  background: #1c3280;
}
.btn-lp-screening--orange {
  background: var(--lp-cta-orange);
}
.btn-lp-screening--orange:hover {
  background: var(--lp-cta-orange-hover);
}

/* ---------- Validation ---------- */
.lp-field-error {
  border-color: var(--lp-danger) !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1) !important;
}
.lp-error-text {
  color: var(--lp-danger);
  font-size: 0.8rem;
  margin-top: 4px;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .lp-hero {
    padding: 50px 0 40px;
    min-height: 380px;
  }
  .lp-hero h1 {
    font-size: 1.75rem;
  }
  .lp-hero .flag-badge img {
    height: 50px;
  }
  .lp-section {
    padding: 50px 0;
  }
  .lp-section-title {
    font-size: 1.5rem;
  }
  .lp-form-card,
  .lp-block-header,
  .lp-question {
    padding: 20px;
  }
  .lp-form-container {
    padding: 24px 0 60px;
  }
  .lp-progress-label {
    display: none;
  }
  .lp-progress-step + .lp-progress-step {
    margin-left: 24px;
  }
  .lp-progress-step::before {
    width: 24px;
  }
  .lp-form-actions {
    flex-direction: column-reverse;
    gap: 12px;
  }
  .lp-form-actions .btn-next,
  .lp-form-actions .btn-back {
    width: 100%;
    justify-content: center;
  }
  .lp-trust-item {
    display: block;
    margin: 8px 0;
  }
  .lp-why-content {
    padding: 8% !important;
  }
  .lp-why-content h2 {
    font-size: 1.5rem !important;
  }
  .lp-why-image {
    display: none;
  }
}

/* ==========================================================================
   Screening Result Panels
   ========================================================================== */

.lp-result-panel {
  text-align: center;
  padding: 48px 32px;
  border-radius: var(--lp-radius-lg);
  margin: 0 auto;
  max-width: 640px;
  animation: lpFadeInUp 0.5s ease-out;
}

@keyframes lpFadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* -- Eligible Panel -- */
.lp-result-panel--eligible {
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 40%, #f0f9ff 100%);
  border: 1px solid #bbf7d0;
  box-shadow:
    0 0 0 1px rgba(22, 163, 74, 0.06),
    0 8px 32px rgba(22, 163, 74, 0.1);
}

.lp-result-panel__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lp-success);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.lp-result-panel__badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  font-size: 0.75rem;
}

.lp-result-panel__title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--lp-gray-900);
  margin: 0 0 12px;
  font-family: muli, sans-serif;
}

.lp-result-panel--eligible .lp-result-panel__title {
  color: #15803d;
}

.lp-result-panel__desc {
  font-size: 1.05rem;
  color: var(--lp-gray-600);
  line-height: 1.6;
  margin: 0 0 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.lp-result-panel__steps {
  background: #fff;
  border: 1px solid #d1fae5;
  border-radius: var(--lp-radius-lg);
  padding: 28px 24px;
  text-align: left;
  margin-bottom: 32px;
}

.lp-result-panel__steps-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--lp-gray-800);
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5e7eb;
}

.lp-result-panel__step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--lp-gray-700);
  line-height: 1.5;
}

.lp-result-panel__step-num {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #dcfce7;
  color: #15803d;
  font-size: 0.8rem;
  font-weight: 700;
}

.lp-result-panel__cta {
  justify-content: center;
}

.btn-next--lg {
  padding: 16px 40px !important;
  font-size: 1.1rem !important;
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(239, 117, 47, 0.35);
  transition: all 0.2s ease;
}

.btn-next--lg:hover {
  box-shadow: 0 6px 20px rgba(239, 117, 47, 0.45);
  transform: translateY(-2px) !important;
}

/* -- Not Eligible Panel -- */
.lp-result-panel--ineligible {
  background: linear-gradient(135deg, #fefce8 0%, #fff7ed 100%);
  border: 1px solid #fde68a;
  box-shadow: 0 8px 32px rgba(234, 179, 8, 0.1);
}

.lp-result-panel--ineligible .lp-result-panel__title {
  color: var(--lp-gray-800);
}

.lp-result-panel--ineligible .lp-result-panel__icon {
  font-size: 3rem;
  color: #d97706;
  margin-bottom: 16px;
}

/* -- Error Panel -- */
.lp-result-panel--error {
  background: var(--lp-primary-light);
  border: 1px solid #fecaca;
  box-shadow: 0 8px 32px rgba(220, 38, 38, 0.08);
}

.lp-result-panel--error .lp-result-panel__title {
  color: var(--lp-danger);
}

.lp-result-panel--error .lp-result-panel__icon {
  font-size: 3rem;
  color: var(--lp-danger);
  margin-bottom: 16px;
}

/* -- Parsley Validation Styles -- */
.lp-question.parsley-error {
  border-color: var(--lp-danger);
  background: #fef2f2;
}

.lp-question .parsley-errors-list {
  list-style: none;
  padding: 8px 0 0;
  margin: 0;
  font-size: 0.85rem;
  color: var(--lp-danger);
  font-weight: 500;
}

.lp-question.parsley-success {
  border-color: var(--lp-success);
}

.parsley-errors-list {
  list-style: none;
  padding: 4px 0 0;
  margin: 0;
  font-size: 0.85rem;
  color: var(--lp-danger);
  font-weight: 500;
}

.lp-input.parsley-error,
.lp-select.parsley-error {
  border-color: var(--lp-danger);
  background-color: #fef2f2;
}

.lp-input.parsley-success,
.lp-select.parsley-success {
  border-color: var(--lp-success);
}

/* -- Responsive -- */
@media (max-width: 576px) {
  .lp-result-panel {
    padding: 32px 20px;
  }
  .lp-result-panel__title {
    font-size: 1.4rem;
  }
  .lp-result-panel__steps {
    padding: 20px 16px;
  }
  .btn-next--lg {
    padding: 14px 28px !important;
    font-size: 1rem !important;
    width: 100%;
    justify-content: center;
  }
}

.parsley-errors-list {
  color: red;
}