/* ══════════════════════════════════════════════════════════════════════════════
   LANDING PAGE STYLES - Chronicle My Family
   Based on Figma design (desktop only)
   ══════════════════════════════════════════════════════════════════════════════ */

/* ── HIDE DARK FOOTER TOP (from standard footer.php) ── */
.footer-top.dark-bg { display: none; }

/* ── CSS VARIABLES (Design Tokens) ── */
:root {
  /* Colors */
  --lp-neutral-0: #fefefe;
  --lp-neutral-10: #f2f2f2;
  --lp-neutral-20: #e9e9e9;
  --lp-neutral-70: #b3b3b3;
  --lp-neutral-80: #a4a4a4;
  --lp-neutral-90: #838383;
  --lp-neutral-100: #5e5e5e;
  --lp-neutral-120: #383838;
  --lp-primary-100: #4a90e2;
  --lp-secondary-100: #dfedfa;
  --lp-secondary-200: #c6e0f7;
  
  /* Typography */
  --lp-font-heading: 'Raleway', sans-serif;
  --lp-font-body: 'Roboto', sans-serif;
}

/* ── RESET & BASE ── */
.lp-page {
  background: var(--lp-neutral-10);
  font-family: var(--lp-font-body);
  color: var(--lp-neutral-120);
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

.lp-page *,
.lp-page *::before,
.lp-page *::after {
  box-sizing: border-box;
}

.lp-page img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ── CONTAINER ── */
.lp-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 64px;
}

/* ── NAVIGATION BAR ── */
.lp-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 64px;
  max-width: 1440px;
  margin: 0 auto;
}

.lp-nav-logo img {
  width: 200px;
  height: 31px;
  object-fit: contain;
}

.lp-nav-buttons {
  display: flex;
  gap: 24px;
  align-items: center;
}

/* ── BUTTONS ── */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 16px 32px;
  border-radius: 8px;
  font-family: var(--lp-font-body);
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background-color 0.2s ease, transform 0.1s ease;
  white-space: nowrap;
}

.lp-btn:hover {
  transform: translateY(-1px);
}

.lp-btn:active {
  transform: translateY(0);
}

.lp-btn-primary {
  background: var(--lp-primary-100);
  color: var(--lp-neutral-0);
}

.lp-btn-primary:hover {
  background: #3d7cc5;
  color: var(--lp-neutral-0);
}

.lp-btn-secondary {
  background: var(--lp-neutral-20);
  color: var(--lp-neutral-90);
}

.lp-btn-secondary:hover {
  background: #ddd;
  color: var(--lp-neutral-90);
}

.lp-btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--lp-primary-100);
  padding: 8px;
  height: 50px;
}

.lp-btn-link:hover {
  text-decoration: underline;
}

.lp-btn-link img {
  width: 20px;
  height: auto;
}

/* ── HERO SECTION ── */
.lp-hero {
  position: relative;
  height: 670px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px;
  overflow: hidden;
}

.lp-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.lp-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(2px);
}

.lp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.lp-hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.lp-hero-title {
  font-family: var(--lp-font-heading);
  font-size: 64px;
  font-weight: 500;
  color: var(--lp-neutral-0);
  line-height: 1;
  margin: 0 0 24px 0;
}

.lp-hero-body {
  font-family: var(--lp-font-body);
  font-size: 24px;
  font-weight: 400;
  color: var(--lp-neutral-10);
  line-height: 1.4;
  margin: 0;
}

/* ── SECTION TITLES ── */
.lp-section-title {
  font-family: var(--lp-font-heading);
  font-size: 40px;
  font-weight: 600;
  color: var(--lp-neutral-120);
  line-height: 1;
  margin: 0;
}

/* ── FAMILY STORIES SECTION ── */
.lp-stories {
  padding: 64px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.lp-stories-cards {
  display: flex;
  gap: 32px;
}

.lp-story-card {
  flex: 1;
  background: var(--lp-neutral-0);
  border-radius: 16px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  min-height: 395px;
}

.lp-story-card-img {
  width: 180px;
  height: 181px;
  border-radius: 50%;
  object-fit: cover;
}

.lp-story-card-content {
  text-align: center;
}

.lp-story-card-title {
  font-size: 24px;
  font-weight: 400;
  color: var(--lp-neutral-100);
  margin: 0 0 16px 0;
}

.lp-story-card-text {
  font-size: 20px;
  font-weight: 400;
  color: var(--lp-neutral-80);
  margin: 0;
  line-height: 1.3;
}

/* ── FEATURES SECTION ── */
.lp-features {
  background: var(--lp-neutral-0);
  padding: 64px;
  display: flex;
  gap: 40px;
  align-items: center;
  min-height: 650px;
}

.lp-features-content {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.lp-features-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lp-feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lp-feature-bullet {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.lp-feature-text {
  font-size: 20px;
  font-weight: 400;
  color: var(--lp-neutral-80);
  line-height: 1.3;
}

.lp-features-img {
  flex: 1 0 0;
  min-width: 0;
  max-width: 50%;
  height: 522px;
  border-radius: 16px;
  object-fit: cover;
}

/* ── HOW IT WORKS SECTION ── */
.lp-how-it-works {
  padding: 64px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.lp-hiw-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lp-hiw-cards {
  display: flex;
  gap: 32px;
}

.lp-hiw-card {
  flex: 1;
  background: var(--lp-neutral-0);
  border-radius: 16px;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  min-height: 378px;
}

.lp-hiw-icon {
  width: 119px;
  height: 119px;
  border-radius: 50%;
  background: var(--lp-secondary-200);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-hiw-icon img {
  width: 55px;
  height: 55px;
}

.lp-hiw-card-content {
  text-align: center;
}

.lp-hiw-card-title {
  font-size: 24px;
  font-weight: 400;
  color: var(--lp-neutral-100);
  margin: 0 0 16px 0;
}

.lp-hiw-card-text {
  font-size: 18px;
  font-weight: 400;
  color: var(--lp-neutral-80);
  margin: 0;
  line-height: 1.4;
}

/* ── QUESTIONS SECTION ── */
.lp-questions {
  background: var(--lp-secondary-100);
  padding: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

.lp-questions-cards {
  display: flex;
  gap: 24px;
  width: 100%;
}

.lp-question-card {
  flex: 1;
  background: var(--lp-neutral-0);
  border-radius: 16px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  min-height: 460px;
}

.lp-question-card-img {
  flex: 1;
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.lp-question-card-text {
  font-size: 20px;
  font-weight: 400;
  color: var(--lp-neutral-90);
  text-align: center;
  line-height: 1.3;
  margin: 0;
}

/* ── TESTIMONIALS SECTION ── */
.lp-testimonials {
  padding: 64px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.lp-testimonials-cards {
  display: flex;
  gap: 24px;
}

.lp-testimonial-card {
  flex: 1;
  background: var(--lp-neutral-0);
  border-radius: 16px;
  padding: 32px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  min-height: 462px;
}

.lp-testimonial-img {
  width: 180px;
  height: 181px;
  border-radius: 50%;
  object-fit: cover;
}

.lp-testimonial-stars {
  width: 135px;
  height: 27px;
}

.lp-testimonial-quote {
  font-size: 20px;
  font-weight: 400;
  color: var(--lp-neutral-70);
  text-align: center;
  line-height: 1.4;
  margin: 0;
}

.lp-testimonial-author {
  font-size: 18px;
  font-weight: 400;
  color: var(--lp-neutral-90);
  text-align: center;
  margin: 0;
}

/* ── GIFT SECTION ── */
.lp-gift {
  padding: 64px;
  display: flex;
  gap: 40px;
  align-items: center;
  min-height: 700px;
}

.lp-gift-content {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 56px;
}

.lp-gift-text {
  display: flex;
  flex-direction: column;
  gap: 54px;
}

.lp-gift-body {
  font-size: 24px;
  font-weight: 400;
  color: var(--lp-neutral-90);
  line-height: 1.5;
  margin: 0;
}

.lp-gift-img {
  flex: 1 0 0;
  min-width: 0;
  max-width: 50%;
  height: 572px;
  border-radius: 16px;
  object-fit: cover;
}

/* ── BOTTOM CTA SECTION ── */
.lp-bottom-cta {
  position: relative;
  min-height: 575px;
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.lp-bottom-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.lp-bottom-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-bottom-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(255, 255, 255, 0.15) 100%);
}

.lp-bottom-cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}

.lp-bottom-cta-text {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.lp-bottom-cta-title {
  font-family: var(--lp-font-heading);
  font-size: 40px;
  font-weight: 600;
  color: var(--lp-neutral-10);
  line-height: 1;
  margin: 0;
}

.lp-bottom-cta-body {
  font-size: 24px;
  font-weight: 400;
  color: var(--lp-neutral-10);
  margin: 0;
}

/* ── FOOTER ── */
.lp-footer {
  background: var(--lp-neutral-10);
  padding: 56px 64px;
  max-width: 1440px;
  margin: 0 auto;
}

.lp-footer-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 56px;
}

.lp-footer-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.lp-footer-col-title {
  font-size: 24px;
  font-weight: 400;
  color: var(--lp-neutral-120);
  margin: 0;
}

.lp-footer-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lp-footer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 4px;
  font-size: 20px;
  font-weight: 400;
  color: var(--lp-neutral-90);
  text-decoration: none;
  transition: color 0.2s ease;
  min-width: 200px;
}

.lp-footer-link:hover {
  color: var(--lp-primary-100);
}

.lp-footer-link-chevron {
  width: 8px;
  height: 13px;
}

.lp-footer-contact-text {
  font-size: 18px;
  font-weight: 400;
  color: var(--lp-neutral-90);
  line-height: 1.4;
  margin: 0;
}

.lp-footer-social {
  display: flex;
  gap: 24px;
}

.lp-footer-social a {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-footer-social img {
  width: 100%;
  height: 100%;
}

.lp-footer-email {
  font-size: 18px;
  color: var(--lp-primary-100);
  text-decoration: underline;
}

.lp-footer-copyright {
  font-size: 16px;
  font-weight: 400;
  color: var(--lp-neutral-80);
  text-align: center;
  margin: 0;
}

/* ── LOGIN MODAL ── */
.lp-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.lp-modal-overlay.active {
  display: flex;
}

.lp-modal {
  background: var(--lp-neutral-0);
  border-radius: 16px;
  padding: 40px;
  max-width: 448px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.lp-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--lp-neutral-90);
  cursor: pointer;
  padding: 8px;
  line-height: 1;
}

.lp-modal-close:hover {
  color: var(--lp-neutral-120);
}

.lp-modal-title {
  font-size: 30px;
  font-weight: 400;
  color: var(--lp-neutral-120);
  margin: 0 0 10px 0;
  text-align: center;
  padding-right: 24px;
}

.lp-modal-subtitle {
  font-size: 14px;
  color: var(--lp-neutral-90);
  text-align: center;
  margin-bottom: 20px;
}

.lp-modal-subtitle a {
  color: var(--lp-primary-100);
  text-decoration: none;
  font-weight: 500;
}

.lp-modal-subtitle a:hover {
  text-decoration: underline;
}

.lp-form-group {
  margin-bottom: 20px;
}

.lp-form-input {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-size: 16px;
  font-family: var(--lp-font-body);
  color: var(--lp-neutral-120);
  transition: border-color 0.2s ease;
}

.lp-form-input:focus {
  outline: none;
  border-color: var(--lp-primary-100);
}

.lp-form-password-wrapper {
  position: relative;
}

.lp-form-password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--lp-neutral-90);
  cursor: pointer;
  padding: 5px;
}

.lp-form-submit {
  width: 100%;
  padding: 14px;
  background: var(--lp-primary-100);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
  margin-bottom: 15px;
}

.lp-form-submit:hover {
  background: #3d7cc5;
}

.lp-form-link {
  display: block;
  text-align: center;
  color: var(--lp-primary-100);
  text-decoration: none;
  font-size: 14px;
}

.lp-form-link:hover {
  text-decoration: underline;
}

.lp-form-error {
  display: none;
  color: #721c24;
  margin-bottom: 15px;
  padding: 14px 40px 14px 16px;
  background: linear-gradient(135deg, #fff5f5 0%, #ffeaea 100%);
  border-left: 4px solid #dc3545;
  border-radius: 6px;
  font-size: 14px;
  position: relative;
}

.lp-form-error.show {
  display: block;
}

.lp-form-error::before {
  content: "⚠";
  margin-right: 8px;
}

.lp-form-error-close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #721c24;
}

/* ── PASSWORD REQUIREMENTS ── */
.lp-password-requirements {
  margin-bottom: 25px;
}

.lp-password-requirements-title {
  font-weight: 600;
  color: var(--lp-neutral-120);
  margin-bottom: 12px;
  font-size: 14px;
}

.lp-password-requirements-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lp-password-requirements-list li {
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--lp-neutral-100);
}

.lp-password-requirements-list li .req-icon {
  display: inline-block;
  width: 20px;
  text-align: center;
  margin-right: 8px;
}

.lp-password-requirements-list li.valid {
  color: #22c55e;
}

/* ── TURNSTILE ── */
.lp-turnstile {
  margin-bottom: 25px;
}

/* ══════════════════════════════════════════════════════════════════════════════
   MOBILE ELEMENTS (hidden on desktop by default)
   ══════════════════════════════════════════════════════════════════════════════ */
.lp-mobile-nav,
.lp-mobile-menu,
.lp-hero-mobile-buttons,
.lp-hero-bg-mobile,
.lp-hiw-mobile-link,
.lp-gift-btn-mobile {
  display: none;
}

/* ══════════════════════════════════════════════════════════════════════════════
   MOBILE STYLES (max-width: 768px)
   ══════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* ── HIDE DESKTOP ELEMENTS ── */
  .lp-desktop-header,
  .lp-hero-bg-desktop {
    display: none !important;
  }

  /* ── MOBILE NAVIGATION ── */
  .lp-mobile-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background: var(--lp-neutral-10);
    position: relative;
    z-index: 1000;
  }

  .lp-mobile-logo img {
    height: 22px;
    width: auto;
  }

  .lp-hamburger {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .lp-hamburger span {
    display: block;
    width: 34px;
    height: 2.5px;
    background: var(--lp-neutral-100);
    border-radius: 2px;
    transition: all 0.3s;
  }

  /* ── MOBILE DROPDOWN MENU ── */
  .lp-mobile-menu {
    display: none;
    flex-direction: column;
    background: #fff;
    border-bottom: 1px solid #e7e7e7;
    padding: 16px;
    gap: 8px;
    position: relative;
    z-index: 999;
  }

  .lp-mobile-menu.open {
    display: flex;
  }

  .lp-mobile-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--lp-neutral-90);
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    border-radius: 8px;
    transition: background 0.2s;
  }

  .lp-mobile-menu-item:hover {
    background: var(--lp-neutral-10);
    text-decoration: none;
    color: var(--lp-neutral-90);
  }

  .lp-mobile-menu-item i {
    font-size: 22px;
    width: 24px;
    text-align: center;
  }

  /* ── MOBILE HERO ── */
  .lp-hero {
    min-height: 750px;
    padding: 40px 16px;
  }

  .lp-hero-bg-mobile {
    display: block;
  }

  .lp-hero-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    gap: 16px;
  }

  .lp-hero-title {
    font-size: 40px;
    line-height: 1.1;
  }

  .lp-hero-body {
    font-size: 20px;
    line-height: 1.4;
  }

  .lp-hero-mobile-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
  }

  .lp-btn-mobile {
    width: 100%;
    text-align: center;
  }

  /* ── MOBILE SECTIONS ── */
  .lp-stories,
  .lp-features,
  .lp-how-it-works,
  .lp-questions,
  .lp-testimonials,
  .lp-gift,
  .lp-bottom-cta {
    padding: 32px 16px;
  }

  .lp-section-title {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 32px;
  }

  /* ── MOBILE STORIES CARDS ── */
  .lp-stories-cards {
    flex-direction: column;
    gap: 32px;
  }

  .lp-story-card {
    width: 100%;
    flex-direction: column;
    padding: 32px 24px;
    gap: 32px;
  }

  .lp-story-card-img {
    width: 180px;
    height: 181px;
  }

  .lp-story-card-content {
    text-align: center;
  }

  .lp-story-card-title {
    font-size: 24px;
  }

  .lp-story-card-text {
    font-size: 20px;
  }

  /* ── MOBILE FEATURES SECTION ── */
  .lp-features {
    flex-direction: column;
    gap: 32px;
    height: auto;
  }

  .lp-features-row {
    flex-direction: column;
    gap: 32px;
  }

  .lp-features-content {
    max-width: 100%;
    gap: 24px;
  }

  .lp-features-title {
    font-size: 32px;
    line-height: 1.2;
  }

  .lp-feature-item {
    font-size: 18px;
  }

  .lp-features-img {
    max-width: 100%;
    height: 416px;
    order: 1;
  }

  .lp-features-content {
    order: 0;
  }

  .lp-features .lp-btn {
    width: 100%;
    text-align: center;
  }

  /* ── MOBILE HOW IT WORKS ── */
  .lp-hiw-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .lp-hiw-header .lp-btn-link {
    display: none;
  }

  .lp-hiw-mobile-link {
    display: flex;
    font-size: 20px;
    justify-content: center;
    margin-top: 0;
  }

  .lp-hiw-cards {
    flex-direction: column;
    gap: 24px;
  }

  .lp-hiw-card {
    width: 100%;
    height: auto;
    padding: 24px 16px;
    gap: 32px;
  }

  .lp-hiw-card-icon {
    width: 119px;
    height: 119px;
  }

  .lp-hiw-card-icon img {
    width: 61px;
    height: 61px;
  }

  .lp-hiw-card-title {
    font-size: 24px;
  }

  .lp-hiw-card-text {
    font-size: 18px;
  }

  /* ── MOBILE QUESTIONS ── */
  .lp-questions-cards {
    flex-direction: column;
    gap: 24px;
  }

  .lp-question-card {
    width: 100%;
    height: 460px;
    padding: 32px 24px;
    gap: 32px;
  }

  .lp-question-card-text {
    font-size: 20px;
  }

  .lp-questions .lp-btn {
    width: 100%;
    text-align: center;
  }

  /* ── MOBILE TESTIMONIALS ── */
  .lp-testimonials-cards {
    flex-direction: column;
    gap: 24px;
  }

  .lp-testimonial-card {
    width: 100%;
    height: auto;
    padding: 32px 16px;
    gap: 24px;
  }

  .lp-testimonial-card-img {
    width: 180px;
    height: 181px;
  }

  .lp-testimonial-card-quote {
    font-size: 20px;
  }

  .lp-testimonial-card-author {
    font-size: 18px;
  }

  /* ── MOBILE GIFT SECTION ── */
  .lp-gift {
    flex-direction: column;
    gap: 24px;
    min-height: auto;
  }

  .lp-gift-content {
    max-width: 100%;
    gap: 24px;
    order: 0;
  }

  .lp-gift-text {
    gap: 16px;
  }

  .lp-gift-body {
    font-size: 20px;
  }

  .lp-gift-img {
    max-width: 100%;
    height: 350px;
    order: 1;
  }

  .lp-gift-btn-desktop {
    display: none;
  }

  .lp-gift-btn-mobile {
    display: inline-flex;
    width: 100%;
    text-align: center;
    justify-content: center;
    order: 2;
  }

  /* ── MOBILE BOTTOM CTA ── */
  .lp-bottom-cta {
    padding: 32px 16px;
  }

  .lp-bottom-cta-content {
    gap: 24px;
  }

  .lp-bottom-cta-title {
    font-size: 32px;
    line-height: 1.2;
  }

  .lp-bottom-cta-text {
    font-size: 20px;
  }

  .lp-bottom-cta-img {
    height: 400px;
  }

  .lp-bottom-cta .lp-btn {
    width: 100%;
    text-align: center;
  }

  /* ── MOBILE MODALS ── */
  .lp-modal {
    width: 95%;
    max-width: 360px;
    padding: 24px;
  }

  .lp-modal-title {
    font-size: 24px;
  }
}
