/* ═══════════════════════════════════════════════════════════════
   Business Card Advisory — Landing Page
   Extends the ElevateMiles design system (assets/css/main.css)
   ═══════════════════════════════════════════════════════════════ */

.em-lba-body { background: var(--wh); }

/* ── Minimal header ──────────────────────────────────────────────── */

.em-lba-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--wh);
  border-bottom: 1px solid var(--bl);
  box-shadow: 0 1px 0 var(--bd);
}
.em-lba-header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.em-lba-header-cta { padding: 10px 20px; font-size: 13px; }

/* ── Hero ─────────────────────────────────────────────────────────── */

.em-lba-hero {
  position: relative;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  background-color: #0a1428;
  background-image:
    linear-gradient(160deg, oklch(18% 0.08 284 / 0.88) 0%, oklch(12% 0.05 260 / 0.72) 55%, oklch(10% 0.03 260 / 0.85) 100%),
    url('../img/hero-bora-bora.jpg');
  background-size: cover;
  background-position: center 65%;
  background-blend-mode: normal;
  padding: clamp(72px, 11vw, 140px) 24px clamp(120px, 14vw, 190px);
  text-align: center;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
}
.em-lba-hero-inner { max-width: 760px; margin: 0 auto; position: relative; z-index: 1; }

.em-lba-h1 {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 22px;
  color: var(--wh);
  text-shadow: 0 2px 24px rgba(0,0,0,0.25);
}
.em-lba-h1 span { color: var(--pm); }

.em-lba-hero-sub {
  font-size: 18px;
  color: oklch(92% 0.01 280);
  line-height: 1.65;
  max-width: 600px;
  margin: 0 auto 32px;
}

.em-lba-hero-cta { display: flex; justify-content: center; margin-bottom: 16px; }
.em-lba-cta-lg { padding: 17px 34px; font-size: 15px; box-shadow: 0 8px 32px rgba(0,0,0,0.35), 0 4px 20px oklch(48% 0.26 284 / 0.5); }

.em-lba-hero-fine {
  font-size: 12px;
  font-weight: 600;
  color: oklch(85% 0.01 280);
  letter-spacing: 0.02em;
}

/* ── Meet your advisor ───────────────────────────────────────────────── */

.em-lba-intro { background: var(--wh); border-bottom: 1px solid var(--bl); }
.em-lba-intro-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 76px) 24px;
  display: grid;
  grid-template-columns: auto 1fr 220px;
  gap: 40px;
  align-items: center;
}
.em-lba-intro-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 4px solid var(--pl);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}
.em-lba-intro-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.em-lba-intro-text h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 900;
  letter-spacing: -0.025em;
  color: var(--bk);
  margin: 10px 0 16px;
}
.em-lba-intro-text p {
  font-size: 16px;
  color: var(--g2);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 560px;
}
.em-lba-intro-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  background: var(--pl);
  border-radius: 16px;
  padding: 28px 20px;
}
.em-lba-intro-stat-num {
  font-size: 30px;
  font-weight: 900;
  color: var(--p);
  letter-spacing: -0.03em;
  line-height: 1;
}
.em-lba-intro-stat-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--g2);
  line-height: 1.4;
}

/* Proof strip */
.em-lba-proof {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px clamp(40px, 5vw, 64px);
}
.em-lba-proof-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--g3);
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}
.em-lba-proof-strip {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.em-lba-proof-strip img {
  flex: 0 0 auto;
  width: 150px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 12px;
  scroll-snap-align: start;
  filter: saturate(0.94);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* ── Pain points ──────────────────────────────────────────────────── */

.em-lba-pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.em-lba-pain-card {
  background: var(--wh);
  border: 1px solid var(--bl);
  border-radius: 16px;
  padding: 28px 26px;
}
.em-lba-pain-num {
  font-size: 13px;
  font-weight: 900;
  color: var(--pm);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.em-lba-pain-card h3 {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--bk);
  margin-bottom: 10px;
  line-height: 1.3;
}
.em-lba-pain-card p { font-size: 14px; color: var(--g2); line-height: 1.65; }

/* ── How it works ─────────────────────────────────────────────────── */

.em-lba-how { background: var(--wh); }
.em-lba-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.em-lba-step { position: relative; padding-top: 4px; }
.em-lba-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--p);
  color: var(--wh);
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 16px;
}
.em-lba-step h3 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--bk);
  margin-bottom: 4px;
}
.em-lba-step-meta {
  font-size: 11px;
  font-weight: 700;
  color: var(--p);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.em-lba-step p { font-size: 14px; color: var(--g2); line-height: 1.65; }

/* What's included */
.em-lba-includes {
  margin-top: 56px;
  background: var(--bg);
  border: 1px solid var(--bl);
  border-radius: 18px;
  padding: 32px 36px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.em-lba-includes-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--p);
  margin-bottom: 18px;
  text-align: center;
}
.em-lba-includes-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.em-lba-includes-list li {
  font-size: 14px;
  line-height: 1.6;
  color: var(--g2);
  padding-left: 26px;
  position: relative;
}
.em-lba-includes-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 900;
  color: var(--p);
}
.em-lba-includes-list strong { color: var(--bk); font-weight: 700; }

/* ── Fit / not fit ────────────────────────────────────────────────── */

.em-lba-fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.em-lba-fit-col {
  border-radius: 16px;
  padding: 28px 30px;
}
.em-lba-fit-col--yes { background: var(--pl); border: 1px solid oklch(72% 0.18 284 / 0.3); }
.em-lba-fit-col--no  { background: var(--wh); border: 1px solid var(--bl); }
.em-lba-fit-col h3 {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--bk);
  margin-bottom: 16px;
}
.em-lba-fit-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.em-lba-fit-col li {
  font-size: 14px;
  line-height: 1.55;
  color: var(--g1);
  padding-left: 26px;
  position: relative;
}
.em-lba-fit-col--yes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 900;
  color: var(--p);
}
.em-lba-fit-col--no li::before {
  content: '–';
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 900;
  color: var(--g3);
}
.em-lba-fit-col li a { color: var(--p); font-weight: 600; }

/* ── Fast-track: pay direct ───────────────────────────────────────── */

.em-lba-fasttrack {
  background: var(--pl);
  border-top: 1px solid oklch(72% 0.18 284 / 0.25);
  border-bottom: 1px solid oklch(72% 0.18 284 / 0.25);
  padding: clamp(48px, 6vw, 76px) 24px;
  text-align: center;
}
.em-lba-fasttrack-inner { max-width: 620px; margin: 0 auto; }
.em-lba-fasttrack-label { color: var(--p); }
.em-lba-fasttrack-inner h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 900;
  letter-spacing: -0.025em;
  color: var(--bk);
  line-height: 1.15;
  margin-bottom: 14px;
}
.em-lba-fasttrack-sub {
  font-size: 15px;
  color: var(--g2);
  line-height: 1.65;
  max-width: 480px;
  margin: 0 auto 26px;
}
.em-lba-fasttrack-cta { padding: 15px 30px; font-size: 14px; }
.em-lba-fasttrack-fine {
  font-size: 11px;
  font-weight: 600;
  color: var(--g3);
  margin-top: 12px;
}
.em-lba-fasttrack-returning {
  font-size: 12px;
  color: var(--g3);
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid oklch(72% 0.18 284 / 0.3);
}

/* ── Book section ─────────────────────────────────────────────────── */

.em-lba-book {
  background: linear-gradient(150deg, #120d24 0%, #1e1640 100%);
  padding: clamp(56px, 7vw, 96px) 24px;
  text-align: center;
}
.em-lba-book-inner { max-width: 640px; margin: 0 auto; }
.em-lba-book-label { color: var(--pm); }
.em-lba-book-title {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 900;
  color: var(--wh);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 12px;
}
.em-lba-book-sub {
  font-size: 15px;
  color: oklch(70% 0.01 280);
  line-height: 1.6;
  margin-bottom: 36px;
}

.em-lba-book-panel {
  background: var(--wh);
  border-radius: 20px;
  padding: 32px;
  text-align: left;
  box-shadow: 0 24px 80px rgba(0,0,0,0.28);
}

/* Form */
.em-lba-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 14px;
}
.em-lba-form-row { display: flex; flex-direction: column; gap: 6px; }
.em-lba-form-row--full { grid-column: 1 / -1; }
.em-lba-form-row label {
  font-size: 12px;
  font-weight: 700;
  color: var(--g2);
  letter-spacing: 0.01em;
}
.em-lba-optional { font-weight: 400; color: var(--g4); }
.em-lba-form-row input,
.em-lba-form-row select,
.em-lba-form-row textarea {
  height: 46px;
  border-radius: 10px;
  border: 1.5px solid var(--bd);
  padding: 0 14px;
  font-size: 14px;
  font-family: var(--font-ui);
  color: var(--bk);
  background: var(--wh);
  outline: none;
  transition: border-color 0.15s;
}
.em-lba-form-row textarea { height: auto; padding: 12px 14px; resize: vertical; }
.em-lba-form-row input:focus,
.em-lba-form-row select:focus,
.em-lba-form-row textarea:focus { border-color: var(--p); }

.em-lba-form-submit {
  grid-column: 1 / -1;
  justify-content: center;
  width: 100%;
  border: none;
  cursor: pointer;
  font-family: var(--font-ui);
  margin-top: 6px;
}
.em-lba-form-submit:disabled { opacity: 0.65; cursor: default; }

.em-lba-form-error {
  grid-column: 1 / -1;
  font-size: 12px;
  color: oklch(52% 0.18 25);
  min-height: 16px;
  margin: 0;
}
.em-lba-form-fine {
  grid-column: 1 / -1;
  font-size: 11px;
  color: var(--g4);
  text-align: center;
  margin: 0;
}

/* Scheduler reveal */
.em-lba-scheduler { padding-top: 4px; }
.em-lba-scheduler-intro {
  font-size: 15px;
  font-weight: 700;
  color: var(--bk);
  margin-bottom: 12px;
  text-align: center;
}

/* ── FAQ ───────────────────────────────────────────────────────────── */

.em-lba-faq-inner { max-width: 760px; }
.em-lba-faq-list { display: flex; flex-direction: column; gap: 24px; }
.em-lba-faq-item {
  border-bottom: 1px solid var(--bl);
  padding-bottom: 24px;
}
.em-lba-faq-item:last-child { border-bottom: none; padding-bottom: 0; }
.em-lba-faq-item h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--bk);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.em-lba-faq-item p { font-size: 14px; color: var(--g2); line-height: 1.65; }
.em-lba-faq-item p a { color: var(--p); font-weight: 600; }

/* ── Minimal footer ───────────────────────────────────────────────── */

.em-lba-footer {
  background: var(--footer-bg);
  border-top: 1px solid var(--footer-border);
  padding: 40px 24px;
  text-align: center;
}
.em-lba-footer-inner { max-width: 1100px; margin: 0 auto; }
.em-lba-footer-inner .em-footer-logo { margin-bottom: 14px; }
.em-lba-footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 14px;
}
.em-lba-footer-links a {
  font-size: 13px;
  color: oklch(55% 0.01 280) !important;
  text-decoration: none;
}
.em-lba-footer-links a:hover { color: oklch(75% 0.18 284) !important; }
.em-lba-footer-copy { font-size: 12px; color: oklch(38% 0.006 280); }

/* ── Responsive ────────────────────────────────────────────────────── */

@media (max-width: 860px) {
  .em-lba-pain-grid   { grid-template-columns: 1fr; }
  .em-lba-steps       { grid-template-columns: 1fr; gap: 28px; }
  .em-lba-fit-grid    { grid-template-columns: 1fr; }
  .em-lba-intro-inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .em-lba-intro-text p { margin-left: auto; margin-right: auto; }
  .em-lba-intro-stat  { max-width: 260px; margin: 0 auto; }
  .em-lba-intro-photo { width: 130px; height: 130px; }
}

@media (max-width: 640px) {
  .em-lba-header-cta span { display: none; }
  .em-lba-book-panel { padding: 24px 20px; border-radius: 16px; }
  .em-lba-form { grid-template-columns: 1fr; }
  .em-lba-hero-sub { font-size: 16px; }
  .em-lba-includes { padding: 26px 22px; }
}
