/* ================================================================
   LANDING PAGE STYLES
   ================================================================ */

/* --- Reset & Base --- */
.lp-page *, .lp-page *::before, .lp-page *::after { box-sizing: border-box; }
.lp-page { overflow-x: hidden; background: #fff; }
.lp-page img { max-width: 100%; height: auto; }

/* --- Flash messages --- */
.lp-flash-container {
  position: fixed; top: 80px; left: 50%; transform: translateX(-50%);
  z-index: 3000; width: 90%; max-width: 600px;
}
/* --- Mobile nav auth buttons --- */
.lp-nav-actions-mobile {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid #eee;
  margin-top: 8px;
}

/* --- Navbar --- */
.lp-navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 12px 60px;
  display: flex; justify-content: center; align-items: center;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: box-shadow 0.3s;
}
.lp-navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.lp-navbar-inner {
  width: 100%; max-width: 1440px;
  display: flex; justify-content: space-between; align-items: center;
}
.lp-brand {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
}
.lp-brand-icon {
  width: 37px; height: 37px; border-radius: 8px;
  background: #09524A; color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 16px;
}
.lp-brand-text {
  color: #0F172A; font-size: 26px; font-family: 'Sansation', sans-serif; font-weight: 700;
}
.lp-nav-links {
  display: flex; align-items: center; gap: 40px;
}
.lp-nav-link {
  color: #1F1F1F; font-size: 16px; font-family: 'Instrument Sans', sans-serif;
  font-weight: 500; line-height: 20px; text-decoration: none; transition: color 0.2s;
}
.lp-nav-link:hover { color: #09524A; }
.lp-nav-actions { display: flex; align-items: center; gap: 12px; }

.lp-btn {
  padding: 12px 20px; border-radius: 10px; font-size: 16px;
  font-family: 'Satoshi', sans-serif; font-weight: 500; line-height: 20px;
  text-decoration: none; display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.25s ease; cursor: pointer; border: none;
}
.lp-btn-solid {
  background: linear-gradient(180deg, #09524A 0%, #1D7578 100%);
  color: #fff; box-shadow: 0 2px 3px rgba(0,0,0,0.15);
}
.lp-btn-solid:hover { color: #fff; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(9,82,74,0.3); }
.lp-btn-ghost {
  background: #fff; color: #09524A;
  border: 1px solid #09524A;
}
.lp-btn-ghost:hover { background: rgba(9,82,74,0.06); color: #09524A; }

.lp-mobile-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.lp-mobile-toggle span {
  width: 24px; height: 2px; background: #1F1F1F; border-radius: 2px;
  transition: all 0.3s;
}

/* --- Hero Section --- */
.lp-hero {
  position: relative; background: #fff; overflow: hidden;
  padding-top: 100px;
}
.lp-hero-blob {
  position: absolute; border-radius: 9999px; filter: blur(400px);
  background: #0C5650; pointer-events: none;
}
.lp-hero-blob-1 { width: 334px; height: 334px; left: 0; top: -32px; }
.lp-hero-blob-2 { width: 334px; height: 334px; left: 50%; top: -167px; transform: translateX(-50%); }
.lp-hero-blob-3 { width: 226px; height: 226px; right: 120px; top: 712px; }
.lp-hero-blob-4 { width: 226px; height: 226px; left: 120px; top: 712px; }
.lp-hero-blob-5 { width: 334px; height: 334px; left: 50%; top: 866px; transform: translateX(-50%); }

.lp-hero-content {
  position: relative; z-index: 2;
  max-width: 898px; margin: 0 auto;
  padding: 48px 20px 0;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 40px;
}
.lp-hero-top {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.lp-hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 24px 6px 8px;
  background: #fff; border-radius: 100px;
  box-shadow: 0 0 24px rgba(10,83,76,0.32);
  border: 0.2px solid #0A534C;
}
.lp-hero-pill-badge {
  padding: 4px 8px; border-radius: 100px;
  background: linear-gradient(180deg, #09524A 0%, #1D7578 100%);
  box-shadow: 0 2px 3px rgba(0,0,0,0.15);
  color: #fff; font-size: 10px; font-family: 'Inter', sans-serif;
  font-weight: 500; line-height: 16px;
}
.lp-hero-pill-text {
  color: rgba(34,34,34,0.60); font-size: 12px;
  font-family: 'Inter', sans-serif; font-weight: 500; line-height: 16px;
}
.lp-hero-heading {
  color: #000; font-size: 60px; font-family: 'Instrument Sans', sans-serif;
  font-weight: 500; line-height: 72px; margin: 0;
}
.lp-hero-sub {
  max-width: 826px; color: #444; font-size: 20px;
  font-family: 'Inter', sans-serif; font-weight: 500; line-height: 32px; margin: 0;
}
.lp-hero-buttons {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap; justify-content: center;
}
.lp-hero-buttons .lp-btn { padding: 16px 24px; font-weight: 700; }

.lp-hero-image-wrap {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 60px auto 0;
  padding: 0 20px;
}
.lp-hero-image-container {
  position: relative; border-radius: 20px; overflow: hidden;
  box-shadow: 0 0 24px rgba(9,82,74,0.08);
  border: 1px solid rgba(12,87,80,0.32);
}
.lp-hero-image-container img {
  width: 100%; display: block;
}
.lp-hero-image-fade {
  position: absolute; bottom: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, #fff 90%);
  pointer-events: none;
}

/* --- Section Pill (shared) --- */
.lp-section-pill {
  display: inline-flex; align-items: center;
  padding: 8px 16px; background: #fff;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.09);
  border-radius: 100px;
  color: #000; font-size: 15px; font-family: 'Instrument Sans', sans-serif;
  font-weight: 500; line-height: 18px;
}
.lp-section-heading {
  color: #000; font-size: 50px; font-family: 'Instrument Sans', sans-serif;
  font-weight: 500; line-height: 60px; text-align: center; margin: 0;
}

/* --- How It Works --- */
.lp-how {
  padding: 80px 20px 120px;
}
.lp-how-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 60px;
}
.lp-how-header {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.lp-how-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; width: 100%;
}
.lp-how-card {
  padding: 32px 24px; background: #fff;
  box-shadow: 0 0 16px rgba(0,0,0,0.06);
  border-radius: 24px; border: 1px solid #E5F2F2;
  display: flex; flex-direction: column; align-items: center; gap: 24px;
  text-align: center;
}
.lp-how-icon {
  width: 72px; height: 72px; border-radius: 100px;
  background: linear-gradient(180deg, #09524A 0%, #1D7578 100%);
  box-shadow: 0 2px 10px 1px rgba(0,0,0,0.10), 0 0 0 1px rgba(18,55,105,0.08);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 28px;
}
.lp-how-card h3 {
  color: #000; font-size: 24px; font-family: 'Satoshi', sans-serif;
  font-weight: 500; line-height: 28px; margin: 0;
}
.lp-how-card p {
  color: rgba(34,34,34,0.50); font-size: 18px; font-family: 'Satoshi', sans-serif;
  font-weight: 500; line-height: 27px; margin: 0;
}

/* --- Why Choose Us --- */
.lp-why {
  background: #F2F6F6; padding: 100px 80px;
}
.lp-why-inner {
  max-width: 1316px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 60px;
}
.lp-why-header {
  display: flex; flex-direction: column; align-items: center; gap: 16px; width: 100%;
}
.lp-why-body {
  display: flex; align-items: center; gap: 60px; width: 100%;
}
.lp-why-image {
  width: 580px; min-width: 380px; height: 512px;
  background: #D5E8DA; border-radius: 20px; overflow: hidden;
  flex-shrink: 0; position: relative;
}
.lp-why-image img {
  width: 100%; height: 100%; object-fit: cover;
}
.lp-why-list {
  flex: 1; display: flex; flex-direction: column; gap: 20px;
}
.lp-why-item {
  padding: 16px 20px; background: #fff;
  box-shadow: 0 0 4px rgba(0,0,0,0.25); border-radius: 20px;
  display: flex; align-items: center; gap: 20px;
}
.lp-why-item-icon {
  width: 72px; height: 72px; min-width: 72px; border-radius: 100px;
  background: #fff; box-shadow: 0 4px 4px rgba(0,0,0,0.25);
  border: 1px solid rgba(0,0,0,0.20);
  display: flex; align-items: center; justify-content: center;
  color: #218E88; font-size: 28px;
}
.lp-why-item-content { flex: 1; }
.lp-why-item-content h4 {
  color: #032A44; font-size: 20px; font-family: 'Inter', sans-serif;
  font-weight: 600; line-height: 24px; margin: 0 0 8px 0;
}
.lp-why-item-content p {
  color: #737E93; font-size: 16px; font-family: 'Inter', sans-serif;
  font-weight: 400; line-height: 24px; margin: 0;
}

/* --- Benefits --- */
.lp-benefits {
  padding: 100px 90px; background: #fff;
}
.lp-benefits-inner {
  max-width: 1260px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 56px;
}
.lp-benefits-header {
  display: flex; flex-direction: column; align-items: center; gap: 16px; width: 100%;
}
.lp-benefits-header .lp-section-heading { max-width: 682px; }
.lp-benefits-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px;
  width: 100%;
}
.lp-benefits-col {
  display: flex; flex-direction: column; gap: 16px;
}
.lp-benefit-card {
  padding: 24px; background: #F8F9FA; border-radius: 20px;
  border: 1px solid #EEE; overflow: hidden;
  display: flex; flex-direction: column; gap: 24px;
}
.lp-benefit-icon {
  width: 56px; height: 56px; border-radius: 12px;
  background: #1A6F70; color: #fff; font-size: 24px;
  display: flex; align-items: center; justify-content: center;
}
.lp-benefit-card h4 {
  color: #262626; font-size: 20px; font-family: 'Inter', sans-serif;
  font-weight: 600; line-height: 24px; margin: 0;
}
.lp-benefit-card p {
  color: #666; font-size: 16px; font-family: 'Inter', sans-serif;
  font-weight: 400; line-height: 24px; margin: 0;
}
.lp-benefits-center {
  background: #1A6F70; border-radius: 12px; overflow: hidden;
  position: relative; min-height: 488px;
  display: flex; flex-direction: column;
}
.lp-benefits-center-glow {
  position: absolute; width: 160px; height: 160px;
  right: 0; top: -66px; background: #054E45;
  border-radius: 9999px; filter: blur(200px); pointer-events: none;
}
.lp-benefits-center-brand {
  display: flex; align-items: center; gap: 16px;
  padding: 21px 18px; position: relative; z-index: 1;
}
.lp-benefits-center-brand .lp-brand-icon {
  background: #fff; color: #09524A;
}
.lp-benefits-center-brand span {
  color: #fff; font-size: 26px; font-family: 'Sansation', sans-serif; font-weight: 700;
}
.lp-benefits-center-img {
  position: relative; z-index: 1; flex: 1;
  padding: 0 20px 0 40px; display: flex; align-items: flex-end;
}
.lp-benefits-center-img img {
  width: 100%; border-top-left-radius: 12px;
  box-shadow: 0 0 20px rgba(255,255,255,0.60);
  border: 2px solid rgba(0,0,0,0.15);
}

/* --- Pricing --- */
.lp-pricing {
  padding: 68px 20px;
}
.lp-pricing-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 25px;
  display: flex; flex-direction: column; align-items: center; gap: 40px;
}
.lp-pricing-header {
  display: flex; flex-direction: column; align-items: center; gap: 24px; width: 100%;
}
.lp-pricing-toggle-wrap {
  padding: 12px; background: #F6F6F6; border-radius: 9999px;
  display: inline-flex; gap: 8px;
}
.lp-pricing-toggle-btn {
  width: 160px; height: 48px; border-radius: 9999px; border: none;
  font-size: 15px; font-family: 'DM Sans', sans-serif; font-weight: 400;
  line-height: 22.5px; cursor: pointer; transition: all 0.25s;
}
.lp-pricing-toggle-btn.active {
  background: #09524A; color: #fff;
}
.lp-pricing-toggle-btn:not(.active) {
  background: #fff; color: #222;
}
.lp-pricing-cards {
  display: flex; justify-content: center; align-items: center; gap: 22px;
  flex-wrap: wrap;
}
.lp-price-card {
  min-width: 340px; max-width: 380px; flex: 1;
  padding: 28px; border-radius: 20px;
  display: flex; flex-direction: column; gap: 39px;
}
.lp-price-card-default {
  background: #fff; border: 1px solid rgba(34,34,34,0.12);
}
.lp-price-card-featured {
  background: #F2F6F6; border: 1px solid #0B554D;
}
.lp-price-card-name {
  color: #000; font-size: 24px; font-family: 'Satoshi', sans-serif;
  font-weight: 500; line-height: 36px; margin: 0;
}
.lp-price-card-desc {
  color: #636363; font-size: 18px; font-family: 'Satoshi', sans-serif;
  font-weight: 500; line-height: 27px; margin: 5px 0 0 0;
}
.lp-price-amount {
  display: flex; align-items: flex-end; gap: 5px;
}
.lp-price-value {
  color: #000; font-size: 42px; font-family: 'Satoshi', sans-serif;
  font-weight: 500; line-height: 63px;
}
.lp-price-period {
  color: #808080; font-size: 16px; font-family: 'Satoshi', sans-serif;
  font-weight: 500; line-height: 19.2px; padding-bottom: 5px;
}
.lp-price-cta {
  width: 100%; padding: 16px 24px; border-radius: 12px; border: none;
  background: linear-gradient(180deg, #09524A 0%, #1D7578 100%);
  box-shadow: 0 2px 3px rgba(42,59,81,0.15), 0 0 0 1px rgba(18,55,105,0.08);
  color: #fff; font-size: 18px; font-family: 'Satoshi', sans-serif;
  font-weight: 500; line-height: 21.6px; cursor: pointer;
  text-decoration: none; text-align: center; display: block;
  transition: all 0.25s;
}
.lp-price-cta:hover { color: #fff; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(9,82,74,0.3); }
.lp-price-features {
  display: flex; flex-direction: column; gap: 18px;
}
.lp-price-feature {
  display: flex; align-items: center; gap: 10px;
}
.lp-price-check {
  width: 22px; height: 22px; min-width: 22px; border-radius: 1000px;
  background: linear-gradient(180deg, #09534B 0%, #1D7477 100%);
  display: flex; align-items: center; justify-content: center;
}
.lp-price-check svg { width: 12px; height: 12px; }
.lp-price-feature span {
  color: #292929; font-size: 16px; font-family: 'Satoshi', sans-serif;
  font-weight: 500; line-height: 24px;
}

/* --- Testimonials --- */
.lp-testimonials {
  padding: 68px 20px;
}
.lp-testimonials-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 25px;
  display: flex; flex-direction: column; align-items: center; gap: 68px;
}
.lp-testimonials-header {
  display: flex; flex-direction: column; align-items: center; gap: 24px;
}
.lp-testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; width: 100%;
}
.lp-testimonials-col {
  display: flex; flex-direction: column; gap: 18px;
}
.lp-testimonial-card {
  padding: 30px; background: #FAFAFA; border-radius: 28px;
  border: 1px solid rgba(0,0,0,0.05);
  display: flex; flex-direction: column; gap: 28px;
}
.lp-testimonial-quote {
  opacity: 0.20; font-size: 32px; line-height: 1; color: #000;
}
.lp-testimonial-text {
  color: #636363; font-size: 18px; font-family: 'Satoshi', sans-serif;
  font-weight: 500; line-height: 27px; margin: 0;
}
.lp-testimonial-author {
  display: flex; align-items: center; gap: 16px; padding-top: 5px;
}
.lp-testimonial-avatar {
  width: 50px; height: 50px; border-radius: 100px; object-fit: cover;
}
.lp-testimonial-name {
  color: #000; font-size: 18px; font-family: 'Satoshi', sans-serif;
  font-weight: 500; line-height: 27px; margin: 0;
}
.lp-testimonial-stars {
  display: flex; gap: 3px; color: #000; font-size: 11px;
}

/* --- FAQ --- */
.lp-faq {
  padding: 68px 20px;
}
.lp-faq-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 25px;
  display: flex; flex-direction: column; align-items: center; gap: 68px;
}
.lp-faq-header {
  display: flex; flex-direction: column; align-items: center; gap: 24px;
}
.lp-faq-list {
  max-width: 740px; width: 100%;
  display: flex; flex-direction: column; gap: 20px;
}
.lp-faq-item {
  background: #FAFAFA; border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.05); overflow: hidden;
}
.lp-faq-question {
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; padding: 18px; cursor: pointer; width: 100%;
  background: none; border: none; text-align: left;
}
.lp-faq-question span {
  color: #292929; font-size: 20px; font-family: 'Satoshi', sans-serif;
  font-weight: 500; line-height: 30px; flex: 1;
}
.lp-faq-toggle {
  width: 34px; height: 34px; min-width: 34px; border-radius: 100px;
  background: #fff; box-shadow: 0 0 0 1px rgba(18,55,105,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s;
}
.lp-faq-item.active .lp-faq-toggle { transform: rotate(180deg); }
.lp-faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 18px;
}
.lp-faq-item.active .lp-faq-answer {
  max-height: 300px; padding: 0 18px 18px;
}
.lp-faq-answer p {
  color: #636363; font-size: 16px; font-family: 'Inter', sans-serif;
  font-weight: 400; line-height: 26px; margin: 0;
}

/* --- CTA Banner --- */
.lp-cta-banner {
  padding: 100px 60px;
}
.lp-cta-banner-inner {
  max-width: 1320px; margin: 0 auto;
  padding: 93px 24px; background: #196C6D; opacity: 0.95;
  border-radius: 32px; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; gap: 42px;
  text-align: center;
}
.lp-cta-banner-text {
  display: flex; flex-direction: column; align-items: center; gap: 15px;
}
.lp-cta-banner-text h2 {
  color: #F9FAFB; font-size: 48px; font-family: 'Satoshi', sans-serif;
  font-weight: 700; line-height: 52.8px; margin: 0;
}
.lp-cta-banner-text p {
  max-width: 588px; color: rgba(255,255,255,0.75); font-size: 18px;
  font-family: 'Inter', sans-serif; font-weight: 500; line-height: 21.6px; margin: 0;
}
.lp-cta-tags {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
}
.lp-cta-tag {
  padding: 6px 20px; background: #47898A; border-radius: 100px;
  border: 0.6px solid rgba(255,255,255,0.32);
  color: rgba(255,255,255,0.75); font-size: 14px;
  font-family: 'Inter', sans-serif; font-weight: 500; line-height: 18px;
}
.lp-cta-buttons {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap; justify-content: center;
}
.lp-cta-btn-white {
  padding: 16px 24px; background: #fff; border-radius: 10px;
  box-shadow: 0 2px 3px rgba(0,0,0,0.15);
  color: #47898A; font-size: 16px; font-family: 'Satoshi', sans-serif;
  font-weight: 700; line-height: 20px; text-decoration: none;
  transition: all 0.25s;
}
.lp-cta-btn-white:hover { color: #47898A; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
.lp-cta-btn-outline {
  padding: 16px 24px; border-radius: 10px;
  background: linear-gradient(180deg, #09524A 0%, #1D7578 100%);
  box-shadow: 0 2px 3px rgba(0,0,0,0.15);
  border: 1px solid #fff;
  color: #fff; font-size: 16px; font-family: 'Satoshi', sans-serif;
  font-weight: 700; line-height: 20px; text-decoration: none;
  transition: all 0.25s;
}
.lp-cta-btn-outline:hover { color: #fff; transform: translateY(-1px); }

/* --- Footer --- */
.lp-footer {
  background: #000; padding: 100px 80px 42px; color: #fff;
}
.lp-footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 42px;
}
.lp-footer-main {
  display: flex; gap: 80px;
  padding-bottom: 42px; border-bottom: 1px solid rgba(255,255,255,0.20);
}
.lp-footer-brand-col {
  max-width: 407px; display: flex; flex-direction: column; gap: 24px;
}
.lp-footer-brand-col .lp-brand-icon {
  background: #fff; color: #09524A;
}
.lp-footer-brand-col .lp-brand-text { color: #fff; font-size: 35px; }
.lp-footer-brand-desc {
  color: rgba(255,255,255,0.75); font-size: 18px;
  font-family: 'Inter', sans-serif; font-weight: 500; line-height: 28px; margin: 0;
}
.lp-footer-newsletter-label {
  color: rgba(255,255,255,0.75); font-size: 18px;
  font-family: 'Inter', sans-serif; font-weight: 500; line-height: 21.6px; margin: 0 0 16px 0;
}
.lp-footer-newsletter {
  display: flex; gap: 16px;
}
.lp-footer-newsletter input {
  flex: 1; padding: 14px 16px; border-radius: 10px; border: none;
  font-size: 16px; font-family: 'Inter', sans-serif; font-weight: 400;
  line-height: 20px; color: #222; background: #fff;
}
.lp-footer-newsletter input::placeholder { color: #999; }
.lp-footer-newsletter button {
  padding: 14px 24px; background: #10B981; border-radius: 10px; border: none;
  color: #F9FAFB; font-size: 18px; font-family: 'Inter', sans-serif;
  font-weight: 500; line-height: 21.6px; cursor: pointer;
  transition: background 0.2s;
}
.lp-footer-newsletter button:hover { background: #059669; }
.lp-footer-links {
  display: flex; gap: 80px; flex: 1; justify-content: flex-end;
}
.lp-footer-link-group {
  display: flex; flex-direction: column; gap: 32px;
}
.lp-footer-link-group h6 {
  color: rgba(255,255,255,0.75); font-size: 16px;
  font-family: 'Inter', sans-serif; font-weight: 500; line-height: 19.2px; margin: 0;
}
.lp-footer-link-list {
  display: flex; flex-direction: column; gap: 16px;
}
.lp-footer-link-list a {
  color: #fff; font-size: 18px; font-family: 'Inter', sans-serif;
  font-weight: 500; line-height: 21.6px; text-decoration: none;
  transition: opacity 0.2s;
}
.lp-footer-link-list a:hover { opacity: 0.8; color: #fff; }
.lp-footer-bottom {
  display: flex; justify-content: space-between; align-items: flex-end;
}
.lp-footer-bottom-links {
  display: flex; gap: 16px;
}
.lp-footer-bottom-links a, .lp-footer-bottom span {
  color: rgba(255,255,255,0.75); font-size: 16px;
  font-family: 'Inter', sans-serif; font-weight: 500; line-height: 19.2px;
  text-decoration: none;
}
.lp-footer-bottom-links a:hover { color: #fff; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1200px) {
  .lp-why-body { gap: 40px; }
  .lp-why-image { width: 420px; min-width: 320px; height: 420px; }
  .lp-benefits { padding: 80px 40px; }
  .lp-footer-main { gap: 40px; }
  .lp-footer-links { gap: 40px; }
}

@media (max-width: 991px) {
  .lp-navbar { padding: 12px 24px; }
  .lp-nav-links { display: none; }
  .lp-mobile-toggle { display: flex; }
  .lp-nav-links.open {
    display: flex; flex-direction: column; gap: 16px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; padding: 24px; border-bottom: 1px solid #eee;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .lp-hero-heading { font-size: 44px; line-height: 54px; }
  .lp-hero-sub { font-size: 18px; line-height: 28px; }
  .lp-how-cards { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .lp-why { padding: 80px 24px; }
  .lp-why-body { flex-direction: column; }
  .lp-why-image { width: 100%; min-width: unset; height: 400px; }
  .lp-benefits { padding: 60px 24px; }
  .lp-benefits-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .lp-benefits-center { min-height: 360px; }
  .lp-section-heading { font-size: 36px; line-height: 44px; }
  .lp-pricing-cards { flex-direction: column; align-items: center; }
  .lp-price-card { max-width: 420px; width: 100%; }
  .lp-testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .lp-cta-banner { padding: 60px 24px; }
  .lp-cta-banner-inner { padding: 60px 24px; }
  .lp-cta-banner-text h2 { font-size: 36px; line-height: 42px; }
  .lp-footer { padding: 60px 24px 32px; }
  .lp-footer-main { flex-direction: column; gap: 40px; }
  .lp-footer-links { justify-content: flex-start; flex-wrap: wrap; }
  .lp-footer-bottom { flex-direction: column; gap: 16px; align-items: flex-start; }
}

@media (max-width: 768px) {
  .lp-hero-heading { font-size: 36px; line-height: 44px; }
  .lp-hero-sub { font-size: 16px; line-height: 26px; }
  .lp-hero-buttons { flex-direction: column; width: 100%; }
  .lp-hero-buttons .lp-btn { width: 100%; max-width: 320px; }
  .lp-how { padding: 60px 20px 80px; }
  .lp-why-item { flex-direction: column; text-align: center; }
  .lp-faq-question span { font-size: 17px; line-height: 26px; }
  .lp-footer-newsletter { flex-direction: column; }
  .lp-nav-actions { display: none; }
  .lp-nav-links.open .lp-nav-actions-mobile { display: flex; }
}

@media (max-width: 576px) {
  .lp-hero { padding-top: 80px; }
  .lp-hero-content { padding: 32px 16px 0; gap: 28px; }
  .lp-hero-heading { font-size: 30px; line-height: 38px; }
  .lp-section-heading { font-size: 28px; line-height: 36px; }
  .lp-cta-banner-text h2 { font-size: 28px; line-height: 34px; }
  .lp-price-card { min-width: unset; }
  .lp-cta-buttons { flex-direction: column; width: 100%; }
  .lp-cta-btn-white, .lp-cta-btn-outline { width: 100%; max-width: 300px; text-align: center; }
}

/* --- Flash Alerts --- */
.lp-alert {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; border-radius: 12px;
  font-size: 15px; font-family: 'Inter', sans-serif; font-weight: 500;
  animation: lp-alert-in 0.3s ease;
}
.lp-alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.lp-alert-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.lp-alert-close {
  margin-left: auto; background: none; border: none;
  font-size: 22px; line-height: 1; cursor: pointer; color: inherit; opacity: 0.6;
}
.lp-alert-close:hover { opacity: 1; }
@keyframes lp-alert-in {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Cookie Consent --- */
.lp-cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #1a1a2e; color: #fff; z-index: 3000;
  padding: 20px 24px; display: none;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  animation: lp-cookie-slide 0.4s ease;
}
.lp-cookie-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  flex-wrap: wrap;
}
.lp-cookie-text {
  flex: 1; min-width: 280px;
  font-size: 14px; font-family: 'Inter', sans-serif; line-height: 22px;
  color: rgba(255,255,255,0.85);
}
.lp-cookie-text a { color: #5DD39E; text-decoration: underline; }
.lp-cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.lp-cookie-btn {
  padding: 10px 24px; border-radius: 8px; border: none;
  font-size: 14px; font-family: 'Inter', sans-serif; font-weight: 600;
  cursor: pointer; transition: all 0.2s;
}
.lp-cookie-accept { background: #10B981; color: #fff; }
.lp-cookie-accept:hover { background: #059669; }
@keyframes lp-cookie-slide {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@media (max-width: 768px) {
  .lp-cookie-inner { flex-direction: column; text-align: center; }
  .lp-cookie-actions { width: 100%; justify-content: center; }
}

/* ================================================================
   AUTH MODAL
   ================================================================ */
.auth-modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.auth-modal-overlay.active { display: flex; }
@keyframes authSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.auth-modal {
  width: 100%;
  max-width: 1020px;
  background: #F9FAFB;
  border-radius: 20px;
  box-shadow: 0 0 33px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  display: flex;
  max-height: min(640px, 90vh);
  position: relative;
  animation: authSlideUp 0.3s ease;
}
.auth-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.06);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s;
  color: #666;
  font-size: 20px;
  line-height: 1;
}
.auth-modal-close:hover { background: rgba(0,0,0,0.12); }

.auth-modal-left {
  width: 496px;
  flex-shrink: 0;
  border-radius: 14px;
  margin: 12px;
  overflow: hidden;
  position: relative;
}
.auth-left-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 14px;
}

.auth-modal-right {
  flex: 1;
  padding: 40px 50px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  min-height: 0;
}
.auth-modal-form {
  width: 100%;
  max-width: 404px;
  margin: auto 0;
}
.auth-view {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.auth-form-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.auth-form-header h2 {
  color: #000;
  font-size: 24px;
  font-family: 'Sansation', sans-serif;
  font-weight: 700;
  line-height: 28px;
  margin: 0;
}
.auth-form-header p {
  color: #424242;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  line-height: 18px;
  margin: 0;
}
.auth-form-actions {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.auth-btn-email {
  width: 100%;
  height: 48px;
  background: #09524A;
  border: 0.5px solid #DEDEDE;
  border-radius: 10px;
  color: white;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  line-height: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.2s;
}
.auth-btn-email:hover {
  background: #074039;
  transform: translateY(-1px);
}
.auth-divider-text {
  color: #424242;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  line-height: 18px;
}
.auth-btn-google {
  width: 100%;
  height: 48px;
  background: white;
  border: 0.5px solid #DEDEDE;
  border-radius: 10px;
  color: #424242;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  line-height: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.2s;
}
.auth-btn-google:hover {
  background: #f5f5f5;
  color: #424242;
  transform: translateY(-1px);
}
.auth-btn-google img {
  width: 22px;
  height: 22px;
}
.auth-terms {
  text-align: center;
  color: #424242;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  line-height: 25px;
  margin: 0;
}
.auth-terms a {
  color: #09524A;
  text-decoration: none;
}
.auth-terms a:hover { text-decoration: underline; }
.auth-email-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.auth-email-form .auth-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.auth-email-form label {
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: #333;
}
.auth-email-form input {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border: 1px solid #DEDEDE;
  border-radius: 10px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  color: #333;
  background: white;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.auth-email-form input:focus {
  outline: none;
  border-color: #09524A;
  box-shadow: 0 0 0 3px rgba(9, 82, 74, 0.1);
}
.auth-email-form .auth-form-row {
  display: flex;
  gap: 12px;
}
.auth-email-form .auth-form-row .auth-form-group { flex: 1; }
.auth-submit-btn {
  width: 100%;
  height: 48px;
  background: #09524A;
  border: none;
  border-radius: 10px;
  color: white;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 4px;
}
.auth-submit-btn:hover {
  background: #074039;
  transform: translateY(-1px);
}
.auth-form-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-family: 'Poppins', sans-serif;
}
.auth-form-links a {
  color: #09524A;
  text-decoration: none;
}
.auth-form-links a:hover { text-decoration: underline; }
.auth-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: #09524A;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  padding: 0;
  align-self: flex-start;
}
.auth-back-btn:hover { text-decoration: underline; }
.auth-switch-text {
  text-align: center;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  color: #424242;
  margin: 0;
}
.auth-switch-text a {
  color: #09524A;
  text-decoration: none;
  font-weight: 500;
}
.auth-switch-text a:hover { text-decoration: underline; }
.auth-password-wrap { position: relative; }
.auth-password-wrap input { padding-right: 42px; }
.auth-password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: none;
  color: #999;
  cursor: pointer;
  padding: 4px;
  font-size: 14px;
}
.auth-or-google-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.auth-success-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
}
.auth-success-icon img {
  max-width: 137px;
  height: auto;
}

@media (max-width: 991px) {
  .auth-modal { max-width: 500px; }
  .auth-modal-left { display: none; }
  .auth-modal-right { padding: 40px 30px; }
}
@media (max-width: 576px) {
  .auth-modal-overlay { padding: 10px; align-items: flex-start; padding-top: 40px; }
  .auth-modal { max-height: 85vh; }
  .auth-modal-right { padding: 24px 20px; }
  .auth-form-header h2 { font-size: 20px; }
  .auth-email-form .auth-form-row { flex-direction: column; gap: 16px; }
}

/* ================================================================
   BEFORE / AFTER DEMO
   ================================================================ */
.lp-demo {
  padding: 100px 20px;
  background: #fff;
}
.lp-demo.lp-demo-alt { background: #F2F6F6; }
.lp-demo-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 56px;
}
.lp-demo-header {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  text-align: center; max-width: 760px;
}
.lp-demo-subtitle {
  color: rgba(34,34,34,0.65); font-size: 18px;
  font-family: 'Inter', sans-serif; font-weight: 500; line-height: 28px;
  margin: 0;
}
.lp-demo-grid {
  width: 100%;
  display: grid; grid-template-columns: 1fr 56px 1fr; gap: 20px;
  align-items: stretch;
}
.lp-demo-card {
  background: #fff; border-radius: 20px;
  padding: 28px 28px 32px;
  display: flex; flex-direction: column; gap: 20px;
}
.lp-demo-before {
  background: #F6F6F6;
  border: 1px solid rgba(0,0,0,0.08);
}
.lp-demo-after {
  background: #fff;
  border: 1px solid #0B554D;
  box-shadow: 0 10px 30px rgba(9,82,74,0.14);
  position: relative;
}
.lp-demo-card-head {
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px; padding-bottom: 14px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.lp-demo-label {
  font-size: 11px; font-family: 'Inter', sans-serif;
  font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase;
  padding: 6px 12px; border-radius: 100px;
}
.lp-demo-label-before { background: #EBEBEB; color: #6B6B6B; }
.lp-demo-label-after {
  background: linear-gradient(180deg, #09524A 0%, #1D7578 100%);
  color: #fff; box-shadow: 0 2px 3px rgba(9,82,74,0.25);
}
.lp-demo-role {
  color: #032A44; font-size: 14px;
  font-family: 'Inter', sans-serif; font-weight: 500;
}
.lp-demo-meta {
  display: flex; flex-direction: column; gap: 4px;
}
.lp-demo-company {
  color: #000; font-size: 18px;
  font-family: 'Satoshi', sans-serif; font-weight: 600; line-height: 24px;
  margin: 0;
}
.lp-demo-company-sub {
  color: #808080; font-size: 13px;
  font-family: 'Inter', sans-serif; font-weight: 400; margin: 0;
}
.lp-demo-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.lp-demo-list li {
  position: relative; padding-left: 22px;
  font-size: 15px; line-height: 24px;
  font-family: 'Inter', sans-serif;
}
.lp-demo-before li { color: #595959; font-weight: 400; }
.lp-demo-before li::before {
  content: '\2022'; position: absolute; left: 6px; top: 0;
  color: #9A9A9A; font-size: 18px; line-height: 24px;
}
.lp-demo-after li { color: #222; font-weight: 500; }
.lp-demo-after li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 10px; height: 10px; border-radius: 3px;
  background: linear-gradient(180deg, #09524A 0%, #1D7578 100%);
  box-shadow: 0 0 0 3px rgba(9,82,74,0.12);
}
.lp-demo-after strong { color: #09524A; font-weight: 700; }
.lp-demo-arrow {
  display: flex; align-items: center; justify-content: center;
  color: #09524A; font-size: 26px;
}
.lp-demo-sparkle {
  position: absolute; top: -14px; right: 20px;
  padding: 6px 14px; border-radius: 100px;
  background: linear-gradient(180deg, #09524A 0%, #1D7578 100%);
  color: #fff; font-size: 12px; font-family: 'Inter', sans-serif;
  font-weight: 600; letter-spacing: 0.4px;
  box-shadow: 0 4px 12px rgba(9,82,74,0.25);
  display: inline-flex; align-items: center; gap: 6px;
}

@media (max-width: 991px) {
  .lp-demo { padding: 70px 20px; }
  .lp-demo-grid { grid-template-columns: 1fr; gap: 16px; }
  .lp-demo-arrow { transform: rotate(90deg); padding: 4px 0; }
}
@media (max-width: 576px) {
  .lp-demo { padding: 56px 16px; }
  .lp-demo-card { padding: 22px 20px 26px; }
  .lp-demo-list li { font-size: 14px; line-height: 22px; }
  .lp-demo-sparkle { right: 12px; font-size: 11px; padding: 5px 10px; }
}
