/* ============================================
   MILES TO SUITES — consultation.css
   Split-panel layout · Navy left · White right
   ============================================ */

:root {
  --indigo:      #3D35C0;
  --indigo-mid:  #4F46E5;
  --indigo-soft: rgba(79,70,229,0.1);
  --gold:        #C9A96E;
  --gold-soft:   rgba(201,169,110,0.15);
  --navy:        #0a0e1a;
  --navy-2:      #111827;
  --white:       #ffffff;
  --off:         #f9fafb;
  --text:        #111827;
  --sub:         #6b7280;
  --border:      #e5e7eb;
  --green:       #25D366;
  --radius:      14px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  background: var(--white);
  color: var(--text);
}

/* ── Utility ── */
.hidden { display: none !important; }

/* ============================================
   PAGE LAYOUT — full-height split
   ============================================ */
.page-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  min-height: 100vh;
}

/* ============================================
   LEFT PANEL — dark navy, sticky
   ============================================ */
.left-panel {
  background: var(--navy);
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  scrollbar-width: none;
}
.left-panel::-webkit-scrollbar { display: none; }

.left-panel-inner {
  padding: 40px 36px 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-height: 100%;
}

/* Brand */
.lp-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.lp-name {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: var(--white);
  line-height: 1.1;
}
.lp-handle {
  display: block;
  font-size: 11px;
  color: var(--gold);
  opacity: 0.8;
  margin-top: 2px;
  letter-spacing: 0.03em;
}
.lp-handle a {
  display: inline;
  color: inherit;
  text-decoration: none;
  opacity: 1;
}
.lp-handle a:hover { text-decoration: underline; }

/* Headline */
.lp-headline-wrap { flex: 0; }
.lp-headline {
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.18;
  margin-bottom: 12px;
  transition: opacity 0.3s;
}
.lp-headline em {
  font-style: italic;
  color: var(--gold);
}
.lp-sub {
  font-size: 13.5px;
  color: rgba(255,255,255,0.48);
  line-height: 1.65;
  letter-spacing: -0.01em;
  transition: opacity 0.3s;
}

/* Section label */
.lp-section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

/* Perks list */
.lp-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.lp-perks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.lp-perk-icon {
  font-size: 17px;
  flex-shrink: 0;
  line-height: 1.2;
  margin-top: 1px;
}
.lp-perks li strong {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 2px;
}
.lp-perks li span {
  font-size: 11.5px;
  color: rgba(255,255,255,0.42);
  letter-spacing: -0.01em;
}

/* Default perks overview (before service selected) */
.lp-perks-default li {
  padding: 10px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 9px;
}
.lp-perks-default li strong {
  font-size: 12.5px;
  margin-bottom: 2px;
}
.lp-perks-default li span {
  font-size: 11px;
}

/* Hotel-only disclaimer note */
.lp-hotel-note {
  margin-top: 16px;
  padding: 11px 13px;
  background: rgba(201,169,110,0.06);
  border: 1px solid rgba(201,169,110,0.18);
  border-radius: 9px;
  font-size: 11.5px;
  color: rgba(255,255,255,0.38);
  line-height: 1.6;
  letter-spacing: -0.005em;
  font-style: italic;
}

/* Services list */
.lp-services {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.lp-service {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  padding: 9px 13px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.07);
  letter-spacing: -0.01em;
  transition: all 0.3s ease;
}
.lp-service.lp-active {
  background: var(--gold-soft);
  border-color: rgba(201,169,110,0.35);
  color: var(--gold);
}

/* Trust numbers */
.lp-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.lp-trust-item {
  padding: 13px 8px;
  text-align: center;
  background: rgba(255,255,255,0.03);
}
.lp-trust-item strong {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}
.lp-trust-item span {
  font-size: 10px;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* WhatsApp link */
.lp-wa-link {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 16px;
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.28);
  border-radius: 12px;
  text-decoration: none;
  color: #4ade80;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  margin-top: auto;
  flex-shrink: 0;
}
.lp-wa-link:hover {
  background: rgba(37,211,102,0.17);
  border-color: rgba(37,211,102,0.45);
  transform: translateY(-1px);
}

/* Icon with pulsing dot */
.lp-wa-icon-wrap {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-wa-pulse {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 8px;
  height: 8px;
  background: #25D366;
  border-radius: 50%;
  border: 1.5px solid var(--navy);
}
.lp-wa-pulse::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(37,211,102,0.4);
  animation: waPulse 1.8s ease infinite;
}
@keyframes waPulse {
  0%   { transform: scale(0.8); opacity: 0.8; }
  70%  { transform: scale(1.8); opacity: 0; }
  100% { transform: scale(0.8); opacity: 0; }
}

.lp-wa-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.lp-wa-title {
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #4ade80;
  line-height: 1.2;
}
.lp-wa-arrow {
  font-size: 13px;
  display: inline-block;
  transition: transform 0.2s;
}
.lp-wa-link:hover .lp-wa-arrow { transform: translateX(3px); }
.lp-wa-sub {
  font-size: 11.5px;
  color: rgba(74,222,128,0.6);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

/* ============================================
   RIGHT PANEL — scrollable form area
   ============================================ */
.right-panel {
  background: var(--off);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.right-panel-inner {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  padding: 48px 40px 80px;
  flex: 1;
}

/* ── Progress bar (4 steps) ── */
.progress-bar-wrap {
  margin-bottom: 40px;
}
.progress-steps {
  display: flex;
  align-items: center;
}
.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.ps-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--border);
  color: var(--sub);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}
.progress-step span {
  font-size: 11px;
  color: var(--sub);
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.25s;
}
.progress-step.active .ps-circle {
  background: var(--indigo);
  color: var(--white);
  box-shadow: 0 0 0 3px var(--indigo-soft);
}
.progress-step.active span { color: var(--indigo); font-weight: 600; }
.progress-step.done .ps-circle {
  background: #e0f2e9;
  color: #16a34a;
  font-size: 0;
}
.progress-step.done .ps-circle::after {
  content: '✓';
  font-size: 14px;
  font-weight: 700;
}
.progress-step.done span { color: #16a34a; }
.progress-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  margin: 0 6px;
  margin-bottom: 18px;
  border-radius: 2px;
  transition: background 0.3s;
}
.progress-line.done { background: var(--indigo); }

/* ── Form steps ── */
.form-step { display: none; }
.form-step.active {
  display: block;
  animation: stepIn 0.3s ease;
}

@keyframes stepIn {
  from { opacity: 0; transform: translateX(14px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── Service sub-forms (within step 3) ── */
.service-form { display: none; }
.service-form.active {
  display: block;
  animation: stepIn 0.25s ease;
}

/* ── Step header ── */
.step-header { margin-bottom: 28px; }
.step-header h2 {
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 8px;
}
.step-header p {
  font-size: 14.5px;
  color: var(--sub);
  line-height: 1.55;
}

/* ── Fields ── */
.field { margin-bottom: 18px; }
.field:last-of-type { margin-bottom: 0; }

.field-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 18px;
}
.field-grid-2 .field { margin-bottom: 0; }

.field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 7px;
  letter-spacing: -0.01em;
}
.req { color: var(--indigo-mid); font-weight: 700; }

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 11px 14px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
  resize: vertical;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--indigo-mid);
  box-shadow: 0 0 0 3px var(--indigo-soft);
}
.field input::placeholder,
.field textarea::placeholder { color: #9ca3af; }

/* ── Validation error states ── */
.field input.field-error,
.field textarea.field-error,
.field select.field-error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.12);
}
.field-error-msg {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  color: #ef4444;
  font-weight: 500;
}
/* Phone wrap error — highlight the whole wrap, not just input */
.phone-wrap.field-error {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.12) !important;
}
.phone-wrap input.field-error {
  border-color: transparent;
  box-shadow: none;
}
/* Override global .field select styles for the country-code select */
.phone-wrap .phone-code-select {
  width: auto !important;
  border: none !important;
  border-right: 1.5px solid var(--border) !important;
  border-radius: 10px 0 0 10px !important;
  padding: 11px 26px 11px 12px !important;
}

/* Phone input */
.phone-wrap {
  display: flex;
  align-items: stretch;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.phone-wrap:focus-within {
  border-color: var(--indigo-mid);
  box-shadow: 0 0 0 3px var(--indigo-soft);
}
.phone-code-select {
  padding: 11px 26px 11px 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--sub);
  background: #f3f4f6;
  border: none;
  border-right: 1.5px solid var(--border);
  border-radius: 10px 0 0 10px;
  outline: none;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%239ca3af' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-color: #f3f4f6;
  min-width: 90px;
  align-self: stretch;
}
.phone-wrap input {
  border: none !important;
  box-shadow: none !important;
  border-radius: 0;
  flex: 1;
  min-width: 0;
  padding: 11px 14px;
  font-size: 14px;
  background: transparent;
}

/* Select dropdown */
.select-wrap { position: relative; }
.select-wrap::after {
  content: '▾';
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  color: var(--sub);
  pointer-events: none;
}
.select-wrap select { padding-right: 34px; cursor: pointer; }

/* Field hint */
.field-hint {
  font-size: 12px;
  color: var(--sub);
  margin-top: 6px;
  line-height: 1.5;
}

/* ── Checkbox groups ── */
.checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.check-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 9px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  font-size: 13px;
  color: var(--sub);
  letter-spacing: -0.01em;
  user-select: none;
}
.check-item input[type="checkbox"] { display: none; }
.check-dot {
  width: 17px;
  height: 17px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  background: var(--white);
}
/* Hover state */
.check-item:hover {
  border-color: #c7d2fe;
  color: var(--text);
}
/* Checked state via :has() */
.check-item:has(input:checked) {
  border-color: var(--indigo-mid);
  background: #fafafe;
  box-shadow: 0 0 0 2px var(--indigo-soft);
  color: var(--text);
}
.check-item:has(input:checked) .check-dot {
  background: var(--indigo);
  border-color: var(--indigo);
}
.check-item:has(input:checked) .check-dot::after {
  content: '✓';
  color: white;
  font-size: 10px;
  font-weight: 800;
}

/* ── Service tiles (step 2) ── */
.service-tiles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 28px;
}
.service-tile { cursor: pointer; }
.service-tile input[type="radio"] { display: none; }
.tile-inner {
  position: relative;
  padding: 20px 20px 20px 22px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 15px;
  row-gap: 4px;
  align-items: start;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.tile-inner:hover { border-color: #c7d2fe; }
.service-tile input:checked + .tile-inner {
  border-color: var(--indigo-mid);
  background: #fafafe;
  box-shadow: 0 0 0 3px var(--indigo-soft);
}
.tile-icon {
  font-size: 24px;
  grid-row: 1 / 3;
  align-self: center;
  line-height: 1;
}
.tile-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.tile-price {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  background: var(--gold-soft);
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 20px;
  padding: 2px 10px;
  white-space: nowrap;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.service-tile input:checked + .tile-inner .tile-price {
  background: rgba(201,169,110,0.22);
  border-color: rgba(201,169,110,0.5);
}
.tile-inner strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
}
.tile-inner p {
  font-size: 13px;
  color: var(--sub);
  line-height: 1.45;
  letter-spacing: -0.01em;
}
.tile-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gold-soft);
  color: #92681f;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 6px;
}

/* Shake animation for missing selection */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%       { transform: translateX(-6px); }
  40%       { transform: translateX(6px); }
  60%       { transform: translateX(-4px); }
  80%       { transform: translateX(4px); }
}
.service-tiles.shake { animation: shake 0.4s ease; }

/* ── Step nav buttons ── */
.step-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  gap: 12px;
}
.btn-back {
  background: none;
  border: 1.5px solid var(--border);
  color: var(--sub);
  font-family: var(--font);
  font-size: 14px;
  padding: 11px 20px;
  border-radius: 980px;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: -0.01em;
}
.btn-back:hover { border-color: var(--text); color: var(--text); }

.btn-next {
  background: var(--indigo);
  color: var(--white);
  border: none;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  padding: 13px 32px;
  border-radius: 980px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(63,55,192,0.28);
  margin-left: auto;
  letter-spacing: -0.01em;
}
.btn-next:hover { background: #4F46E5; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(63,55,192,0.35); }

.btn-submit {
  background: var(--navy);
  color: var(--white);
  border: none;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  padding: 13px 34px;
  border-radius: 980px;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.22);
  letter-spacing: -0.01em;
  margin-left: auto;
}
.btn-submit:hover { transform: translateY(-1px); box-shadow: 0 8px 28px rgba(0,0,0,0.3); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ── Success screen ── */
.success-screen {
  text-align: center;
  padding: 56px 24px;
}
.success-icon {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 20px;
  animation: pulse 1.8s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.65; transform: scale(1.12); }
}
.success-screen h2 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 14px;
}
.success-screen > p {
  font-size: 16px;
  color: var(--sub);
  line-height: 1.65;
  max-width: 380px;
  margin: 0 auto 28px;
}
.success-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  align-items: center;
}
.success-detail {
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 18px;
  display: inline-block;
}
.btn-wa-success {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 980px;
  transition: background 0.2s;
  margin-bottom: 16px;
}
.btn-wa-success:hover { background: #20ba5a; }
.success-back {
  display: block;
  font-size: 13px;
  color: var(--sub);
  text-decoration: none;
  margin-top: 8px;
  transition: color 0.2s;
}
.success-back:hover { color: var(--indigo); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .page-layout { grid-template-columns: 1fr; }

  /* Left panel becomes compact top banner */
  .left-panel {
    position: static;
    height: auto;
    overflow: visible;
  }
  .left-panel-inner {
    padding: 20px 24px;
    gap: 16px;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
  .lp-brand        { flex: 1; min-width: 0; }
  .lp-headline-wrap{ flex: 0 0 100%; }
  .lp-headline     { font-size: 1.4rem; line-height: 1.3; }
  .lp-sub          { font-size: 13px; margin-top: 4px; }
  .lp-section      { flex: 1; min-width: 160px; }
  .lp-trust        { flex: 0 0 100%; gap: 12px; }
  .lp-wa-link      { flex: 0 0 100%; margin-top: 0; }
  /* Collapse perks into horizontal scroll on tablet */
  .lp-perks        { gap: 6px; }
  .lp-perk         { font-size: 12px; }
  /* Services tabs in left panel */
  .lp-services     { flex-direction: row; gap: 6px; flex-wrap: wrap; }
  .lp-service      { font-size: 12px; padding: 6px 10px; }

  .right-panel-inner { padding: 32px 24px 60px; }

  /* Step headings */
  .step-title { font-size: 1.5rem; }
  .step-sub   { font-size: 14px; }

  /* Service tiles */
  .service-tiles  { grid-template-columns: 1fr; gap: 10px; }
  .service-tile   { padding: 16px 20px; }
}

@media (max-width: 560px) {
  .field-grid-2        { grid-template-columns: 1fr; }
  .checkbox-group      { grid-template-columns: 1fr; }
  .right-panel-inner   { padding: 24px 16px 48px; }
  .left-panel-inner    { padding: 16px; }

  /* Progress bar — hide labels, keep circles */
  .progress-step span  { display: none; }
  .ps-circle           { width: 28px; height: 28px; font-size: 11px; }
  .progress-line       { margin-bottom: 0; }

  /* Step titles */
  .step-title  { font-size: 1.3rem; }
  .step-sub    { font-size: 13px; }

  /* Form */
  .form-field label  { font-size: 13px; }
  .form-field input,
  .form-field select,
  .form-field textarea { font-size: 15px; } /* iOS: prevents zoom-in on focus */

  /* Buttons */
  .btn-primary, .btn-back { width: 100%; justify-content: center; font-size: 15px; }
  .step-nav { flex-direction: column-reverse; gap: 10px; }

  /* Success screen */
  .success-emoji { font-size: 3rem; }
  .success-title { font-size: 1.5rem; }

  /* Left panel on phone — very compact */
  .lp-headline     { font-size: 1.2rem; }
  .lp-section      { display: none; } /* hide perks on phone to save space */
  .lp-hotel-note   { display: none; }
  .lp-trust        { display: none; }
}

/* ── Left panel logo ticker ── */
.lp-logos-wrap {
  overflow: hidden;
  position: relative;
  margin: 16px 0 0;
  padding: 14px 0 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.lp-logos-label {
  text-align: center;
  font-size: 6.5px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin: 0 0 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lp-logos-wrap::before,
.lp-logos-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 40px;
  z-index: 2;
  pointer-events: none;
}
.lp-logos-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--navy), transparent);
}
.lp-logos-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--navy), transparent);
}
.lp-logos-ticker {
  overflow: hidden;
}
.lp-logos-track {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  animation: lpLogoScroll 45s linear infinite;
  will-change: transform;
  padding: 0 10px;
}
.lp-logos-ticker:hover .lp-logos-track {
  animation-play-state: paused;
}
.lp-logo {
  height: 16px;
  width: auto;
  max-width: 80px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  flex-shrink: 0;
  display: block;
}
@keyframes lpLogoScroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
