/* =====================
   RESET & ROOT
   ===================== */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
:root {
  --navy:     #03375B;
  --navy-dk:  #022a47;
  --navy-lt:  #ddeaf5;
  --cream:    #faf8f4;
  --warm:     #f3ede3;
  --border:   #e2ddd5;
  --text:     #1a1a1a;
  --muted:    #6b7a87;
  --white:    #ffffff;
  --rad:      10px;
}
html { scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body {
  background: var(--cream);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width:100%; display:block; }
a { color: inherit; }

/* =====================
   TYPOGRAPHY
   ===================== */
h1, h2, h3 {
  font-family: 'Cabin', sans-serif;
  line-height: 1.1;
  letter-spacing: -.02em;
}
h1 { font-size: clamp(36px, 8vw, 68px); font-weight:700; }
h2 { font-size: clamp(26px, 5vw, 42px); font-weight:700; }
h3 { font-size: clamp(18px, 3vw, 22px); font-weight:600; }

/* =====================
   LAYOUT HELPERS
   ===================== */
.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
@media(min-width:640px){ .wrap { padding: 0 32px; } }
@media(min-width:1120px){ .wrap { padding: 0 24px; } }

.section { padding: 64px 0; border-bottom: 1px solid var(--border); }
@media(min-width:768px){ .section { padding: 88px 0; } }

/* =====================
   BUTTONS
   ===================== */
.btn {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border-radius: 6px;
  transition: all .18s ease;
  line-height: 1;
  cursor: pointer;
  text-align: center;
}
.btn-lg { padding: 15px 28px; font-size: 16px; }
.btn-sm { padding: 10px 18px; font-size: 14px; }

.btn-navy {
  background: var(--navy);
  color: white;
  border: 2px solid var(--navy);
}
.btn-navy:hover { background: var(--navy-dk); border-color: var(--navy-dk); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover { background: var(--navy-lt); }

.btn-ghost {
  background: transparent;
  color: var(--muted);
  border: 2px solid var(--border);
}
.btn-ghost:hover { border-color: var(--navy); color: var(--navy); background: var(--navy-lt); }

.btn-white {
  background: white;
  color: var(--navy);
  border: 2px solid white;
}
.btn-white:hover { background: var(--navy-lt); border-color: var(--navy-lt); }

/* =====================
   ANNOUNCE BAR
   ===================== */
.announce {
  background: var(--navy-dk);
  padding: 10px 20px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.8);
  line-height: 1.5;
}
.announce a { color: white; font-weight: 600; text-decoration: underline; }
@media(min-width:640px){ .announce { padding: 10px 32px; } }

/* =====================
   HERO
   ===================== */
.hero {
  padding: 60px 20px 56px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  background: var(--cream);
}
@media(min-width:640px){ .hero { padding: 80px 32px 72px; } }

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  background: var(--navy-lt);
  border: 1px solid rgba(3,55,91,.15);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: .02em;
}
.hero h1 {
  max-width: 700px;
  margin: 0 auto 20px;
}
.hero h1 em {
  font-style: italic;
  color: var(--navy);
}
.hero-lead {
  font-size: 17px;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 36px;
  font-weight: 300;
  line-height: 1.75;
}
.hero-lead strong { color: var(--text); font-weight: 500; }

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
@media(min-width:400px){
  .hero-ctas { flex-direction: row; flex-wrap: wrap; justify-content: center; }
}

/* =====================
   GALLERY STRIP
   ===================== */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  background: var(--border);
}
@media(min-width:540px){ .gallery-strip { grid-template-columns: repeat(4, 1fr); } }

.gal-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  background: #ddd;
}
.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gal-item:hover img { transform: scale(1.06); }
.gal-cap {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2,42,71,.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 12px;
  opacity: 0;
  transition: opacity .25s;
}
.gal-item:hover .gal-cap { opacity: 1; }
.gal-cap span {
  color: white;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .03em;
}

/* =====================
   SOCIAL PROOF BAR
   ===================== */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 18px 20px;
}
@media(min-width:640px){ .trust-bar { padding: 18px 32px; } }
.trust-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 32px;
  align-items: center;
  justify-content: center;
}
@media(min-width:768px){ .trust-inner { justify-content: space-between; } }
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
}
.trust-item strong { color: var(--text); font-weight: 600; }
.trust-icon { font-size: 16px; }
a.trust-item-google { text-decoration: none; }
a.trust-item-google:hover { text-decoration: underline; }

/* =====================
   PRICING
   ===================== */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 36px;
}
@media(min-width:560px){ .pricing-grid { grid-template-columns: repeat(3, 1fr); } }

.p-card {
  border: 1px solid var(--border);
  border-radius: var(--rad);
  padding: 28px 24px;
  background: var(--white);
  position: relative;
  transition: box-shadow .2s, transform .2s;
}
.p-card:hover { box-shadow: 0 6px 30px rgba(3,55,91,.1); transform: translateY(-2px); }
.p-card.featured {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
}
.p-badge {
  position: absolute;
  top: -12px;
  left: 20px;
  background: white;
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: 1px solid rgba(3,55,91,.25);
}
.p-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 600;
}
.featured .p-label { color: rgba(255,255,255,.6); }
.p-amount {
  font-family: 'Cabin', sans-serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
}
.p-note {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}
.featured .p-note { color: rgba(255,255,255,.65); }
.pricing-small {
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
}

/* =====================
   WHY CARDS
   ===================== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 36px;
}
@media(min-width:600px){ .why-grid { grid-template-columns: repeat(3, 1fr); } }

.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--rad);
  padding: 26px 22px;
}
.why-icon { font-size: 26px; margin-bottom: 14px; }
.why-card h3 { margin-bottom: 8px; font-size: 17px; }
.why-card p { font-size: 14px; color: var(--muted); line-height: 1.7; font-weight: 300; }

/* =====================
   ABOUT
   ===================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media(min-width:768px){ .about-grid { grid-template-columns: 1fr 1fr; gap: 64px; } }

.about-body {
  font-size: 15px;
  line-height: 1.85;
  color: #3a4f5e;
  font-weight: 300;
  margin-bottom: 14px;
}
.about-body strong { color: var(--text); font-weight: 500; }
.brand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.brand-tag {
  font-size: 12px;
  background: var(--navy-lt);
  color: var(--navy);
  padding: 5px 13px;
  border-radius: 100px;
  font-weight: 600;
  border: 1px solid rgba(3,55,91,.15);
}
.about-img {
  border-radius: var(--rad);
  overflow: hidden;
  border: 1px solid var(--border);
}
.about-img img { width: 100%; display: block; }

/* =====================
   TESTIMONIALS
   ===================== */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 36px;
}
@media(min-width:540px){ .reviews-grid { grid-template-columns: repeat(2, 1fr); } }

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--rad);
  padding: 22px;
  transition: box-shadow .2s;
}
.review-card:hover { box-shadow: 0 4px 20px rgba(3,55,91,.07); }
.review-stars { color: #f59e0b; font-size: 14px; margin-bottom: 10px; letter-spacing: .05em; }
.review-body {
  font-size: 14px;
  font-style: italic;
  line-height: 1.75;
  color: #3a4f5e;
  font-weight: 300;
  margin-bottom: 12px;
}
.review-author {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
}
.reviews-note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
}
.review-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  align-items: center;
}
.btn-google {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: var(--text);
  border: 2px solid var(--border);
}
.btn-google:hover { background: var(--warm); border-color: var(--border); }

/* =====================
   FAQ + AREA
   ===================== */
.faq-area-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media(min-width:768px){ .faq-area-grid { grid-template-columns: 1fr 1fr; gap: 64px; } }

.area-body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 14px;
}

.faq-list { margin-top: 8px; }
.faq-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.faq-row:first-child { border-top: 1px solid var(--border); }
.faq-q {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  padding-top: 1px;
}
.faq-a {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 300;
}



/* =====================
   FOOTER
   ===================== */
/* =====================
   BLOG PREVIEW
   ===================== */
.blog-preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 24px;
}
@media(min-width:600px){ .blog-preview-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width:900px){ .blog-preview-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-preview-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--rad);
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: row;
  align-items: stretch;
  transition: box-shadow .2s, transform .2s;
}
@media(min-width:600px){ .blog-preview-card { flex-direction: column; } }
.blog-preview-card:hover { box-shadow: 0 4px 20px rgba(3,55,91,.1); transform: translateY(-2px); }
.blog-preview-thumb {
  flex-shrink: 0;
  width: 90px;
  overflow: hidden;
  background: var(--navy-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}
@media(min-width:600px){ .blog-preview-thumb { width: 100%; aspect-ratio: 16/9; } }
.blog-preview-thumb img { width:100%; height:100%; object-fit:cover; }
.blog-preview-body { padding: 12px 14px; flex: 1; display: flex; flex-direction: column; justify-content: center; }
@media(min-width:600px){ .blog-preview-body { padding: 16px; } }
.blog-preview-meta { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; margin-bottom: 5px; }
.blog-preview-tag {
  font-size: 9px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; background: var(--navy-lt); color: var(--navy);
  padding: 2px 8px; border-radius: 100px;
}
.blog-preview-date { font-size: 11px; color: var(--muted); }
.blog-preview-body h3 { font-size: 14px; line-height: 1.3; margin-bottom: 4px; font-family:'Cabin',sans-serif; }
@media(min-width:600px){ .blog-preview-body h3 { font-size: 16px; } }
.blog-preview-body p { font-size: 12px; color: var(--muted); line-height: 1.6; font-weight: 300; flex: 1; display: none; }
@media(min-width:600px){ .blog-preview-body p { display: block; } }
.blog-preview-read { margin-top: 10px; font-size: 12px; font-weight: 600; color: var(--navy); display: none; }
@media(min-width:600px){ .blog-preview-read { display: block; } }
.blog-preview-cta { margin-top: 24px; text-align: center; }

footer {
  background: var(--navy);
  color: white;
  padding: 52px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 44px;
}
@media(min-width:768px){ .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }

.footer-brand {
  font-family: 'Cabin', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -.02em;
}
.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  font-weight: 300;
  line-height: 1.7;
  max-width: 230px;
}
.footer-col-title {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255,255,255,.35);
  font-weight: 700;
  margin-bottom: 14px;
}
.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: rgba(255,255,255,.65);
  text-decoration: none;
  font-size: 14px;
  font-weight: 300;
  transition: color .15s;
}
.footer-areas-block {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 8px;
  padding-top: 26px;
  margin-bottom: 26px;
}
.footer-nav-areas {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-nav-areas a {
  font-size: 12.5px;
  color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  padding: 5px 12px;
  border-radius: 100px;
  transition: all .15s ease;
}
.footer-nav-areas a:hover {
  background: rgba(255,255,255,.14);
  color: white;
}

.footer-nav a:hover { color: white; }
.footer-nav a.footer-contact-highlight {
  color: white;
  font-weight: 600;
  font-size: 15px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
@media(min-width:768px){
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: flex-end; }
}
.footer-legal {
  font-size: 11px;
  color: rgba(255,255,255,.25);
  line-height: 1.8;
  max-width: 580px;
}
.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,.25);
  white-space: nowrap;
}

/* =====================
   SECTION LABELS
   ===================== */
.label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--navy);
  margin-bottom: 12px;
}

/* =====================
   SOCIAL STRIP
   ===================== */
.social-strip {
  background: var(--navy-dk);
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
@media(min-width:640px){ .social-strip { padding: 14px 32px; } }
.social-strip-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
  justify-content: center;
}
@media(min-width:640px){ .social-strip-inner { justify-content: space-between; } }
.social-strip-label {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 600;
  white-space: nowrap;
}
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  padding: 7px 13px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  transition: all .18s ease;
  white-space: nowrap;
}
.social-btn:hover { background: rgba(255,255,255,.14); color: white; border-color: rgba(255,255,255,.25); }
.social-btn.instagram:hover { background: rgba(225,48,108,.25); border-color: rgba(225,48,108,.4); }
.social-btn.facebook:hover { background: rgba(24,119,242,.25); border-color: rgba(24,119,242,.4); }
.social-btn.tiktok:hover { background: rgba(255,255,255,.12); }
.social-btn.trustpilot:hover { background: rgba(0,182,122,.2); border-color: rgba(0,182,122,.4); }
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =====================
   REVEAL ANIMATION
   ===================== */
.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: white;
  border: none;
  cursor: pointer;
  font-size: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  z-index: 50;
  box-shadow: 0 2px 16px rgba(3,55,91,.35);
}
.scroll-top.show { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--navy-dk); }

/* =====================
   HEADER CONTACT
   ===================== */
.header-contact {
}
/* =====================
   HERO CONTACT LINE
   ===================== */
.hero-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  align-items: center;
  justify-content: center;
  margin-top: 26px;
}
.hero-contact a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--navy);
  font-weight: 600;
  font-size: 14.5px;
  text-decoration: none;
}
.hero-contact a:hover { text-decoration: underline; }
.hero-contact svg { flex-shrink: 0; }

/* =====================
   PRICE LIST PAGE
   ===================== */
.pl-hero {
  padding: 48px 20px 8px;
  text-align: center;
  background: var(--cream);
}
@media(min-width:640px){ .pl-hero { padding: 64px 32px 8px; } }
.pl-hero .label { justify-content: center; display:flex; }
.pl-hero h1 { max-width: 640px; margin: 0 auto 14px; }
.pl-hero-lead {
  font-size: 16px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.75;
}

.pl-toolbar {
  position: sticky;
  top: 60px;
  z-index: 40;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 18px 20px;
}
@media(min-width:640px){ .pl-toolbar { padding: 18px 32px; } }
.pl-toolbar-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pl-search-wrap {
  position: relative;
  flex: 1;
}
.pl-search-wrap svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
}
#plSearch {
  width: 100%;
  padding: 12px 14px 12px 40px;
  border: 2px solid var(--border);
  border-radius: var(--rad);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  background: var(--white);
  color: var(--text);
}
#plSearch:focus { outline: none; border-color: var(--navy); }
.pl-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pl-pill {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 100px;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--muted);
  cursor: pointer;
  transition: all .15s ease;
  white-space: nowrap;
}
.pl-pill:hover { border-color: var(--navy); color: var(--navy); }
.pl-pill.active { background: var(--navy); border-color: var(--navy); color: white; }
.pl-count {
  font-size: 13px;
  color: var(--muted);
}

.pl-results { padding: 32px 0 20px; }
.pl-group { margin-bottom: 36px; }
.pl-group-title {
  font-family: 'Cabin', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--navy-lt);
}
.pl-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media(min-width:640px){ .pl-grid { grid-template-columns: repeat(2, 1fr); } }

.pl-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--rad);
}
.pl-item-main { min-width: 0; }
.pl-item-name {
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
}
.pl-item-brand {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--navy-lt);
  padding: 2px 8px;
  border-radius: 100px;
  margin-top: 6px;
}
.pl-item-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.5;
}
.pl-item-price {
  font-family: 'Cabin', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  white-space: nowrap;
  flex-shrink: 0;
}
.pl-item-price small {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 11px;
  color: var(--muted);
  text-align: right;
}

.pl-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
  display: none;
}
.pl-empty.show { display: block; }

.pl-note-box {
  background: var(--navy-lt);
  border-radius: var(--rad);
  padding: 18px 20px;
  font-size: 14px;
  color: var(--navy);
  margin-top: 8px;
  line-height: 1.6;
}

.pl-cta {
  text-align: center;
  padding: 40px 0 20px;
}
