:root {
  --red: #E50019;
  --red-hover: #FF0000;
  --dark-500: #5A6779;
  --dark-700: #212529;
  --dark-800: #2B2B2B;
  --dark-900: #111113;
  --gray-500: #9A9AA5;
  --cream: #F7F5F2;
  --white: #FFFFFF;
}

/* GLOBAL OVERRIDES */
body {
  padding: 0;
  margin: 0;
}
.lb-container,
.lb-container * {
    font-family: 'Tenon', sans-serif;
}
.lb-container {
    max-width: 100%;
    padding: 0;
    overflow-x: hidden;
}
.lb-container .container {
    max-width: 1200px;
}
.lp-form .help-text {
  color: var(--dark-500);
  font-size: 13px;
  padding-top: 4px;
  margin-bottom: 0;
}

/*  HEADER  */
.lp-header {
    background: var(--dark-900);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-radius: unset;
}
.lp-header .navbar-brand img {
    height: 32px;
    width: auto;
}
.lp-header .navbar-brand:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 4px;
  border-radius: 4px;
}
.lp-header .navbar-brand {
    margin: 0 auto;
    padding: 0;
}

/*  HERO  */
.lp-hero {
    background: var(--dark-900);
    color: var(--white);
    position: relative;
    overflow: hidden;
    min-height: 480px;
}
.lp-hero-bg {
    position: absolute;
    top: 0; right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}
.lp-hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 0 72px;
}
.lp-hero-badge {
    display: inline-block;
    padding: 5px 14px;
    background: var(--dark-900);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 2px;
    margin-bottom: 12px;
}
.lp-hero-badge span {
    color: var(--red);
}
.lp-hero h1 {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 4px;
    opacity: 0.9;
}
.lp-hero h1 span {
    font-weight: 800;
    color: var(--red);
    text-transform: none;
    font-size: 72px;
    letter-spacing: 0;
    display: block;
}
.lp-hero-stats {
    display: flex;
    gap: 36px;
    margin: 28px 0;
}
.lp-hero-stat {
    position: relative;
}
.lp-hero-stat::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--red);
    margin-bottom: 8px;
}
.lp-hero-stat-val {
    font-size: 40px;
    font-weight: 800;
    color: var(--white);
    opacity: 0.9;
    line-height: 1;
}
.lp-hero-stat-val small {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}
.lp-hero-stat-label {
    font-size: 19px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 4px;
    line-height: 1.4;
}
.lp-hero-stat-label span {
  font-weight: 800;
  color: var(--white);
}
.lp-hero-stat-label .details {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  font-weight: 400;
  display: block;
}
.lp-hero .btn-primary.red {
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 100px;
    min-width: 240px;
    background-color: var(--red);
    border-color: var(--red);
}

/* BREADCRUMB */
.lp-breadcrumb {
    padding: 16px 0;
    font-size: 16px;
    color: var(--dark-700);
    background-color: #F8F8F8;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.lp-breadcrumb::-webkit-scrollbar {
  display: none;
}
.lp-breadcrumb a {
    color: var(--dark-700);
    text-decoration: underline;
}
.lp-breadcrumb a:focus-visible {
  outline: 2px solid rgba(0, 0, 0, 0.8);
  outline-offset: 4px;
  border-radius: 4px;
}
.lp-breadcrumb span {
    color: var(--dark-500);
}
.lp-breadcrumb a:hover {
    text-decoration: none;
}

/* SECTION COMMON */
.lp-section {
    padding: 80px 0;
    display: flex;
}
.lp-section .no-wrap {
  white-space: nowrap;
}
.lp-section--white { background: var(--white); }
.lp-section--cream { background: var(--cream); }
.lp-section--dark  { background: var(--dark-900); color: var(--white); }
.lp-section--red   { 
    background: radial-gradient(ellipse at 60% 50%, #E8001A 0%, #B0001A 55%, #8B0012 100%);
    color: var(--white); 
}
.lp-section  .why {
  padding-top: 80px;
}
.lp-section-label {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 700;
    margin-bottom: 4px;
    text-align: center;
}
.lp-section--dark-900 .lp-section-label,
.lp-section--red .lp-section-label {
    color: rgba(255,255,255,0.5);
}
.lp-section-title {
    font-size: 44px;
    font-weight: 800;
    color: var(--dark-900);
    line-height: 1.3;
    margin-bottom: 16px;
}
.lp-section-details {
  display: block;
  font-size: 24px;
  font-weight: 800;
  padding-top: 8px;
}
.lp-section-subtitle {
  color: var(--dark-500);
  font-size: 20px;
  padding-bottom: 24px;
  margin-bottom: 0;
}
.lp-section--dark .lp-section-title,
.lp-section--red .lp-section-title {
    color: var(--white);
}
.lp-plane-bg {
  position: absolute;
  bottom: 0;
  left: 0;
}

/* STEPS */
.lp-step-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 14px;
    padding: 32px 20px;
    text-align: center;
    height: 100%;
    transition: box-shadow 0.3s, transform 0.3s;
    position: relative;
}
.lp-step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}
.lp-step-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--cream);
    border: 1px solid rgba(0,0,0,0.06);
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
}
.lp-step-num {
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--red);
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.lp-step-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-900);
    margin-bottom: 4px;
}
.lp-step-desc {
    font-size: 16px;
    color: var(--dark-500);
    line-height: 1.5;
    margin-bottom: 10px;
    min-height: 80px;
}
.lp-step-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 4px;
}
.lp-step-tag--red {
    background: rgba(229,0,25,0.08);
    color: var(--red);
}
.lp-step-tag--gray {
    background: rgba(0,0,0,0.04);
    color: var(--dark-700);
    font-weight: 700;
}
.lp-step-tag--heart {
    background: rgba(229,0,25,0.08);
    color: var(--red);
}
.lp-step-tag--heart::before {
    content: '❤ ';
}
.lp-destination {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 14px;
    font-weight: 700;
}
.lp-destination span {
    color: var(--red);
}

/* Arrow between steps */
.lp-step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  opacity: 0.25;
  padding: 0 4px;
}

/* ELIGIBILITY (WHY) */
.lp-eligibility-title {
  font-size: 44px;
  font-weight: 800;
  color: var(--dark-900);
  line-height: 1.2;
  margin-bottom: 24px;
  text-align: center;
}
.lp-eligibility-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 16px;
  color: var(--dark-500);
  line-height: 1.6;
}
.lp-eligibility-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.lp-eligibility-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 6px;
  background: rgba(229,0,25,0.06);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  padding: 4px;
}
.lp-eligibility-item strong {
  color: var(--dark-900);
}
.highlight, .highlight {
  color: var(--red);
  font-weight: 700;
}
.lp-house-bg {
  position: absolute;
  right: 0;
  bottom: 0;
}

/* Noutati badge */
.lp-new-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: var(--red);
  color: var(--white);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  margin-bottom: 12px;
}

/* House decoration */
.lp-house-deco {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 260px;
  height: 260px;
  opacity: 0.03;
  pointer-events: none;
}

/* RED BANNER */
.lp-section--red {
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0 72px;
}
.lp-section--red .lp-section-title {
  font-size: 40px;
}
.lp-section--red p {
  font-size: 20px;
  opacity: 0.85;
  line-height: 1.5;
  margin-bottom: 28px;
}
.lp-section--red .btn {
  background-color: var(--dark-800);
  color: var(--white);
  padding: 12px 36px;
  font-weight: 700;
  border-radius: 99px;
  min-width: 240px;
  font-size: 16px;
  border: none;
}
.lp-section--red .btn:hover {
  background-color: var(--dark-900);
}
.lp-section--red .btn-primary {
  --bs-btn-hover-bg: var(--dark-800);
}
.lp-red-deco {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 200px;
    font-weight: 900;
    color: rgba(255,255,255,0.1);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: 12px;
    text-transform: uppercase;
}

/* COST / TRANSPARENCY */
.lp-cost-row {
  display: flex;
  gap: 40px;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.lp-cost-block {
  text-align: center;
}
.lp-cost-label {
  font-size: 14px;
  color: var(--dark-500);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 6px;
}
.lp-cost-val {
  font-size: 32px;
  font-weight: 800;
  color: var(--dark-700);
  line-height: 1;
}
.lp-cost-val small {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-900);
  opacity: 0.8;
}
.lp-cost-sub {
  font-size: 14px;
  color: var(--dark-500);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Timeline bar */
.lp-timeline-bar {
  display: flex;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
}
.lp-ircc span {
  font-weight: 800;
}
.lp-tl-fix {
  flex: 0 0 20%;
  background: #414E60;
  color: var(--white);
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}
.lp-tl-var {
  flex: 1;
  background: var(--dark-500);
  color: var(--white);
  padding: 12px 16px;
  display: flex;
  gap: 4px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.lp-tl-rate {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}
.lp-cost-disclaimer {
  font-size: 16px;
  color: var(--dark-500);
  line-height: 1.6;
  margin-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 16px;
}
.lp-structure-label {
  font-size: 16px;
  color: var(--dark-500);
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 700;
}

/* BOARDING PASS */
.lp-bp-wrap {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}
.lp-bp-card {
  display: flex;
  background: var(--cream);
  border-radius: 14px;
  position: relative;
  overflow: visible;
  border: 0.5px solid rgba(0,0,0,0.08);
}
.lp-bp-notch {
  position: absolute;
  z-index: 3;
  left: 70.5%;
  margin-left: -14px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--white);
}
.lp-bp-notch--t { top: -14px; }
.lp-bp-notch--b { bottom: -14px; }
.lp-bp-main {
  flex: 72;
  padding: 28px 28px 24px;
}
.lp-bp-stub {
  flex: 28;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px 20px;
  border-left: 1.5px dashed rgba(0,0,0,0.1);
}
.lp-bp-badge {
  font-size: 14px;
  color: var(--dark-500);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 20px;
}
.lp-bp-route {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.lp-bp-from {
  font-size: 36px;
  font-weight: 600;
  color: var(--dark-900);
  letter-spacing: 2px;
  line-height: 1;
}
.lp-bp-cityname {
  font-size: 16px;
  color: var(--dark-500);
  margin-top: 3px;
  letter-spacing: 1px;
}
.lp-bp-mid {
  flex: 1;
  padding: 0 16px;
}
.lp-bp-track {
  display: flex;
  align-items: center;
  height: 20px;
}
.lp-bp-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--dark-900);
  flex-shrink: 0;
}
.lp-bp-dot--to { background: var(--red); }
.lp-bp-line {
  flex: 1;
  height: 0;
  border-top: 1px solid var(--dark-900);
  position: relative;
  margin: 0 -1px;
}
.lp-bp-plane {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: var(--cream);
  padding: 0 6px;
  color: var(--red);
  display: flex;
  align-items: center;
}
.lp-bp-type {
  text-align: center;
  margin-top: 18px;
  font-size: 12px;
  color: var(--red);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 800;
}
.lp-bp-fields {
  display: flex;
  gap: 0;
  border-top: 0.5px solid rgba(0,0,0,0.06);
  padding-top: 16px;
}
.lp-bp-field {
  flex: 1;
}
.lp-bp-field + .lp-bp-field {
  border-left: 0.5px solid rgba(0,0,0,0.06);
  padding-left: 16px;
}
.lp-bp-flbl {
  font-size: 14px;
  color: var(--dark-500);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 3px;
  font-weight: 500;
}
.lp-bp-fval {
  font-size: 16px;
  font-weight: 800;
  color: var(--dark-700);
  line-height: 1.3;
}
.lp-bp-price {
  font-size: 70px;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}
.lp-bp-price small {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
}
.lp-bp-price-max {
  font-size: 16px;
  color: var(--dark-500);
  margin-top: 10px;
  line-height: 1.4;
}

/* FAQ */
.lp-faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.lp-faq-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 18px 0;
  background: none;
  border: none;
  font-family: 'Tenon', sans-serif;
  font-size: 20px;
  color: rgba(255,255,255,0.8);
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: color 0.3s;
}
.lp-faq-btn h2 {
  font-size: 20px;
}
.lp-faq-btn:hover {
  color: var(--white);
}
.lp-faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  transition: all 0.3s;
}
.lp-faq-item.active .lp-faq-icon {
  transform: rotate(180deg);
}
.lp-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.lp-faq-item.active .lp-faq-answer {
  max-height: 300px;
}
.lp-faq-answer-inner {
  padding: 0 0 20px;
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}
.lp-see-all {
  display: flex;
}
.lp-see-all span {
  width: 28px;
  height: 28px;
}
.lp-see-all svg {
  margin-top: 28px;
}
.lp-faq-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 20px;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
  text-decoration: underline;
  padding-right: 4px;
}
.lp-faq-link:hover {
  text-decoration: none;
  color: var(--white);
}
.lp-faq-link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 4px;
  border-radius: 4px;
}
.lp-example {
  .container {
    max-width: 800px;
  }
}
.lp-example .lp-section-title {
  padding-bottom: 20px;
}
.lp-faq .container {
  max-width: 1000px;
}

/* CTA FINAL */
.lp-cta-final {
  text-align: center;
}
.lp-cta-final .lp-section-title .heart {
  color: var(--red);
}
.lp-cta-final .btn-primary.red {
  padding: 12px 40px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 99px;
  min-width: 240px;
  background-color: var(--red);
  border-color: var(--red);
}
.lp-white-deco {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 200px;
    font-weight: 900;
    color: rgba(0,0,0,0.03);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: 12px;
    text-transform: uppercase;
}

/* FOOTER */
.lp-footer {
  background: var(--dark-900);
  padding: 24px 0;
  text-align: center;
  font-size: 16px;
  color: rgba(255,255,255,0.8);
}
.lp-footer a {
  color: rgba(255,255,255,0.8);
  text-decoration: underline;
  margin: 0 8px;
}
.lp-footer a:hover {
  text-decoration: none;
  color: var(--white);
}
.lp-footer a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 4px;
  border-radius: 4px;
}


/* FAQ PAGE */
/* Hero */
.lp-faq-hero {
  background: var(--dark-900);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 80px 0 48px;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
}
.lp-faq-hero-bg {
  position: absolute;
  top: 0; 
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}
.lp-faq-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--dark-900) 45%, rgba(26,26,30,0.3) 100%);
}
.lp-faq-hero-content {
  position: relative;
  z-index: 2;
}
.lp-faq-hero h1 {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 28px;
}

/* Category pills */
.lp-faq-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.lp-faq-pill {
  padding: 8px 20px;
  border-radius: 100px;
  font-family: 'Tenon', sans-serif;
  font-size: 16px;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  transition: all 0.3s;
  text-decoration: none;
}
.lp-faq-pill:hover {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}
.lp-faq-pill.active {
  background: var(--white);
  color: var(--dark-900);
  border-color: var(--white);
}

/* FAQ groups */
.lp-faq-group {
  margin-bottom: 48px;
}
.lp-faq-group-header {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--dark-900);
  margin-bottom: 0;
}
.lp-faq-group-num {
  font-size: 32px;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}
.lp-faq-group-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dark-900);
}

/* FAQ page accordion items */
.lp-faqp-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.lp-faqp-item:last-child {
  border: none;
}
.lp-faqp-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  font-family: 'Tenon', sans-serif;
  font-size: 16px;
  color: var(--dark-700);
  cursor: pointer;
  text-align: left;
  gap: 20px;
  transition: color 0.3s;
}
.lp-faqp-btn:hover {
  text-decoration: underline;
}
.lp-faqp-chevron {
  flex-shrink: 0;
  color: var(--gray-500);
  transition: transform 0.3s;
}
.lp-faqp-item.active .lp-faqp-chevron {
  transform: rotate(180deg);
  color: var(--red);
}
.lp-faqp-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.lp-faqp-item.active .lp-faqp-answer {
  max-height: 300px;
}
.lp-faqp-answer-inner {
  padding: 0 0 20px;
  font-size: 16px;
  color: var(--dark-500);
  line-height: 1.7;
}
.lp-faqp-answer-inner strong {
  color: var(--dark-900);
}
.lp-faqp-answer-inner a {
  color: var(--dark-700);
  text-decoration: underline;
}



/* FORM PAGE  */
/* Hero */
.lp-form-hero {
  background: var(--dark-900);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 80px 0 48px;  
  display: flex;
  align-items: flex-end;
  min-height: 300px;
}
.lp-form-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}
.lp-form-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,26,30,0.3) 0%, rgba(26,26,30,0.6) 100%);
}
.lp-form-hero-content {
  position: relative;
  z-index: 2;
}
.lp-form-hero h1 {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.3;
  margin: 0;
}
.lp-form-hero .heart {
  color: var(--red);
}

/* Form card */
.lp-form h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--dark-700);
  text-align: center;
  margin-bottom: 8px;
}
.lp-form .card {
  border: none;
  padding: 40px 0 100px;
}
.lp-form .card-body {
  background: var(--cream);
  border-radius: 16px;
  padding: 48px 20px 40px;
}
.lp-form #gdpr {
  width: 24px !important;
  height: 24px;
  position: relative;
  top: 6px;
  margin-right: 4px;
}
.lp-form label[for="gdpr"] a {
  color: var(--dark-700);
}
.lp-form label[for="gdpr"] a:focus-visible {
  outline: 2px solid rgba(0, 0, 0, 0.8);
  outline-offset: 4px;
  border-radius: 4px;
}
.lp-form .lp-form-sub {
  font-size: 16px;
  color: var(--dark-500);
  text-align: center;
  margin-bottom: 32px;
}
.lp-form input[type="submit"] {
  padding: 12px 40px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 99px;
  min-width: 240px;
  background: var(--red);
  border-color: var(--red);
}
.lp-form .lp-section-subtitle {
  padding-bottom: 48px;
  font-size: 20px;
}
.lp-form p {
  font-size: 16px;
  padding-top: 16px;
}
.btn-primary.red:hover, .btn-primary.red:active:focus {
    background-color: var(--red-hover);
    border-color: var(--red-hover);
}



.lp-form .form label {
  display: block;
  font-weight: 500;
  margin-bottom: 4px;
}
.lp-form input[type="text"] {
    width: 100%;
    box-sizing: border-box;
    border: solid 1px #cbcbcb;
    background-color: #FFF;
    font-family: inherit;
    font-size: 16px;
    padding: 12px 8px;
    border-radius: 4px;
}
.lp-form #tableCaptcha input[type="radio"] {
  display: none;
}
.lp-form #tableCaptcha label {
  border: 3px solid #E8E5E5;
  width: 35px;
  height: 35px;
  display: inline-block !important;
  padding: 5px;
  box-sizing: content-box;
}
.lp-form #tableCaptcha label img {
  display: block;
  margin: 0;
  width: 35px;
  height: 35px;
}
.lp-form #captcha table {
  border: none;
  border-collapse: initial !important;
  padding: 0px !important;
}
.lp-form #tableCaptcha td {
  padding: 0;
  border: none;
}
.lp-form #tableCaptcha .error {
  border: none 0; 
  font-size: 18px; 
  width: auto; 
  height: auto; 
  color: var(--red-hover);
  padding: 0;
}		
.lp-form #tableCaptcha .redBorder {
  border: 3px solid var(--red-hover); !important;
}
@media screen and (max-width: 360px) {
  .lp-form #tableCaptcha label {
    width:26px !important;
    height: 26px !important;
  }

  .lp-form #tableCaptcha label img {
    width: 26px !important;
    height: 26px !important;
  }
}








/*  RESPONSIVE */
@media (max-width: 1590px) {
  .lp-house-bg, .lp-plane-bg {
    display: none;
  }
}

@media (max-width: 991px) {
  .lp-hero h1 {
    font-size: 48px;
  }
  .lp-hero h1 span {
    font-size: 48px;
  }
  .lp-hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }
  .lp-hero-bg {
    width: 100%;
    opacity: 1;
    object-position: 70% center;
  }
  .lp-hero-stat-val {
    font-size: 32px;
  }
  .lp-hero-stat-val small {
    font-size: 20px;
  }
  .lp-hero-stat-label {
    font-size: 16px;
  }
  .lp-section {
    padding: 60px 0;
  }
  .lp-section-title {
    font-size: 40px;
    margin-bottom: 24px;
  }
  .lp-step-arrow {
    display: none;
  }
  .lp-eligibility-title {
    font-size: 40px;
  }
  .lp-section--red .lp-section-title {
     font-size: 38px;
  }
  .lp-eligibility-title span {
    display: inline-block;
  }
  .lp-cost-val {
    font-size: 28px;
  }
  .lp-bp-card {
    flex-direction: column;
  }
  .lp-bp-stub {
    border-left: none;
    border-top: 1.5px dashed rgba(0,0,0,0.1);
    padding: 24px;
    flex-direction: row;
    gap: 16px;
  }
  .lp-bp-notch { display: none; }
  .lp-bp-from { font-size: 28px; }
}

@media (max-width: 767px) {
  .lp-hero {
    min-height: auto;
  }
  .lp-hero-content {
    padding: 40px 0 40px;
  }
  .lp-hero h1 {
    font-size: 40px;
  }
  .lp-hero h1 span {
    font-size: 40px;
  }
  .lp-hero-stats {
    flex-direction: column;
    gap: 20px;
  }
  .lp-hero-stat-val {
    font-size: 24px;
  }
  .lp-section {
    padding: 48px 0;
  }
  .lp-section-title {
    font-size: 32px;
    margin-bottom: 16px;
  }
  .lp-eligibility-title {
    font-size: 32px;
    margin-bottom: 12px;
  }
  .lp-section--red .lp-section-title {
     font-size: 32px;
  }
  .lp-tl-label {
    letter-spacing: 0;
  }
  .lp-bp-fields {
    flex-direction: column;
    gap: 12px;
  }
  .lp-bp-field + .lp-bp-field {
    border-left: none;
    padding-left: 0;
    border-top: 0.5px solid rgba(0,0,0,0.06);
    padding-top: 12px;
  }
  .lp-red-deco, .lp-white-deco {
    display: none;
  }
  .lp-bp-main {
    padding: 20px 16px;
  }
  .lp-section  .why {
    padding-top: 60px;
  }
  .lp-example .lp-section-title {
    padding-bottom: 0;
  }
}
@media (max-width: 575px) {
  .lp-cost-row {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .btn-primary.red, .lp-section--red .btn-primary {
    width: 100%;
  }
  .lp-tl-var {
    flex-direction: column;
    text-align: center;
  }
  .lp-bp-country {
    max-width: 100px;
  }
}



/* FAQ RESPONSIVE */
@media (max-width: 991px) {
  .lp-faq-hero {
    padding: 60px 0 32px;
  }
  .lp-faq-hero h1 {
    font-size: 40px;
  }
  .lp-faq-hero-bg {
    width: 100%;
    opacity: 1;
    object-position: 70% center;
  }
}
@media (max-width: 767px) {
  .lp-faq-hero h1 {
    font-size: 32px;
  }
  .lp-faq-pills {
    gap: 12px;
  }
  .lp-faq-pill {
    padding: 6px 14px;
  }
}

/* FORM RESPONSIVE */
@media (max-width: 991px) {
  .lp-form-hero h1 {
    font-size: 40px;
  }
  .lp-form .card {
    padding: 20px 0 10px;
  }
  .lp-form .card-body {
    padding: 40px 12px 20px;
  }
  .lp-form .lp-section-subtitle {
    padding-bottom: 32px;
  }
}
@media (max-width: 767px) {
  .lp-form-hero {
    padding: 60px 0 40px;
  }
  .lp-form-hero-bg {
    object-position: 70% center;
  }
  .lp-form-hero h1 {
    font-size: 32px;
  }
  .lp-form {
    border-radius: 12px;
  }
  .lp-form-captcha-icon {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }
  .lp-form h2 {
    font-size: 28px;
  }
  .lp-form .lp-section-subtitle {
    padding-bottom: 24px;
    font-size: 16px;
  }
}
