:root {
  --ll-color-primary: #0062E6;
  --ll-color-primary-dark: #004BB5;
  --ll-color-secondary: #FF6B35;
  --ll-color-secondary-dark: #E55A2B;
  --ll-color-accent: #00C853;
  --ll-color-background: #F5F7FA;
  --ll-color-text-primary: #1A1D29;
  --ll-color-text-secondary: #5A5E6E;
  --ll-color-white: #FFFFFF;
  --ll-color-dark: #0D1117;
  --ll-color-warning: #FFB800;
  --ll-color-danger: #E53935;
  --ll-font-heading: 'Inter', sans-serif;
  --ll-font-body: 'DM Sans', sans-serif;
  --ll-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --ll-shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --ll-shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
  --ll-shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.2);
  --ll-radius-sm: 8px;
  --ll-radius-md: 12px;
  --ll-radius-lg: 16px;
  --ll-radius-xl: 24px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}
body {
  font-family: var(--ll-font-body);
  background: var(--ll-color-background);
  color: var(--ll-color-text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}
.top-bar {
  background: var(--ll-color-dark);
  color: var(--ll-color-white);
  padding: 8px 16px;
  text-align: center;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  text-decoration: none;
}
.top-bar-text {
  display: flex;
  align-items: center;
  gap: 6px;
}
.top-bar-highlight {
  color: var(--ll-color-warning);
  font-weight: 700;
}
.navbar {
  background: var(--ll-color-white);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--ll-shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--ll-color-primary), var(--ll-color-primary-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-text {
  font-family: var(--ll-font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--ll-color-primary);
}
.logo-text-accent {
  color: var(--ll-color-secondary);
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-phone-label {
  font-size: 12px;
  color: var(--ll-color-text-secondary);
  text-align: right;
  line-height: 1.3;
}
.nav-phone-number {
  font-family: var(--ll-font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--ll-color-primary);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.nav-phone-number:hover {
  color: var(--ll-color-secondary);
}
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 20, 60, 0.85) 0%, rgba(0, 98, 230, 0.7) 50%, rgba(0, 20, 60, 0.6) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  width: 100%;
}
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  padding: 8px 18px;
  width: fit-content;
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--ll-color-accent);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
.hero-badge-text {
  color: var(--ll-color-white);
  font-size: 14px;
  font-weight: 600;
}
.hero-heading {
  font-family: var(--ll-font-heading);
  font-size: 48px;
  font-weight: 900;
  color: var(--ll-color-white);
  line-height: 1.1;
  letter-spacing: -1px;
}
.hero-heading-highlight {
  color: var(--ll-color-warning);
}
.hero-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  max-width: 500px;
}
.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 6px 14px;
}
.hero-feature-text {
  color: var(--ll-color-white);
  font-size: 13px;
  font-weight: 500;
}
.hero-cta-box {
  background: var(--ll-color-white);
  border-radius: var(--ll-radius-xl);
  padding: 40px 32px;
  box-shadow: var(--ll-shadow-xl);
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}
.cta-box-title {
  font-family: var(--ll-font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--ll-color-text-primary);
}
.cta-box-sub {
  font-size: 15px;
  color: var(--ll-color-text-secondary);
}
.cta-phone-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.cta-phone-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--ll-color-secondary), var(--ll-color-secondary-dark));
  color: var(--ll-color-white);
  font-family: var(--ll-font-heading);
  font-size: 28px;
  font-weight: 800;
  padding: 18px 36px;
  border-radius: 60px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
  width: 100%;
  animation: cta-glow 2s infinite;
}
.cta-phone-link:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 35px rgba(255, 107, 53, 0.5);
}
.cta-agents {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: var(--ll-color-accent);
  font-weight: 600;
}
.cta-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ll-color-text-secondary);
  font-size: 13px;
}
.cta-divider-line {
  flex: 1;
  height: 1px;
  background: #E5E7EB;
}
.cta-savings-badge {
  background: linear-gradient(135deg, #FFF8E7, #FFF3D0);
  border: 1px solid #FFD54F;
  border-radius: var(--ll-radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cta-savings-text {
  font-size: 14px;
  color: var(--ll-color-text-primary);
  text-align: left;
  line-height: 1.4;
}
.cta-savings-bold {
  font-weight: 700;
  color: var(--ll-color-secondary-dark);
}
.cta-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--ll-color-text-secondary);
}
.airlines-strip {
  background: var(--ll-color-white);
  padding: 32px 24px;
  text-align: center;
  border-bottom: 1px solid #E5E7EB;
}
.airlines-label {
  font-size: 13px;
  color: var(--ll-color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 20px;
}
.airlines-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}
.airline-name {
  font-family: var(--ll-font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--ll-color-text-secondary);
  opacity: 0.5;
}
.benefits {
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--ll-color-primary);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--ll-font-heading);
  font-size: 38px;
  font-weight: 800;
  color: var(--ll-color-text-primary);
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-sub {
  font-size: 17px;
  color: var(--ll-color-text-secondary);
  max-width: 600px;
  margin-bottom: 48px;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.benefit-card {
  background: var(--ll-color-white);
  border-radius: var(--ll-radius-lg);
  padding: 32px 28px;
  box-shadow: var(--ll-shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid #E5E7EB;
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ll-shadow-md);
  border-color: var(--ll-color-primary);
}
.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--ll-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.benefit-icon-blue {
  background: linear-gradient(135deg, #E8F0FE, #D0E2FF);
}
.benefit-icon-orange {
  background: linear-gradient(135deg, #FFF0E6, #FFDCC8);
}
.benefit-icon-green {
  background: linear-gradient(135deg, #E6F9ED, #C8F5D6);
}
.benefit-icon-purple {
  background: linear-gradient(135deg, #F0E8FE, #DCC8FF);
}
.benefit-icon-red {
  background: linear-gradient(135deg, #FEEBEA, #FFD0CE);
}
.benefit-icon-teal {
  background: linear-gradient(135deg, #E6F7F7, #C8F0F0);
}
.benefit-title {
  font-family: var(--ll-font-heading);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ll-color-text-primary);
}
.benefit-desc {
  font-size: 14px;
  color: var(--ll-color-text-secondary);
  line-height: 1.6;
}
.how-it-works {
  background: linear-gradient(180deg, #F5F7FA 0%, #FFFFFF 100%);
  padding: 80px 24px;
}
.how-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
  position: relative;
}
.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
}
.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ll-font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--ll-color-white);
  background: linear-gradient(135deg, var(--ll-color-primary), var(--ll-color-primary-dark));
  box-shadow: 0 4px 15px rgba(0, 98, 230, 0.3);
}
.step-title {
  font-family: var(--ll-font-heading);
  font-size: 20px;
  font-weight: 700;
}
.step-desc {
  font-size: 15px;
  color: var(--ll-color-text-secondary);
  max-width: 280px;
}
.deals {
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.deals-header {
  text-align: center;
  margin-bottom: 48px;
}
.deals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.deal-card {
  background: var(--ll-color-white);
  border-radius: var(--ll-radius-lg);
  overflow: hidden;
  box-shadow: var(--ll-shadow-sm);
  border: 1px solid #E5E7EB;
  transition: all 0.3s ease;
}
.deal-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ll-shadow-md);
}
.deal-img-wrap {
  height: 160px;
  overflow: hidden;
  position: relative;
}
.deal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.deal-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--ll-color-danger);
  color: var(--ll-color-white);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}
.deal-body {
  padding: 20px;
}
.deal-route {
  font-family: var(--ll-font-heading);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}
.deal-info {
  font-size: 13px;
  color: var(--ll-color-text-secondary);
  margin-bottom: 12px;
}
.deal-price-row {
  display: flex;
  align-items: left;
  justify-content: flex-start;
}
.deal-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--ll-color-primary);
  color: var(--ll-color-white);
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.deal-call-btn:hover {
  background: var(--ll-color-primary-dark);
  transform: translateY(-2px);
}
.testimonials {
  background: var(--ll-color-dark);
  padding: 80px 24px;
  color: var(--ll-color-white);
}
.testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--ll-radius-lg);
  padding: 28px;
  backdrop-filter: blur(10px);
}
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 14px;
}
.testimonial-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 18px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ll-color-primary), var(--ll-color-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ll-font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--ll-color-white);
}
.testimonial-name {
  font-family: var(--ll-font-heading);
  font-weight: 600;
  font-size: 15px;
}
.testimonial-route {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}
.big-cta {
  position: relative;
  padding: 80px 24px;
  text-align: center;
  overflow: hidden;
}
.big-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.big-cta-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.big-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 98, 230, 0.9), rgba(0, 30, 80, 0.92));
  z-index: 1;
}
.big-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.big-cta-heading {
  font-family: var(--ll-font-heading);
  font-size: 42px;
  font-weight: 900;
  color: var(--ll-color-white);
  line-height: 1.15;
}
.big-cta-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 500px;
}
.big-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--ll-color-secondary);
  color: var(--ll-color-white);
  font-family: var(--ll-font-heading);
  font-size: 32px;
  font-weight: 800;
  padding: 22px 48px;
  border-radius: 60px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
  animation: cta-glow 2s infinite;
}
.big-cta-phone:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.5);
}
.big-cta-note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}
.faq {
  padding: 80px 24px;
  max-width: 800px;
  margin: 0 auto;
}
.faq-header {
  text-align: center;
  margin-bottom: 48px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--ll-color-white);
  border: 1px solid #E5E7EB;
  border-radius: var(--ll-radius-md);
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item.active {
  border-color: var(--ll-color-primary);
  box-shadow: 0 2px 12px rgba(0, 98, 230, 0.1);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--ll-font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--ll-color-text-primary);
  text-decoration: none;
  gap: 12px;
  width: 100%;
  background: none;
}
.faq-icon {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item.active .faq-icon {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer {
  max-height: 300px;
}
.faq-answer-text {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--ll-color-text-secondary);
  line-height: 1.7;
}
.footer {
  background: var(--ll-color-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 48px 24px 24px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand {
  max-width: 300px;
}
.footer-logo-text {
  font-family: var(--ll-font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--ll-color-white);
  margin-bottom: 10px;
}
.footer-brand-desc {
  font-size: 14px;
  line-height: 1.6;
}
.footer-links {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.footer-col-title {
  font-family: var(--ll-font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--ll-color-white);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-link-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}
.footer-link:hover {
  color: var(--ll-color-white);
}
.footer-bottom {
  display: flex;
  justify-content:center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
#bn1lb {
  scroll-margin-top: 100px;
}
html{
  scroll-behavior:smooth;
}
.footer-copyright {
  font-size: 13px;
}
.footer-legal-links {
  display: flex;
  gap: 20px;
}
.footer-legal-link {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}
.footer-legal-link:hover {
  color: var(--ll-color-white);
}
.footer-disclaimer {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.6;
}
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--ll-color-white);
  padding: 12px 16px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 200;
}
.sticky-cta-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--ll-color-secondary), var(--ll-color-secondary-dark));
  color: var(--ll-color-white);
  padding: 16px 24px;
  border-radius: 60px;
  text-decoration: none;
  font-family: var(--ll-font-heading);
  font-size: 20px;
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 500;
  align-items: flex-end;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(4px);
  overflow-y: auto;
}
.popup-overlay.active {
  display: flex;
  animation: fadeIn 0.3s ease;
  justify-content: flex-start;

}
.popup-box {
  background: var(--ll-color-white);
  border-radius: var(--ll-radius-xl);
  max-width: 460px;
  width: 100%;
  overflow: hidden;
  box-shadow: var(--ll-shadow-xl);
  animation: slideUp 0.4s ease;
  position: relative;
  margin: auto;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
}
.popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--ll-color-text-secondary);
  transition: all 0.3s;
  z-index: 2;
}
.popup-close:hover {
  background: rgba(0, 0, 0, 0.12);
}
.popup-header {
  background: linear-gradient(135deg, var(--ll-color-primary), var(--ll-color-primary-dark));
  padding: 32px 28px;
  text-align: center;
  position: relative;
}
.popup-icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.popup-title {
  font-family: var(--ll-font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--ll-color-white);
  margin-bottom: 8px;
}
.popup-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}
.popup-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.popup-deal-wrap {
  background: linear-gradient(135deg, #FFF8E7, #FFF3D0);
  border: 2px dashed var(--ll-color-warning);
  border-radius: var(--ll-radius-md);
  padding: 16px 24px;
  width: 100%;
}
.popup-deal-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--ll-color-text-secondary);
  font-weight: 700;
  margin-bottom: 4px;
}
.popup-deal-amount {
  font-family: var(--ll-font-heading);
  font-size: 32px;
  font-weight: 900;
  color: var(--ll-color-secondary-dark);
  word-wrap: break-word;
}
.popup-deal-desc {
  font-size: 13px;
  color: var(--ll-color-text-secondary);
}
.popup-timer-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
.popup-timer-text {
  font-size: 14px;
  color: var(--ll-color-danger);
  font-weight: 600;
}
.popup-cta-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--ll-color-secondary), var(--ll-color-secondary-dark));
  color: var(--ll-color-white);
  font-family: var(--ll-font-heading);
  font-size: 24px;
  font-weight: 800;
  padding: 18px 36px;
  border-radius: 60px;
  text-decoration: none;
  width: 100%;
  transition: all 0.3s;
  box-shadow: 0 6px 25px rgba(255, 107, 53, 0.3);
}
.popup-cta-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 35px rgba(255, 107, 53, 0.4);
}
.popup-free-text {
  font-size: 12px;
  color: var(--ll-color-text-secondary);
}
#hw1sb {
  margin-left: auto;
  margin-right: auto;
}
#dl1sb {
  margin-left: auto;
  margin-right: auto;
}
#tm1lb {
  color: var(--ll-color-warning);
}
#tm1tt {
  color: var(--ll-color-white);
}
#ft1ac {
  color: var(--ll-color-secondary);
}
@keyframes pulse-dot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}
@keyframes cta-glow {
  0%, 100% {
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
  }
  50% {
    box-shadow: 0 6px 35px rgba(255, 107, 53, 0.6);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes slideUpMobile {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-left {
    align-items: center;
  }
  .hero-heading {
    font-size: 38px;
  }
  .hero-sub {
    margin: 0 auto;
  }
  .hero-features {
    justify-content: center;
  }
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .deals-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
@media (max-width: 576px) {
  .popup-overlay {
    
    align-items: flex-end;
  }
  
  .popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 500;
  align-items: flex-end;
  justify-content: center;
  padding: 0px !important;
  backdrop-filter: blur(4px);
  overflow-y: auto;
}
  .popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 500;
  align-items: flex-end;
  justify-content: center;
  padding: 0px !important;
  backdrop-filter: blur(4px);
  overflow-y: auto;
}
  .popup-box {
    max-width: 100%;
    border-radius: 20px 20px 0 0;
    max-height: 90vh;
    animation: slideUpMobile 0.4s ease;
    margin: 0px;
  }
  .popup-header {
    padding: 24px 20px;
  }
  .popup-icon-wrap {
    width: 54px;
    height: 54px;
    margin-bottom: 12px;
  }
  .popup-icon-wrap img {
    width: 28px;
    height: 28px;
  }
  .popup-title {
    font-size: 18px;
    margin-bottom: 6px;
  }
  .popup-subtitle {
    font-size: 13px;
  }
  .popup-body {
    padding: 20px 16px;
    gap: 16px;
  }
  .popup-deal-wrap {
    padding: 12px 16px;
  }
  .popup-deal-label {
    font-size: 10px;
    letter-spacing: 1.5px;
  }
  .popup-deal-amount {
    font-size: 24px;
  }
  .popup-deal-desc {
    font-size: 12px;
  }
  .popup-cta-link {
    font-size: 20px;
    padding: 16px 24px;
    gap: 8px;
  }
  .popup-cta-link img {
    width: 20px;
    height: 20px;
  }
  .popup-timer-text {
    font-size: 13px;
  }
  .popup-free-text {
    font-size: 11px;
  }
  .popup-close {
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.25);
  }
  .navbar {
    padding: 10px 16px;
  }
  .logo-text {
    font-size: 18px;
  }
  .nav-phone-label {
    display: none;
  }
  .nav-phone-number {
    font-size: 16px;
  }
  .hero {
    min-height: auto;
  }
  .hero-content {
    padding: 40px 16px;
  }
  .hero-heading {
    font-size: 30px;
  }
  .hero-sub {
    font-size: 16px;
  }
  .hero-cta-box {
    padding: 28px 20px;
  }
  .cta-phone-link {
    font-size: 22px;
    padding: 16px 24px;
  }
  .section-title {
    font-size: 28px;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .deals-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .big-cta-heading {
    font-size: 28px;
  }
  .big-cta-phone {
    font-size: 24px;
    padding: 18px 32px;
  }
  .sticky-cta {
    display: block;
  }
  .footer-top {
    flex-direction: column;
  }
  .footer-links {
    flex-direction: column;
    gap: 24px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 500;
  align-items: flex-end;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(4px);
  overflow-y: auto;
}
}