/* ============================================================
   Laghuna Homepage - Aurora
   Scoped under .lh5-home. Header/footer come from site-chrome.css.
   ============================================================ */

.lh5-home { position: relative; background: #fff; color: var(--ink-900); overflow-x: hidden; }

/* ─── Keyframes ─── */
@keyframes lh5-aurora-1 {
  0%   { transform: translate(-15%, -20%) scale(1.05); }
  50%  { transform: translate(15%, 0%)    scale(1.15); }
  100% { transform: translate(-15%, -20%) scale(1.05); }
}
@keyframes lh5-aurora-2 {
  0%   { transform: translate(15%, 10%)   scale(1); }
  50%  { transform: translate(-10%, -10%) scale(1.2); }
  100% { transform: translate(15%, 10%)   scale(1); }
}
@keyframes lh5-aurora-3 {
  0%   { transform: translate(-5%, 25%) scale(0.95); }
  50%  { transform: translate(20%, 15%) scale(1.1); }
  100% { transform: translate(-5%, 25%) scale(0.95); }
}
@keyframes lh5-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(15,107,99,.55); }
  70%  { box-shadow: 0 0 0 16px rgba(15,107,99,0); }
  100% { box-shadow: 0 0 0 0 rgba(15,107,99,0); }
}
/* Subtle vertical float - used by the promise art cards. Was also used
   by the floating review chips before they were removed. */
@keyframes lh5-float-y {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
@keyframes lh5-rotate-slow { from { transform: rotate(0); } to { transform: rotate(360deg); } }
@keyframes lh5-shimmer-bg { from { background-position: 0% 0; } to { background-position: 200% 0; } }
@keyframes lh5-blink { 50% { opacity: 0; } }
@keyframes lh5-pulse-dot { 0%, 100% { opacity: .4; transform: scale(0.85); } 50% { opacity: 1; transform: scale(1.15); } }

/* Reveal-on-scroll for secondary elements (NOT the H1 - that stays visible) */
.lh5-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms cubic-bezier(0.16,1,0.3,1), transform 700ms cubic-bezier(0.16,1,0.3,1);
}
.lh5-reveal.in { opacity: 1; transform: none; }

/* ─── HERO ─── */
.lh5-hero {
  position: relative;
  text-align: center;
  padding: 72px 24px 56px;
  overflow: hidden;
  background: #fff;
}
.lh5-hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.lh5-aurora {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  pointer-events: none;
  will-change: transform;
}
.lh5-aurora.a1 { width: 700px; height: 700px; top: -300px; left: -200px; background: radial-gradient(circle, rgba(199,224,220,.85), transparent 65%); animation: lh5-aurora-1 22s ease-in-out infinite; }
.lh5-aurora.a2 { width: 600px; height: 600px; top: -200px; right: -240px; background: radial-gradient(circle, rgba(251,239,216,.9), transparent 65%); animation: lh5-aurora-2 26s ease-in-out infinite; }
.lh5-aurora.a3 { width: 520px; height: 520px; top: 100px;  left: 35%;    background: radial-gradient(circle, rgba(232,162,59,.18), transparent 60%); animation: lh5-aurora-3 30s ease-in-out infinite; }

/* Interactive drift field. The <canvas> is created by homepage-aurora.js
   (kept out of the PHP so the whole effect ships via the live CSS/JS asset
   deploy). It sits above the aurora blobs but below .lh5-hero-inner
   (z-index:1), and never intercepts clicks on the search bar. */
.lh5-hero-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}

.lh5-hero-inner { position: relative; z-index: 1; max-width: 980px; margin: 0 auto; }

.lh5-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--hairline);
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 999px;
  font-family: var(--font-sans); font-size: 12px; font-weight: 600;
  color: var(--ink-900);
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 22px;
}
.lh5-eyebrow .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--teal-700); animation: lh5-pulse 1.8s ease-in-out infinite; }

/* Static H1. Two lines, centered. The category word ("a nursery") sits
   inline with "Find" - no slot machine, no animation, no surprises. */
.lh5-h1 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
  font-size: clamp(40px, 6.4vw, 80px);
  color: var(--ink-900);
  margin: 0 0 18px;
  text-align: center;
  text-wrap: balance;
}
.lh5-h1 em {
  font-style: italic;
  background: linear-gradient(110deg, var(--teal-700) 0%, var(--teal-500) 35%, var(--amber-500) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--teal-700);
}

.lh5-sub {
  font-size: clamp(16px, 1.4vw, 18px);
  max-width: 620px;
  margin: 0 auto 32px;
  color: var(--fg-2);
  line-height: 1.55;
}

/* ─── Search bar ─── */
.lh5-search {
  display: flex; align-items: center; gap: 4px;
  max-width: 780px;
  margin: 0 auto;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  box-shadow:
    0 1px 2px rgba(28,25,23,0.03),
    0 30px 60px -28px rgba(15,107,99,0.22);
  position: relative;
  transition: box-shadow 350ms ease, transform 350ms ease;
}
.lh5-search:focus-within { transform: translateY(-1px); }

.lh5-field {
  flex: 1;
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  transition: background 200ms ease;
  min-width: 0;
  position: relative;
  margin: 0;
}
.lh5-field:hover { background: var(--cream-100); }
.lh5-field .ico { color: var(--fg-3); flex-shrink: 0; display: inline-flex; }
.lh5-field select,
.lh5-field input {
  border: none; outline: none; background: transparent;
  flex: 1; min-width: 0;
  font-family: var(--font-sans); font-size: 15px;
  color: var(--ink-900);
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
  cursor: pointer;
  padding-right: 18px;
}
.lh5-field .chev {
  position: absolute; right: 12px;
  color: var(--fg-3);
  pointer-events: none;
  display: inline-flex;
}
.lh5-field.is-disabled { opacity: 0.55; cursor: not-allowed; }
.lh5-field.is-disabled select { cursor: not-allowed; }

.lh5-divider { width: 1px; height: 32px; background: var(--hairline); flex-shrink: 0; }

.lh5-go {
  flex-shrink: 0;
  height: 52px; padding: 0 24px;
  background: var(--ink-900); color: #fff;
  border: none; border-radius: 999px;
  font-family: var(--font-sans); font-size: 15px; font-weight: 600;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 250ms ease;
}
.lh5-go:hover { background: var(--teal-700); }

/* Stat row */
.lh5-hero-stats {
  margin-top: 24px;
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 14px; color: var(--fg-3);
}
.lh5-hero-stats strong { color: var(--ink-900); font-weight: 600; }
.lh5-hero-stats .dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--teal-700);
  animation: lh5-pulse 1.8s ease-in-out infinite;
}

/* ─── Section shell ─── */
.lh5-section { max-width: var(--container-xl); margin: 0 auto; padding: 72px 28px; }
.lh5-section-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 12px;
  margin-bottom: 28px;
}
.lh5-section-head h2 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(26px, 2.8vw, 36px);
  letter-spacing: -0.02em; line-height: 1.15;
  margin: 0;
}
.lh5-section-head h2 em {
  font-style: italic;
  background: linear-gradient(110deg, var(--teal-700), var(--amber-500));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.lh5-section-head a {
  font-size: 14px; font-weight: 500;
  color: var(--ink-900);
  display: inline-flex; align-items: center; gap: 4px;
  text-decoration: none;
}
.lh5-section-head a:hover { color: var(--teal-700); text-decoration: none; }

/* Category pills */
.lh5-cats { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.lh5-cat {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  font-family: var(--font-sans); font-size: 14px; font-weight: 500;
  color: var(--ink-900);
  cursor: pointer; text-decoration: none;
  transition: border-color 200ms ease, transform 200ms ease;
}
.lh5-cat:hover { border-color: var(--ink-900); transform: translateY(-1px); text-decoration: none; color: var(--ink-900); }
.lh5-cat.active { background: var(--ink-900); color: #fff; border-color: var(--ink-900); }
.lh5-cat.is-soon { color: var(--fg-3); border-style: dashed; }
.lh5-cat .pill-soon { font-size: 9px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--amber-600); background: var(--warn-50); padding: 2px 6px; border-radius: 999px; line-height: 1; }

/* Cards rail */
.lh5-rail { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 1100px) { .lh5-rail { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .lh5-rail { grid-template-columns: 1fr; } }

.lh5-card { position: relative; cursor: pointer; transition: transform 350ms cubic-bezier(0.2,0,0,1); text-decoration: none; color: inherit; display: block; }
.lh5-card:hover { transform: translateY(-4px); text-decoration: none; }
.lh5-card .imgwrap {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
  border-radius: 20px;
  background: var(--cream-100);
}
.lh5-card .imgwrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2,0,0,1);
}
.lh5-card:hover .imgwrap img { transform: scale(1.05); }
.lh5-card .featured {
  position: absolute; top: 12px; left: 12px;
  background: #fff; color: var(--ink-900);
  font-size: 10px; font-weight: 700;
  padding: 5px 10px; border-radius: 999px;
  letter-spacing: 0.08em; text-transform: uppercase;
  z-index: 2;
}
.lh5-card .body { padding: 14px 6px 0; }
.lh5-card .top { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; margin-bottom: 6px; }
.lh5-card h3 { font-family: var(--font-sans); font-weight: 600; font-size: 15px; color: var(--ink-900); margin: 0; letter-spacing: -0.01em; }
.lh5-card .rating { display: inline-flex; align-items: center; gap: 4px; font-size: 13px; color: var(--ink-900); flex-shrink: 0; }
.lh5-card .rating .star { color: var(--amber-500); }
.lh5-card .meta { font-size: 13px; color: var(--fg-3); margin: 0; }
.lh5-card .meta .cat { color: var(--teal-700); font-weight: 600; }

/* ─── How it works ─── */
.lh5-how { background: var(--cream-50); padding: 88px 28px; position: relative; z-index: 2; }
.lh5-how-inner { max-width: var(--container-xl); margin: 0 auto; }
.lh5-how-head { text-align: center; margin-bottom: 48px; }
.lh5-how-head h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(30px, 3.6vw, 48px); letter-spacing: -0.025em; line-height: 1.05; margin: 0 auto; max-width: 720px; }
.lh5-how-head h2 em { font-style: italic; background: linear-gradient(110deg, var(--teal-700), var(--amber-500)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lh5-how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .lh5-how-grid { grid-template-columns: 1fr; } }

.lh5-step { position: relative; padding: 28px; background: #fff; border: 1px solid var(--hairline); border-radius: 24px; overflow: hidden; transition: transform 300ms ease, box-shadow 300ms ease; display: flex; flex-direction: column; }
.lh5-step:hover { transform: translateY(-3px); box-shadow: var(--elev-2); }
.lh5-step .n { position: absolute; top: 16px; right: 22px; font-family: var(--font-display); font-weight: 500; font-style: italic; font-size: 60px; line-height: 1; color: rgba(28,25,23,0.06); }
.lh5-step .ico { width: 46px; height: 46px; border-radius: 14px; background: var(--teal-50); color: var(--teal-700); display: grid; place-items: center; margin-bottom: 16px; }
.lh5-step h3 { font-family: var(--font-sans); font-weight: 600; font-size: 18px; color: var(--ink-900); margin: 0 0 8px; letter-spacing: -0.01em; }
.lh5-step p { font-size: 14px; color: var(--fg-2); line-height: 1.55; margin: 0 0 18px; }
.lh5-step .anim {
  position: relative;
  margin-top: auto;
  border-radius: 16px;
  overflow: hidden;
  background: var(--cream-100);
  padding: 14px;
  min-height: 140px;
}

/* Step 1 - mini search bar mockup mimicking the real hero search */
.lh5-step-search .anim { display: flex; flex-direction: column; gap: 10px; justify-content: center; }
.lh5-step-search .mini-search {
  display: flex; align-items: center; gap: 3px;
  padding: 4px;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  box-shadow: 0 6px 16px -8px rgba(15,107,99,0.18);
}
.lh5-step-search .mini-field {
  flex: 1;
  display: flex; align-items: center; gap: 5px;
  padding: 7px 9px;
  font-size: 11px;
  color: var(--ink-900);
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-radius: 999px;
  font-weight: 500;
}
.lh5-step-search .mini-field.is-active { background: var(--teal-50); color: var(--teal-700); font-weight: 600; }
.lh5-step-search .mini-field svg { flex-shrink: 0; opacity: 0.6; }
.lh5-step-search .mini-divider { width: 1px; height: 14px; background: var(--hairline); }
.lh5-step-search .mini-go {
  width: 28px; height: 28px;
  background: var(--ink-900); color: #fff;
  border-radius: 999px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.lh5-step-search .typed-line { font-size: 11px; color: var(--fg-3); text-align: center; }
.lh5-step-search .typed-line strong { color: var(--teal-700); font-weight: 600; }

/* Step 2 - three real listing cards (mini), Blossom comparison */
.lh5-step-compare .anim { padding: 12px; display: flex; align-items: stretch; justify-content: center; gap: 6px; }
.lh5-step-compare .mini-card {
  flex: 1;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 10px;
  overflow: hidden;
  font-family: var(--font-sans);
  display: flex; flex-direction: column;
  transition: transform 350ms cubic-bezier(0.16,1,0.3,1);
  min-width: 0;
}
.lh5-step-compare .mini-card .ph {
  aspect-ratio: 4/3;
  background: var(--cream-100) center/cover no-repeat;
}
.lh5-step-compare .mini-card .info { padding: 5px 7px 7px; font-size: 9px; line-height: 1.2; }
.lh5-step-compare .mini-card .info b { display: block; color: var(--ink-900); font-weight: 600; font-size: 9px; line-height: 1.2; margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lh5-step-compare .mini-card .info .price { color: var(--teal-700); font-weight: 600; }
.lh5-step-compare .mini-card:nth-child(1) { transform: rotate(-2.5deg); }
.lh5-step-compare .mini-card:nth-child(3) { transform: rotate(2.5deg); }
.lh5-step-compare:hover .mini-card { transform: rotate(0); }

/* Step 3 - message bubbles */
.lh5-step-msg .anim { display: flex; flex-direction: column; gap: 6px; justify-content: center; }
.lh5-step-msg .b { padding: 8px 12px; border-radius: 12px; font-size: 12px; max-width: 80%; font-family: var(--font-sans); line-height: 1.35; }
.lh5-step-msg .b.you { background: #fff; border: 1px solid var(--hairline); color: var(--ink-900); align-self: flex-end; border-bottom-right-radius: 4px; }
.lh5-step-msg .b.them { background: var(--teal-700); color: #fff; align-self: flex-start; border-bottom-left-radius: 4px; }
.lh5-step-msg .typing { display: inline-flex; gap: 3px; align-self: flex-start; padding: 8px 12px; background: var(--teal-700); border-radius: 12px; border-bottom-left-radius: 4px; }
.lh5-step-msg .typing span { width: 5px; height: 5px; border-radius: 999px; background: #fff; opacity: .6; animation: lh5-pulse-dot 1.2s ease-in-out infinite; }
.lh5-step-msg .typing span:nth-child(2) { animation-delay: .15s; }
.lh5-step-msg .typing span:nth-child(3) { animation-delay: .3s; }

/* ─── Bento - categories grid ─── */
.lh5-bento { max-width: var(--container-xl); margin: 0 auto; padding: 72px 28px; position: relative; z-index: 2; }
.lh5-bento-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 12px; }
@media (max-width: 960px) { .lh5-bento-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; } }
@media (max-width: 560px) { .lh5-bento-grid { grid-template-columns: 1fr; grid-auto-rows: 160px; } }

/* ─── Bento tile - PHOTO version ─── */
.lh5-tile {
  position: relative; border-radius: 22px; overflow: hidden;
  cursor: pointer; padding: 22px;
  transition: transform 350ms cubic-bezier(0.2,0,0,1), box-shadow 300ms ease;
  display: flex; flex-direction: column; justify-content: space-between;
  text-decoration: none; color: #FFFFFF;
  background: var(--ink-900);
  min-height: 200px;
}
.lh5-tile:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -20px rgba(28,25,23,0.28); text-decoration: none; color: #FFFFFF; }

.lh5-tile__img {
  position: absolute; inset: 0;
  background-position: center; background-size: cover; background-repeat: no-repeat;
  transition: transform 800ms cubic-bezier(0.2,0,0,1);
  z-index: 0;
}
.lh5-tile:hover .lh5-tile__img { transform: scale(1.05); }
.lh5-tile__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,25,23,0.15) 0%, rgba(28,25,23,0.35) 45%, rgba(28,25,23,0.78) 100%);
  z-index: 1;
}

.lh5-tile__body { position: relative; z-index: 2; }
.lh5-tile h3 {
  font-family: var(--font-display); font-weight: 500;
  font-size: 28px; letter-spacing: -0.02em; line-height: 1;
  margin: 0 0 6px; color: #FFFFFF;
}
.lh5-tile .count {
  font-size: 13px; color: rgba(255,255,255,0.78);
  font-weight: 500;
}
.lh5-tile .arr {
  width: 38px; height: 38px; border-radius: 999px;
  background: #FFFFFF; color: var(--ink-900);
  display: grid; place-items: center;
  align-self: flex-end;
  position: relative; z-index: 2;
  transition: transform 350ms cubic-bezier(0.2,0,0,1);
  box-shadow: 0 6px 16px -6px rgba(0,0,0,0.2);
}
.lh5-tile:hover .arr { transform: rotate(-45deg); }
.lh5-tile .soon-badge {
  position: absolute; top: 14px; right: 14px;
  font-size: 9px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--amber-600); background: rgba(255,255,255,0.96);
  padding: 4px 10px; border-radius: 999px;
  z-index: 3;
}
.lh5-tile.is-soon { cursor: default; }
.lh5-tile.is-soon .arr { display: none; }
.lh5-tile.is-soon .lh5-tile__img { filter: saturate(0.6) brightness(0.85); }
.lh5-tile.is-soon:hover { transform: none; box-shadow: none; }
.lh5-tile.is-soon:hover .lh5-tile__img { transform: none; }

.lh5-tile.t-tall { grid-row: span 2; }
.lh5-tile.t-wide { grid-column: span 2; }
@media (max-width: 560px) { .lh5-tile.t-tall, .lh5-tile.t-wide { grid-row: auto; grid-column: auto; } }

/* Larger title on the big tall/wide tiles */
.lh5-tile.t-tall h3,
.lh5-tile.t-wide h3 { font-size: 34px; }

/* ─── Promise - real listing previews ─── */
.lh5-promise { padding: 88px 28px; background: var(--cream-50); position: relative; z-index: 2; }
.lh5-promise-inner { max-width: var(--container-xl); margin: 0 auto; display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
@media (max-width: 1000px) { .lh5-promise-inner { grid-template-columns: 1fr; gap: 36px; } }
.lh5-promise h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(30px, 3.6vw, 48px); letter-spacing: -0.025em; line-height: 1.04; margin: 0 0 18px; }
.lh5-promise h2 em { font-style: italic; background: linear-gradient(110deg, var(--teal-700), var(--amber-500)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lh5-promise .lead { font-size: 17px; color: var(--fg-2); line-height: 1.55; margin: 0 0 24px; max-width: 480px; }
.lh5-promise-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.lh5-promise-list li { display: flex; gap: 12px; font-size: 15px; color: var(--ink-900); }
.lh5-promise-list .tick { width: 24px; height: 24px; border-radius: 999px; background: var(--teal-700); color: #fff; display: grid; place-items: center; flex-shrink: 0; }
.lh5-promise-list strong { display: block; margin-bottom: 2px; font-weight: 600; }
.lh5-promise-list span.sub { color: var(--fg-3); font-size: 14px; font-weight: 400; }

.lh5-promise-art {
  position: relative;
  aspect-ratio: 1.05/1;
  background: linear-gradient(135deg, #E9F2F0 0%, #FBEFD8 100%);
  border-radius: 28px;
  overflow: hidden;
  padding: 28px;
  display: grid; place-items: center;
}
.lh5-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; width: 100%; max-width: 480px; }
.lh5-compare-card {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 16px;
  overflow: hidden;
  font-family: var(--font-sans);
  box-shadow: 0 20px 40px -20px rgba(28,25,23,0.18);
  transition: transform 350ms cubic-bezier(0.2,0,0,1), box-shadow 350ms ease;
  text-decoration: none;
  color: inherit;
  display: block;
}
.lh5-compare-card:nth-child(1) { transform: rotate(-2.5deg); animation: lh5-float-y 5s ease-in-out infinite; }
.lh5-compare-card:nth-child(2) { transform: rotate(2.5deg);  animation: lh5-float-y 5s ease-in-out infinite 0.4s; }
.lh5-promise-art:hover .lh5-compare-card { transform: rotate(0); }
.lh5-compare-card:hover { box-shadow: 0 28px 50px -20px rgba(28,25,23,0.28); text-decoration: none; color: inherit; }
.lh5-compare-card .img {
  aspect-ratio: 4/3;
  background: center/cover no-repeat var(--cream-100);
}
.lh5-compare-card .info { padding: 14px; }
.lh5-compare-card h4 { font-size: 13px; font-weight: 600; color: var(--ink-900); margin: 0 0 4px; letter-spacing: -0.01em; line-height: 1.3; }
.lh5-compare-card .price { font-family: var(--font-display); font-weight: 500; font-size: 18px; color: var(--ink-900); letter-spacing: -0.01em; }
.lh5-compare-card .price small { font-size: 11px; color: var(--fg-3); font-family: var(--font-sans); font-weight: 400; }
.lh5-compare-card .meta-row { font-size: 11px; color: var(--fg-3); margin-top: 4px; }
.lh5-compare-card .meta-row .star { color: var(--amber-500); }

/* ─── Trust strip ─── */
.lh5-trust { background: linear-gradient(180deg, #fff 0%, #fff 50%, var(--cream-50) 100%); padding: 88px 28px; text-align: center; }
.lh5-trust-inner { max-width: 980px; margin: 0 auto; }
.lh5-trust h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(26px, 2.8vw, 38px); letter-spacing: -0.02em; margin: 0 0 12px; }
.lh5-trust .lead { font-size: 16px; color: var(--fg-3); max-width: 560px; margin: 0 auto 40px; }
.lh5-bignum {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(80px, 12vw, 180px);
  letter-spacing: -0.045em; line-height: 1;
  background: linear-gradient(110deg, var(--teal-700) 0%, var(--teal-500) 35%, var(--amber-500) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  margin: 0 0 14px;
  background-size: 200% auto;
  animation: lh5-shimmer-bg 8s linear infinite;
}
.lh5-trust .sub { font-size: 16px; color: var(--fg-3); margin: 0 0 56px; }
.lh5-trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; border-top: 1px solid var(--hairline); padding-top: 40px; }
@media (max-width: 600px) { .lh5-trust-grid { grid-template-columns: 1fr; } }
.lh5-trust-stat .v { font-family: var(--font-display); font-weight: 500; font-size: clamp(28px, 3.2vw, 44px); letter-spacing: -0.02em; line-height: 1; color: var(--ink-900); font-variant-numeric: tabular-nums; }
.lh5-trust-stat .l { font-size: 14px; color: var(--fg-3); margin-top: 8px; }

/* ─── Final CTA ─── */
.lh5-final { padding: 0 28px 88px; position: relative; z-index: 2; }
.lh5-final-inner { max-width: var(--container-xl); margin: 0 auto; padding: 80px 56px; background: var(--ink-900); color: var(--cream-50); border-radius: 30px; text-align: center; position: relative; overflow: hidden; }
.lh5-final-inner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 20% 80%, rgba(15,107,99,0.55), transparent 50%), radial-gradient(circle at 80% 20%, rgba(232,162,59,0.4), transparent 50%); }
.lh5-final-ring { position: absolute; border: 1px solid rgba(251,248,243,0.1); border-radius: 999px; pointer-events: none; animation: lh5-rotate-slow 80s linear infinite; }
.lh5-final h2 { position: relative; font-family: var(--font-display); font-weight: 500; font-size: clamp(34px, 5vw, 72px); letter-spacing: -0.035em; line-height: 1; margin: 0 0 18px; color: var(--cream-50); }
.lh5-final h2 em { font-style: italic; background: linear-gradient(110deg, var(--cream-50), var(--amber-400)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lh5-final p { position: relative; font-size: 17px; color: rgba(251,248,243,0.7); max-width: 520px; margin: 0 auto 32px; line-height: 1.5; }
.lh5-final-cta {
  position: relative;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 22px 18px 32px;
  background: var(--cream-50); color: var(--ink-900);
  border: none; border-radius: 999px;
  font-family: var(--font-sans); font-size: 16px; font-weight: 600;
  cursor: pointer; transition: transform 300ms cubic-bezier(0.2,0,0,1);
  text-decoration: none;
}
.lh5-final-cta:hover { transform: scale(1.04); text-decoration: none; color: var(--ink-900); }
.lh5-final-cta .arr { width: 38px; height: 38px; border-radius: 999px; background: var(--ink-900); color: var(--cream-50); display: grid; place-items: center; transition: transform 350ms cubic-bezier(0.2,0,0,1); }
.lh5-final-cta:hover .arr { transform: rotate(-45deg); }

/* ─── MOBILE refinements for the hero search ─── */
@media (max-width: 720px) {
  .lh5-hero { padding: 56px 18px 40px; }
  .lh5-eyebrow { margin-bottom: 18px; font-size: 11px; padding: 5px 12px; }
  .lh5-sub { margin-bottom: 24px; }

  /* Stack the search bar vertically - much friendlier on phones */
  .lh5-search {
    flex-direction: column;
    border-radius: 22px;
    padding: 10px;
    gap: 4px;
    max-width: 100%;
  }
  .lh5-field {
    width: 100%;
    border-radius: 14px;
    padding: 14px 14px;
    background: var(--cream-50);
  }
  .lh5-divider {
    width: 100%;
    height: 1px;
    background: var(--hairline);
    margin: 2px 0;
  }
  .lh5-go {
    width: 100%;
    height: 50px;
    border-radius: 14px;
    justify-content: center;
  }
  .lh5-field .chev { right: 14px; }

  .lh5-section,
  .lh5-bento,
  .lh5-how,
  .lh5-promise,
  .lh5-trust { padding-left: 20px; padding-right: 20px; }
  .lh5-final { padding: 0 20px 56px; }
  .lh5-final-inner { padding: 52px 28px; border-radius: 24px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .lh5-aurora, .lh5-bignum,
  .lh5-final-ring, .lh5-compare-card { animation: none !important; }
  .lh5-reveal { opacity: 1 !important; transform: none !important; }
}
