/* =========================================================
   landing.css  —  /landing route only
   We Print N Pack
   ========================================================= */

/* ── HIDE SITE HEADER/FOOTER ON LANDING ROUTE ───────────── */
body:has(.landing-page) .site-shell > header,
body:has(.landing-page) .site-shell > footer,
body:has(.landing-page) .site-footer,
body:has(.landing-page) .site-header { display: none !important; }
body:has(.landing-page) .site-shell > main { min-height: unset; padding: 0; }

/* ── RESET / BASE ───────────────────────────────────────── */
.landing-page *, .landing-page *::before, .landing-page *::after {
  box-sizing: border-box;
}

/* Prevent white/blank rubber-band gap on macOS overscroll */
body:has(.landing-page) {
  background: #6d28d9;
}
.landing-page {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: #111827;
  line-height: 1.6;
}
.landing-page a { text-decoration: none; color: inherit; }
.landing-page img { display: block; max-width: 100%; }
.landing-page ul { margin: 0; padding: 0; }

/* ── LAYOUT ─────────────────────────────────────────────── */
.lp-wrap {
  width: min(1600px, calc(100% - 2rem));
  margin: 0 auto;
}
.lp-logo-text {
  width: 220px;
  height: auto;
  object-fit: contain;
}
.lp-sec { padding: 70px 0; }
.lp-centered { text-align: center; }

/* ── SECTION HEADING + DOTS ─────────────────────────────── */
.lp-sec-head { text-align: center; margin-bottom: 2.75rem; }
.lp-sec-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #111827;
  margin: 0 0 0.6rem;
  letter-spacing: -0.02em;
}
.lp-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin: 0 auto;
}
.lp-dots span {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
}
.lp-dots span:nth-child(1) { background: #3b82f6; width: 28px; border-radius: 4px; }
.lp-dots span:nth-child(2) { background: #ec4899; }
.lp-dots span:nth-child(3) { background: #f97316; }
.lp-dots span:nth-child(4) { background: #22c55e; }
.lp-dots span:nth-child(5) { background: #3b82f6; width: 28px; border-radius: 4px; }

/* ── HEADER ─────────────────────────────────────────────── */
.lp-header {
  position: sticky;
  top: 38px;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.lp-header-inner {
  width: min(1600px, calc(100% - 2rem));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 68px;
  padding: 10px 0;
}
.lp-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.lp-brand-img {
  width: 50px; height: 50px;
  border-radius: 10px;
  object-fit: cover;
}
.lp-brand-text strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: #111827;
  letter-spacing: 0.04em;
  line-height: 1.2;
}
.lp-brand-text span {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  color: #6b7280;
  letter-spacing: 0.1em;
}
.lp-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.lp-nav-link {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #374151;
  transition: background 0.18s, color 0.18s;
  white-space: nowrap;
}
.lp-nav-link:hover { background: #f3f4f6; color: #111827; }
.lp-nav-active { color: #2563eb !important; font-weight: 600; }
.lp-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 42px;
  padding: 0 22px;
  background: linear-gradient(90deg, #7c3aed 0%, #db2777 50%, #f97316 100%);
  color: #ffffff !important;
-webkit-text-fill-color: #ffffff;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(124,58,237,0.35);
}
.lp-header-cta:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(124,58,237,0.45); }

/* ── HERO ────────────────────────────────────────────────── */
.lp-hero{
  position: relative;
  overflow: hidden;
  background: #ffffff;
}
.lp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
}
.lp-hero-body {
  width: min(1600px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 2rem;
  align-items: center;
  padding: 70px 0 0;
  position: relative;
  z-index: 1;
}

/* LEFT */
.lp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 999px;
  padding: 6px 16px;
  color: #374151;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

@keyframes lp-badge-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

.lp-premium-badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  background: #f3f4f6;
  border: none;
  color: #111827;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow:
    0 0 12px rgba(168,85,247,0.35),
    0 0 20px rgba(249,115,22,0.25);
  margin-bottom: 1.4rem;
  z-index: 0;
}

.lp-premium-badge::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, #a855f7, #ec4899, #f97316, #facc15, #f97316, #ec4899, #a855f7);
  animation: lp-badge-spin 6s linear infinite;
  z-index: -2;
}

.lp-premium-badge::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: #f3f4f6;
  border-radius: 999px;
  z-index: -1;
}

.lp-premium-badge span {
  position: relative;
  z-index: 1;
}
.lp-fast-text{
  background: linear-gradient(90deg, #ff7a18 0%, #ffb36b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lp-separator{
  margin: 0 10px;
  color: rgba(0,0,0,0.4);
}
.lp-hero-dot {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: lp-blink 2s infinite;
}
@keyframes lp-blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
@keyframes lp-toast-in { from { opacity:0; transform: translateX(-50%) translateY(10px); } to { opacity:1; transform: translateX(-50%) translateY(0); } }

.lp-hero h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  color: #111827;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin: 0 0 1rem;
}
.lp-col-pink   { color: #f472b6; }
.lp-col-orange { color: #fb923c; }
.lp-col-green  { color: #4ade80; }

.lp-hero-sub {
  color: #374151;
  font-size: 1rem;
  line-height: 1.72;
  margin: 0 0 2rem;
  max-width: 44ch;
}
.lp-hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.8rem;
}
.lp-btn-orange {
    color: #ffffff !important;

  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 50px;
  padding: 0 28px;
  background: linear-gradient(
  90deg,
  #7c3aed 0%,
  #db2777 50%,
  #f97316 100%
);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 400;
  font-size: 0.97rem;
  cursor: pointer;
  transition: opacity 0.22s, transform 0.22s, box-shadow 0.22s;
  text-decoration: none;
  font-family: inherit;
  box-shadow: 0 6px 22px rgba(124,58,237,0.38);
}
.lp-btn-orange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  min-height: 50px;
  padding: 0 28px;

  background: linear-gradient(
    90deg,
    #7c3aed 0%,
    #db2777 50%,
    #f97316 100%
  );

  color: #ffffff;
  border: none;
  border-radius: 12px;

  font-weight: 400;
  font-size: 0.95rem;
  cursor: pointer;

  text-decoration: none;
  font-family: inherit;

  box-shadow:
    0 10px 30px rgba(124, 58, 237, 0.28),
    0 0 22px rgba(219, 39, 119, 0.18);

  transition: all 0.25s ease;
}

.lp-btn-orange:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 34px rgba(124, 58, 237, 0.35),
    0 0 28px rgba(219, 39, 119, 0.24);
}
.lp-btn-dark {
  color: #111827 !important;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  min-height: 50px;
  padding: 0 28px;

  background: #ffffff;

  border: 1.5px solid rgba(124, 58, 237, 0.35);

  border-radius: 12px;

  font-weight: 400;
  font-size: 0.95rem;

  cursor: pointer;
  text-decoration: none;
  font-family: inherit;

  transition: all 0.25s ease;

  box-shadow:
    0 0 18px rgba(124,58,237,0.08);
}

.lp-btn-dark:hover {
  background: #faf5ff;

  border-color: #7c3aed;

  box-shadow:
    0 0 20px rgba(124,58,237,0.18);

  transform: translateY(-2px);
}

/* RIGHT — single branded showcase image */
.lp-hero-right {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.lp-hero-showcase {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
}

/* STATS BAR */
.lp-stats-bar {
  width: min(1600px, calc(100% - 2rem));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  margin-top: 48px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.10);
  border: 1px solid #f0f0f0;
  gap: 0;
  position: relative;
  z-index: 1;
}
.lp-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  flex: 1;
  padding: 0 1rem;
  text-align: center;
}
.lp-stat + .lp-stat {
  border-left: 1px solid #e5e7eb;
}
.lp-stat-icon {
  font-size: 3rem;
  flex-shrink: 0;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-stat strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.2;
}
.lp-stat span {
  display: block;
  color: #9ca3af;
  font-size: 0.78rem;
  font-weight: 400;
}

/* ── PRODUCTS ────────────────────────────────────────────── */
.lp-products { background: #ffffff; }
.lp-prod-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}
.lp-prod-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.25s ease;
  cursor: pointer;
}
.lp-prod-card:hover {
  border-color: #3b82f6;
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(59,130,246,0.14);
}
.lp-prod-img {
  position: relative;
  height: 200px;
  background: #f3f4f6;
  overflow: hidden;
}
.lp-prod-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s; }
.lp-prod-card:hover .lp-prod-img img { transform: scale(1.08); }
.lp-prod-info {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.lp-prod-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: #111827;
  line-height: 1.3;
}
.lp-prod-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: #7c3aed;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-top: 2px;
}

/* ── FORM SECTION ────────────────────────────────────────── */
.lp-form-sec {
  background: #f9fafb;
  padding: 70px 0;
}
.lp-form-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 3.5rem;
  align-items: start;
}
.lp-tag-orange {
  display: inline-block;
  color: #7c3aed;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.lp-form-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: #111827;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}
.lp-form-sub {
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0 0 1.75rem;
}
.lp-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.lp-check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.92rem;
  color: #374151;
}
.lp-form-info{
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.lp-quote-plane{
  margin-top: 40px;

  padding-left: 30px;
  padding-right: 30px;
  padding-top: 10px;

  display: flex;
  justify-content: center;
  align-items: center;
}

.lp-quote-plane-img{
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: contain;
  opacity: 0.95;
}
.lp-ck {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  background: #22c55e;
  color: white;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 900;
  flex-shrink: 0;
}

/* form card */
.lp-form-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 2rem 2.25rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
}
.lp-fg { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.lp-fg-full { grid-column: 1 / -1; }
.lp-field { display: flex; flex-direction: column; gap: 5px; }
.lp-field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #374151;
}
.lp-field input,
.lp-field select,
.lp-field textarea {
  width: 100%;
  border: 1.5px solid #d1d5db;
  border-radius: 9px;
  padding: 10px 13px;
  font-size: 0.9rem;
  background: #fafafa;
  color: #111827;
  font-family: inherit;
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
  box-sizing: border-box;
}
.lp-field input:focus,
.lp-field select:focus,
.lp-field textarea:focus {
  border-color: #7c3aed;
  box-shadow: 0 0 0 3px rgba(124,58,237,0.12);
  background: #fff;
}
.lp-field textarea { min-height: 90px; resize: vertical; }
.lp-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 32px;
  cursor: pointer;
}
.lp-upload {
  border: 2px dashed #d1d5db;
  border-radius: 10px;
  padding: 1.25rem;
  text-align: center;
  background: #f9fafb;
  cursor: pointer;
  transition: all 0.2s;
}
.lp-upload:hover, .lp-upload.drag-active { border-color: #7c3aed; background: #faf5ff; }
.lp-upload-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.lp-upload-icon { font-size: 1.8rem; }
.lp-upload-main { font-size: 0.88rem; font-weight: 600; color: #374151; }
.lp-upload-sub  { font-size: 0.76rem; color: #9ca3af; }
.lp-upload-name { font-size: 0.8rem; color: #16a34a; font-weight: 700; margin-top: 4px; word-break: break-all; }
.lp-send-btn {
  width: 100%;
  min-height: 50px;
  background: linear-gradient(90deg, #7c3aed 0%, #db2777 50%, #f97316 100%);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  transition: opacity 0.22s, transform 0.22s, box-shadow 0.22s;
  margin-top: 1.1rem;
  letter-spacing: 0.01em;
  box-shadow: 0 6px 22px rgba(124,58,237,0.35);
}
.lp-send-btn:hover:not(:disabled) {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(124,58,237,0.45);
}
.lp-send-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.lp-form-privacy {
  text-align: center;
  font-size: 0.76rem;
  color: #9ca3af;
  margin-top: 0.6rem;
}

/* success */
.lp-success {
  text-align: center;
  padding: 2rem 1rem;
  animation: lp-fadein 0.4s ease;
}
@keyframes lp-fadein { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:none} }
.lp-success-ico { font-size: 3.2rem; display: block; margin-bottom: 0.75rem; }
.lp-success h3 { font-size: 1.4rem; font-weight: 800; color: #16a34a; margin: 0 0 0.4rem; }
.lp-success p  { color: #6b7280; margin: 0 0 1.25rem; font-size: 0.92rem; }
.lp-wa-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #25d366;
  color: white;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  transition: all 0.2s;
}
.lp-wa-link:hover { background: #128c7e; transform: translateY(-2px); }
.lp-err {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 9px;
  padding: 10px 14px;
  color: #dc2626;
  font-size: 0.83rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* ── FEATURES ROW ────────────────────────────────────────── */
.lp-features {
  background: #ffffff;
  padding: 52px 0;
  border-top: 1px solid #f3f4f6;
  border-bottom: 1px solid #f3f4f6;
}
.lp-feat-row {
  display: flex;
  align-items: stretch;
}
.lp-feat-item {
  flex: 1;
  text-align: center;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.lp-feat-item + .lp-feat-item {
  border-left: 1px solid #e5e7eb;
}
.lp-feat-ico {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 2px solid #fce7f3;
  background: #fdf2f8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
}
.lp-feat-title {
  font-size: 0.93rem;
  font-weight: 800;
  color: #111827;
  line-height: 1.3;
}
.lp-feat-desc {
  font-size: 0.8rem;
  color: #6b7280;
  line-height: 1.55;
  margin: 0;
}

/* ── GALLERY ─────────────────────────────────────────────── */
.lp-gallery { background: #ffffff; }
.lp-gal-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
.lp-gal-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  background: #f3f4f6;
  cursor: pointer;
}
.lp-gal-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.lp-gal-card:hover img { transform: scale(1.1); }
.lp-gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 10px 12px;
}
.lp-gal-card:hover .lp-gal-overlay { opacity: 1; }
.lp-gal-label { color: #fff; font-size: 0.78rem; font-weight: 700; }
.lp-view-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 700;
  color: #7c3aed;
  font-size: 0.92rem;
  margin-top: 1.75rem;
  transition: gap 0.2s;
  text-decoration: none;
}
.lp-view-more:hover { gap: 10px; }

/* ── CTA ─────────────────────────────────────────────────── */
.lp-cta {
  background: transparent;
  padding: 40px 0 60px;
}
.lp-cta .lp-wrap {
  background: linear-gradient(100deg, #0f172a 0%, #1e1b4b 35%, #701a75 65%, #f97316 100%);
  border-radius: 20px;
  overflow: hidden;
  min-height: 200px;
  max-width: calc(100% - 8rem);
  margin-left: auto;
  margin-right: auto;
}
.lp-cta-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  min-height: 420px;
  gap: 0;
}
.lp-cta-copy {
  padding: 56px 56px;
}
.lp-cta-copy h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 900;
  color: #ffffff;
  margin: 0 0 0.5rem;
  letter-spacing: -0.03em;
}
.lp-cta-copy p {
  color: rgba(255,255,255,0.82);
  margin: 0 0 1.75rem;
  font-size: 0.95rem;
}
.lp-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 50px;
  padding: 0 28px;
  background: linear-gradient(90deg, #7c3aed 0%, #db2777 50%, #f97316 100%);
  color: #ffffff !important;
  border: none;
  border-radius: 10px;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: opacity 0.22s, transform 0.22s, box-shadow 0.22s;
  text-decoration: none;
  font-family: inherit;
  white-space: nowrap;
  box-shadow: 0 6px 22px rgba(124,58,237,0.4);
}
.lp-cta-btn:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 12px 30px rgba(124,58,237,0.5); }
.lp-cta-btn-white {
  background: #ffffff !important;
  color: #111827 !important;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}
.lp-cta-btn-white:hover { opacity: 0.92; transform: translateY(-2px); }
.lp-cta-img {
  position: relative;
  height: 100%;
  min-height: 420px;
  width: 100%;
  align-self: stretch;
}

/* ── FOOTER ─────────────────────────────────────────────── */
.lp-footer {
  background: #ffffff;
  padding: 0 0 0;
  color: #374151;
  font-size: 0.88rem;
  border-top: 1px solid #e5e7eb;
}

/* trust badges */
.lp-trust-bar {
  border-bottom: 1px solid #e5e7eb;
  padding: 20px 0;
}
.lp-trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1rem;
}
.lp-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.88rem;
  color: #111827;
  white-space: pre-line;
}
.lp-trust-icon { font-size: 1.6rem; flex-shrink: 0; }
.lp-trust-label { line-height: 1.3; }

.lp-foot-cols {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr 1.2fr;
  gap: 1.75rem;
  margin-bottom: 0;
  padding-top: 48px;
  padding-bottom: 40px;
}
.lp-foot-brand {
  display: flex;
  flex-direction: column;
}
.lp-foot-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  margin-bottom: 1rem;
}
.lp-foot-logo img { width: 48px; height: 48px; border-radius: 10px; object-fit: cover; }
.lp-foot-logo-name { font-weight: 900; color: #111827; font-size: 0.95rem; letter-spacing: 0.04em; line-height: 1.2; display: block; }
.lp-foot-logo-tag  { font-size: 0.65rem; color: #6b7280; letter-spacing: 0.1em; display: block; }
.lp-foot-brand p   { color: #6b7280; font-size: 0.84rem; line-height: 1.7; margin: 0 0 1.25rem; }
.lp-social-row     { display: flex; gap: 8px; }
.lp-social {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #374151;
  text-decoration: none;
  transition: all 0.2s;
}
.lp-social:hover { background: #e5e7eb; color: #111827; }

.lp-foot-col { display: flex; flex-direction: column; }
.lp-foot-col h4 {
  color: #111827;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 1.1rem;
}
.lp-foot-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.lp-foot-links a { color: #374151; font-size: 0.85rem; transition: color 0.18s; text-decoration: none; }
.lp-foot-links a:hover { color: #111827; }

.lp-foot-contacts { display: flex; flex-direction: column; gap: 0.8rem; }
.lp-foot-contact  { display: flex; align-items: flex-start; gap: 8px; font-size: 0.84rem; color: #374151; line-height: 1.5; }

.lp-wa-text { color: #374151; font-size: 0.84rem; line-height: 1.6; margin: 0 0 1rem; }
.lp-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff;
  padding: 11px 20px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all 0.2s;
}
.lp-wa-btn:hover { background: #128c7e; transform: translateY(-2px); box-shadow: 0 6px 18px rgba(37,211,102,0.3); }

.lp-foot-bottom {
  border-top: 1px solid #e5e7eb;
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  color: #6b7280;
  font-size: 0.8rem;
}
.lp-foot-bottom-links { display: flex; gap: 1.25rem; }
.lp-foot-bottom-links a { color: #6b7280; text-decoration: none; }
.lp-foot-bottom-links a:hover { color: #111827; }
.lp-foot-payments { display: flex; align-items: center; gap: 6px; }
.lp-pay-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 8px;
  border: 1px solid #d1d5db;
  border-radius: 5px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #374151;
  background: #f9fafb;
}

/* ── ANNOUNCEMENT BAR ───────────────────────────────────── */
.lp-announce-bar {
  position: sticky;
  top: 0;
  z-index: 101;
  background: linear-gradient(90deg, #6d28d9 0%, #db2777 50%, #f97316 100%);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 500;
  overflow: hidden;
  white-space: nowrap;
  padding: 9px 0;
}
.lp-announce-track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  animation: lp-marquee 28s linear infinite;
  will-change: transform;
}
.lp-announce-bar:hover .lp-announce-track {
  animation-play-state: paused;
}
.lp-announce-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 2.5rem;
  border-right: 1px solid rgba(255,255,255,0.25);
}
@keyframes lp-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.lp-announce-bar strong { font-weight: 800; }

/* ── HEADER RIGHT ICONS ──────────────────────────────────── */
.lp-header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.lp-header-icon {
  font-size: 1.15rem;
  cursor: pointer;
  position: relative;
  padding: 6px;
}
.lp-cart-icon { position: relative; }
.lp-cart-badge {
  position: absolute;
  top: -2px; right: -4px;
  background: #2563eb;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  border-radius: 999px;
  padding: 1px 5px;
  line-height: 1.4;
}

/* ── HERO UPDATES ────────────────────────────────────────── */
.lp-hero-brand-gradient {
  background: linear-gradient(90deg, #f43f5e 0%, #f97316 55%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lp-hero-checks {
  list-style: none;
  padding: 0;
  margin: 0 0 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1rem;
}
.lp-hero-checks li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: #374151;
}
.lp-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 32px;
  background: linear-gradient(90deg, #7c3aed 0%, #db2777 50%, #f97316 100%);
  color: #ffffff !important;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.97rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 6px 22px rgba(124,58,237,0.38);
}
.lp-btn-primary:hover { opacity: 0.92; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(124,58,237,0.48); }
.lp-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 28px;
  background: #ffffff;
  color: #111827 !important;
  border: 1.5px solid #d1d5db;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
}
.lp-btn-outline:hover { border-color: #111827; transform: translateY(-2px); }

/* ── STATS BAR UPDATES ───────────────────────────────────── */
.lp-stat-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.lp-stat-pink   { color: #ec4899 !important; }
.lp-stat-purple { color: #7c3aed !important; }
.lp-stat-teal   { color: #0d9488 !important; }

/* icon+text stats (Canada Wide, 24/7) */
.lp-stat-with-icon {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.lp-stat-icon-sm { font-size: 1.8rem; flex-shrink: 0; }
.lp-stat-icon-text strong { display: block; font-size: 0.95rem; font-weight: 800; color: #111827; line-height: 1.2; }
.lp-stat-icon-text span   { display: block; font-size: 0.78rem; color: #9ca3af; }

/* ── UNDERLINE BAR (section heading) ────────────────────── */
.lp-underline-bar {
  width: 80px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, #ec4899 0%, #f97316 25%, #eab308 50%, #22c55e 70%, #3b82f6 85%, #8b5cf6 100%);
  margin: 0.5rem auto 0;
}

/* ── BROWSE BY CATEGORY ──────────────────────────────────── */
.lp-cat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}
.lp-cat-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.25s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.lp-cat-card:hover {
  border-color: #6d28d9;
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(109,40,217,0.12);
}
.lp-cat-info {
  padding: 12px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.lp-cat-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: #111827;
  line-height: 1.3;
}
.lp-cat-desc {
  font-size: 0.76rem;
  color: #6b7280;
  line-height: 1.45;
  margin: 0;
}
.lp-cat-link {
  font-size: 0.8rem;
  font-weight: 700;
  color: #ec4899;
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

/* ── POPULAR PRODUCTS ────────────────────────────────────── */
.lp-popular { background: #f9fafb; }

.lp-pop-carousel {
  position: relative;
}

.lp-pop-row {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  padding-bottom: 0.75rem;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.lp-pop-row::-webkit-scrollbar { display: none; }

/* scroll arrows */
.lp-pop-arrow {
  position: absolute;
  top: 80px;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid #e5e7eb;
  box-shadow: 0 4px 16px rgba(0,0,0,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #374151;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, box-shadow 0.2s, transform 0.2s, background 0.2s;
}
.lp-pop-arrow.lp-pop-arrow-visible {
  opacity: 1;
  pointer-events: auto;
}
.lp-pop-arrow:hover {
  background: #f3f4f6;
  box-shadow: 0 6px 22px rgba(0,0,0,0.2);
  transform: translateY(-50%) scale(1.1);
}
.lp-pop-arrow-left  { left: -22px; }
.lp-pop-arrow-right { right: -22px; }
.lp-pop-card {
  width: 220px;
  min-width: 220px;
  flex: 0 0 220px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.25s;
}
.lp-pop-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,0.1); }
.lp-pop-img {
  position: relative;
  height: 160px;
  background: #f3f4f6;
  overflow: hidden;
}
.lp-pop-info {
  padding: 12px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.lp-pop-name  { font-weight: 700; font-size: 0.9rem; color: #111827; }
.lp-pop-price { font-size: 0.8rem; color: #6b7280; font-weight: 500; }
.lp-pop-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border-radius: 8px;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.82rem;
  text-decoration: none;
  margin-top: auto;
  padding-top: 8px;
  transition: opacity 0.2s;
}
.lp-pop-btn:hover { opacity: 0.88; }
.lp-shimmer {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: lp-shimmer 1.4s infinite linear;
}

/* ── HOW IT WORKS ────────────────────────────────────────── */
.lp-how { background: #ffffff; scroll-margin-top: 60px; }
.lp-how .lp-wrap { padding-left: 6rem; padding-right: 6rem; }
.lp-how-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.lp-how-step {
  flex: 0 0 auto;
  width: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.lp-how-badges {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 1.25rem;
}
.lp-how-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 900;
  font-size: 1rem;
  flex-shrink: 0;
  z-index: 1;
}
.lp-how-inner-dash {
  display: block;
  width: 14px;
  border-top: 2px dashed #d1d5db;
  flex-shrink: 0;
  height: 0;
}
.lp-how-icon-ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1.5px solid;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lp-how-connector {
  flex: 1;
  border-top: 2px dashed #d1d5db;
  margin-top: 36px;
  align-self: flex-start;
  height: 0;
}
.lp-how-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 0.4rem;
  display: block;
  line-height: 1.3;
}
.lp-how-desc {
  font-size: 0.8rem;
  color: #6b7280;
  line-height: 1.55;
  margin: 0;
  max-width: 160px;
}

/* ── WHATSAPP FLOAT ──────────────────────────────────────── */
.lp-wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  text-decoration: none;
  transition: all 0.25s;
}
.lp-wa-float:hover { background: #128c7e; transform: scale(1.1); }

/* ── HAMBURGER (landing) ────────────────────────────────── */
.lp-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.lp-h-line {
  display: block;
  width: 22px;
  height: 2px;
  background: #374151;
  border-radius: 2px;
  transition: transform 0.22s, opacity 0.22s;
  transform-origin: center;
}
.lp-h-top { transform: translateY(7px) rotate(45deg); }
.lp-h-mid { opacity: 0; }
.lp-h-bot { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV DRAWER (landing) ────────────────────────── */
.lp-mobile-nav {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  padding: 0.75rem 1.25rem 1rem;
  position: sticky;
  top: 68px;
  z-index: 99;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.lp-mobile-nav-link {
  display: block;
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid #f3f4f6;
  font-size: 1rem;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
}
.lp-mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: linear-gradient(90deg, #7c3aed 0%, #db2777 50%, #f97316 100%);
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1200px) {
  .lp-cat-grid  { grid-template-columns: repeat(3, 1fr); }
  .lp-foot-cols { grid-template-columns: 1fr 1fr 1fr; gap: 2rem; }
}

@media (max-width: 1100px) {
  .lp-prod-grid { grid-template-columns: repeat(3, 1fr); }
  .lp-gal-row   { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
  .lp-wrap,
  .lp-hero-body,
  .lp-header-inner,
  .lp-stats-bar { width: min(1600px, calc(100% - 2rem)); }
  .lp-hero-body { grid-template-columns: 1fr; padding: 48px 0 0; }
  .lp-hero-right { height: 380px; }
  .lp-form-grid { grid-template-columns: 1fr; gap: 2rem; }
  .lp-feat-row { flex-wrap: wrap; }
  .lp-feat-item { min-width: 45%; }
  .lp-feat-item + .lp-feat-item { border-left: none; border-top: 1px solid #e5e7eb; }
  .lp-nav { display: none; }
  .lp-header-cta { display: none; }
  .lp-hamburger { display: flex; }
  .lp-how-row { flex-wrap: wrap; gap: 1.5rem; justify-content: center; }
  .lp-how-step { width: 160px; }
  .lp-how-connector { display: none; }
  .lp-cta-inner { grid-template-columns: 1fr; }
  .lp-cta-img { display: none; }
  .lp-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-foot-cols { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 640px) {
  .lp-wrap,
  .lp-hero-body,
  .lp-header-inner,
  .lp-stats-bar { width: min(1600px, calc(100% - 2rem)); }
  .lp-header-inner { min-height: 58px; }
  .lp-prod-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-gal-row   { grid-template-columns: repeat(2, 1fr); }
  .lp-foot-cols { grid-template-columns: 1fr; gap: 1.75rem; }
  .lp-stats-bar { flex-wrap: wrap; gap: 1rem; }
  .lp-stat + .lp-stat { border-left: none; }
  .lp-fg { grid-template-columns: 1fr; }
  .lp-hero-right { height: 300px; }
  .lp-hero-sub { max-width: 100%; }
  .lp-feat-item { min-width: 100%; }
  .lp-hero-checks { grid-template-columns: 1fr; }
  .lp-how-step { width: 140px; }
  .lp-announce-bar { font-size: 0.72rem; gap: 0.25rem; }
  .lp-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-foot-bottom { flex-direction: column; text-align: center; gap: 0.5rem; }
}

/* =========================================================
   ANIMATIONS
   ========================================================= */

/* ── Keyframes ─────────────────────────────────────── */
@keyframes lp-fade-up {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes lp-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes lp-slide-left {
  from { opacity: 0; transform: translateX(-36px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes lp-slide-right {
  from { opacity: 0; transform: translateX(36px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes lp-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}
@keyframes lp-pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.35); }
  70%  { box-shadow: 0 0 0 14px rgba(124, 58, 237, 0); }
  100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); }
}
@keyframes lp-shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
@keyframes lp-count-pop {
  0%   { transform: scale(0.7); opacity: 0; }
  70%  { transform: scale(1.08); }
  100% { transform: scale(1);   opacity: 1; }
}
@keyframes lp-badge-drop {
  from { opacity: 0; transform: translateY(-16px) scale(0.9); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes lp-underline-grow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
@keyframes lp-spin-slow {
  to { transform: rotate(360deg); }
}

/* ── Hero — slides in on page load ───────────────── */
.lp-hero .lp-hero-left {
  animation: lp-slide-left 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.lp-hero .lp-hero-right {
  animation: lp-slide-right 0.75s 0.15s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.lp-premium-badge {
  animation: lp-badge-drop 0.5s 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.lp-hero h1 {
  animation: lp-fade-up 0.7s 0.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.lp-hero-sub {
  animation: lp-fade-up 0.7s 0.35s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.lp-hero-checks {
  animation: lp-fade-up 0.7s 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.lp-hero-btns {
  animation: lp-fade-up 0.7s 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* Hero image floats gently */
.lp-hero-showcase {
  animation: lp-float 5s ease-in-out infinite;
}


/* ── Stats — count pop on load ───────────────────── */
.lp-stat-num {
  display: inline-block;
  animation: lp-count-pop 0.6s 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* ── CTA primary button — pulse ring ─────────────── */
.lp-btn-primary {
  animation: lp-pulse-ring 2.2s 1.2s ease-out infinite;
}

/* ── Section headings — underline grows in ───────── */
.lp-underline-bar {
  transform-origin: left;
  animation: lp-underline-grow 0.6s 0.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* ── Scroll-triggered fade-up (JS adds .lp-visible) ─ */
.lp-anim {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.lp-anim.lp-visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger delays for children */
.lp-anim-d1 { transition-delay: 0.05s; }
.lp-anim-d2 { transition-delay: 0.12s; }
.lp-anim-d3 { transition-delay: 0.20s; }
.lp-anim-d4 { transition-delay: 0.28s; }
.lp-anim-d5 { transition-delay: 0.36s; }
.lp-anim-d6 { transition-delay: 0.44s; }

/* ── Product / category cards — lift on hover ────── */
.lp-cat-card {
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.28s ease;
}
.lp-cat-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 40px rgba(124, 58, 237, 0.14);
}

/* ── How-it-works steps — icon ring pulse ─────────── */
.lp-how-icon-ring {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.lp-how-step:hover .lp-how-icon-ring {
  transform: scale(1.12);
  box-shadow: 0 0 0 8px rgba(124, 58, 237, 0.1);
}

/* ── Trust badges — slide up on scroll ───────────── */
.lp-trust-item {
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.lp-trust-item:hover {
  transform: translateY(-4px);
}

/* ── Gallery images — zoom on hover ──────────────── */
.lp-gal-img {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}
.lp-gal-img:hover img,
.lp-gal-img:hover > div {
  transform: scale(1.06);
}

/* ── Header nav links — underline slide ──────────── */
.lp-nav-link {
  position: relative;
}
.lp-nav-link::after {
  content: "";
  position: absolute;
  bottom: -3px; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, #7c3aed, #db2777);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.lp-nav-link:hover::after,
.lp-nav-link.lp-nav-active::after {
  transform: scaleX(1);
}
