/* ============================================================
   SLP EXPRESS — DEFERRED CSS
   Loads asynchronously — does NOT block first paint.
   Contains all below-the-fold styles:
   cards · components · footer · sections · testimonials

   Load with the preload trick (no render-blocking):
     <link rel="preload" href="slp-deferred.css" as="style"
           onload="this.onload=null;this.rel='stylesheet'">
     <noscript><link rel="stylesheet" href="slp-deferred.css"></noscript>
   ============================================================ */


/* ============================================================
   04. CARDS — .card, .card-dark, .grid-3, .doc-card, .country-card
   ============================================================ */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }

.card {
  background: var(--white);
  padding: 45px;
  border-radius: var(--r-xl);
  border: 1px solid var(--hairline);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.card:hover { transform: translateY(-10px); border-color: var(--accent); box-shadow: 0 18px 50px rgba(74, 0, 114, 0.10); }
.card i, .card .icon { font-size: 45px; color: var(--primary); display: block; margin-bottom: 25px; line-height: 1; }
.card h3 { font-size: 24px; font-weight: 800; color: var(--primary); margin-bottom: 15px; line-height: 1.25; }
.card p { font-size: 15px; color: var(--muted-2); line-height: 1.85; }

.card-dark { background: var(--primary); color: var(--white); border: 1px solid rgba(255,255,255,0.05); border-top: 4px solid var(--accent); }
.card-dark h3, .card-dark .icon, .card-dark i { color: var(--accent); }
.card-dark p { color: rgba(255, 255, 255, 0.85); }
.card-dark:hover { border-color: var(--accent); }

.doc-grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.doc-card { background: var(--white); border: 1px solid var(--hairline); border-radius: var(--r-lg); padding: 32px; box-shadow: var(--shadow-sm); }
.doc-card .doc-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(74, 0, 114, 0.08); color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 14px;
}
.doc-card h3 { font-size: 20px; color: var(--primary); margin-bottom: 14px; font-weight: 800; line-height: 1.3; }
.doc-card ul { padding-left: 22px; color: var(--muted-2); line-height: 1.85; }
.doc-card li { margin-bottom: 6px; }

.country-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.country-card {
  display: block; background: var(--white);
  border: 1px solid var(--hairline); border-radius: var(--r-lg);
  padding: 30px 24px; text-align: center; text-decoration: none;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.country-card:hover { transform: translateY(-6px); border-color: var(--accent); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.country-card .flag { font-size: 40px; display: block; margin-bottom: 10px; line-height: 1; }
.country-card .cname { font-size: 18px; font-weight: 700; color: var(--primary); display: block; margin-bottom: 6px; }
.country-card .days { font-size: 13px; color: var(--muted); display: block; margin-bottom: 16px; }
.country-card .view-btn {
  display: inline-block; background: var(--accent); color: var(--primary);
  font-weight: 600; font-size: 13px; padding: 8px 20px; border-radius: 30px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.country-card:hover .view-btn { transform: translateY(-2px); box-shadow: var(--shadow-gold); }

@media (max-width: 900px) {
  .grid-3, .doc-grid-2 { grid-template-columns: 1fr; }
  .card { padding: 32px; }
}


/* ============================================================
   05. COMPONENTS — steps, FAQ, rates box, CTA strips, pickup areas
   ============================================================ */
.steps-ol { max-width: 920px; margin: 0 auto; counter-reset: sstep; list-style: none; padding: 0; }
.steps-ol li { position: relative; padding-left: 68px; margin-bottom: 28px; min-height: 52px; counter-increment: sstep; }
.steps-ol li::before {
  content: counter(sstep);
  position: absolute; left: 0; top: 0;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--primary); color: var(--white);
  font-weight: 800; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px rgba(74, 0, 114, 0.25);
}
.steps-ol li h4 { font-size: 18px; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.steps-ol li p { color: var(--muted-2); font-size: 15px; line-height: 1.8; }

.rates-quote-box {
  max-width: 680px; margin: 0 auto;
  background: var(--white); padding: 40px 28px;
  border-radius: var(--r-lg); border: 1px solid var(--hairline);
  box-shadow: var(--shadow-md); text-align: center;
}
.rates-quote-box h3 { font-size: 22px; font-weight: 800; color: var(--primary); margin-bottom: 18px; }
.rate-spinner {
  width: 44px; height: 44px; border-radius: 50%;
  border: 4px solid var(--hairline); border-top-color: var(--primary);
  margin: 20px auto; animation: spin 0.85s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.rate-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-bottom: 1px dashed var(--hairline);
  font-size: 15px; color: var(--muted-2); text-align: left;
}
.rate-row:last-of-type { border-bottom: 0; }
.rate-row strong { color: var(--primary); font-weight: 800; }
.rate-row .row-carrier { font-weight: 600; color: var(--text); }
.rate-row .row-note { font-size: 12px; color: var(--muted); display: block; margin-top: 2px; }
.rate-amount { font-size: 38px; font-weight: 800; color: var(--primary); line-height: 1; }
.rate-amount .unit { font-size: 14px; color: var(--muted); font-weight: 600; }
.rate-meta { font-size: 12px; color: var(--muted); margin-top: 10px; }
[data-rate-state="success"] .rate-spinner,
[data-rate-state="fallback"] .rate-spinner { display: none; }
[data-rate-state="loading"] .rate-rows,
[data-rate-state="loading"] .rate-cta { display: none; }

.faq-wrap { max-width: 920px; margin: 0 auto; }
.faq-item {
  background: var(--white); border: 1px solid var(--hairline);
  border-radius: 14px; margin-bottom: 12px; overflow: hidden;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.faq-item[open] { border-color: rgba(74,0,114,0.25); box-shadow: 0 6px 24px rgba(74,0,114,0.08); }
.faq-item summary {
  cursor: pointer; padding: 18px 22px;
  font-weight: 700; color: var(--primary); font-size: 16px;
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 24px; font-weight: 400; color: var(--primary); transition: transform 0.25s ease; line-height: 1; }
.faq-item[open] summary::after { content: '−'; }
.faq-a { padding: 0 22px 18px; color: #555; font-size: 15px; line-height: 1.8; }

.section-cta-quick {
  padding: 56px 0;
  background: rgba(106, 0, 153, 0.06);
  border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline);
  text-align: center;
}
.section-cta-quick h3 { font-size: 24px; font-weight: 800; color: var(--primary); margin-bottom: 18px; }

.section-cta-gold-strip {
  padding: 48px 0;
  background: var(--grad-gold-strip);
  border-top: 1px solid rgba(74,0,114,0.08); border-bottom: 1px solid rgba(74,0,114,0.08);
  text-align: center;
}
.section-cta-gold-strip h3 { font-size: 26px; font-weight: 800; color: var(--primary); margin-bottom: 14px; line-height: 1.3; }
.section-cta-gold-strip p { font-size: 16px; color: var(--muted-2); max-width: 720px; margin: 0 auto 18px; }
.cta-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }

.pickup-areas { column-count: 3; column-gap: 36px; max-width: 900px; margin: 0 auto; list-style: none; padding: 0; }
.pickup-areas li {
  break-inside: avoid; padding: 10px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.15);
  font-weight: 600; font-size: 15px; color: rgba(255,255,255,0.9);
  display: flex; align-items: center; gap: 10px;
}
.pickup-areas li::before { content: '📍'; font-size: 14px; flex-shrink: 0; }

@media (max-width: 900px) { .pickup-areas { column-count: 2; } }
@media (max-width: 480px) { .pickup-areas { column-count: 1; } }


/* ============================================================
   06. FOOTER — .footer, .footer-cols, .wa-float
   ============================================================ */
.footer { background: #111; color: #aaa; padding: 60px 0 20px; font-size: 13px; line-height: 1.8; }
.footer a { color: var(--accent); text-decoration: none; }
.footer a:hover { text-decoration: underline; }
.footer-cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; text-align: left; margin-bottom: 40px; }
.footer-cols h4 { color: var(--white); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 14px; }
.footer-cols ul { list-style: none; }
.footer-cols li { margin-bottom: 8px; }
.footer-cols a { color: #aaa; }
.footer-cols a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid #222; padding-top: 20px; color: #666; text-align: center; }
.footer-bottom .phone { color: var(--accent); font-weight: 700; }

.wa-float {
  position: fixed; right: 22px; bottom: 80px;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--whatsapp); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
  z-index: 900; transition: transform 0.25s ease;
}
.wa-float:hover { transform: scale(1.08); }

@media (max-width: 900px) {
  .footer-cols { grid-template-columns: 1fr 1fr; text-align: center; }
  .footer-cols h4 { text-align: center; }
  .wa-float { width: 54px; height: 54px; font-size: 26px; bottom: 72px; }
}
@media (max-width: 480px) { .footer-cols { grid-template-columns: 1fr; } }


/* ============================================================
   Sticky "Book pickup" bar — appears on all pages
   ============================================================ */
.slp-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  z-index: 800;
  background: linear-gradient(90deg, #4a0072 0%, #6a0099 55%, #7b1fa2 100%);
  border-top: 1px solid rgba(255, 213, 79, 0.45);
  box-shadow: 0 -4px 24px rgba(74, 0, 114, 0.4);
  padding: 0;
  height: 58px;
  display: flex;
  align-items: center;
}
.slp-sticky-bar__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}
.slp-sticky-bar__left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  overflow: hidden;
}
.slp-sticky-bar__badge {
  flex-shrink: 0;
  background: var(--accent);
  color: var(--primary);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.8px;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
}
.slp-sticky-bar__copy {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.slp-sticky-bar__btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  padding: 11px 22px;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 18px rgba(18, 140, 126, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}
.slp-sticky-bar__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(18, 140, 126, 0.55);
  color: #fff;
}

@media (max-width: 700px) {
  body { padding-bottom: 56px; }
  .slp-sticky-bar__left { display: none; }
  .slp-sticky-bar__row {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
  .slp-sticky-bar__btn {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    border-radius: 0;
    padding: 18px 16px;
    font-size: 15px;
    box-shadow: none;
  }
  .slp-sticky-bar__btn:hover { transform: none; }
  .slp-sticky-bar {
    height: auto;
    min-height: 54px;
    padding: 0;
    left: 0;
    right: 0;
  }
}


/* ============================================================
   10. SECTIONS — .section-light/grey/dark, .section-head, .intro-grid, .prose-narrow
   ============================================================ */
section { padding: 100px 0; }
.section-light { background: var(--white); }
.section-grey  { background: var(--light); }
.section-dark  { background: var(--primary); color: var(--white); }

.section-head {
  text-align: center; margin-bottom: 60px;
  max-width: 820px; margin-left: auto; margin-right: auto; padding: 0 16px;
}
.section-head h2 { font-size: 36px; font-weight: 800; color: var(--primary); margin-bottom: 15px; line-height: 1.2; text-wrap: pretty; }
.section-head p { font-size: 17px; color: var(--muted-2); line-height: 1.7; }
.section-dark .section-head h2 { color: var(--accent); }
.section-dark .section-head p  { color: rgba(255, 255, 255, 0.85); }

.intro-grid { display: grid; grid-template-columns: minmax(260px, 400px) 1fr; gap: 36px; align-items: start; margin-bottom: 28px; }
.intro-grid-photo { width: 100%; border-radius: var(--r-lg); object-fit: cover; box-shadow: 0 10px 34px rgba(0,0,0,0.08); aspect-ratio: 11/8; }

.prose-narrow { max-width: 950px; margin: 0 auto; font-size: 17px; line-height: 2; color: var(--muted-2); }
.prose-narrow p { margin-bottom: 26px; }
.prose-narrow strong { color: var(--text); font-weight: 700; }
.prose-narrow a { color: var(--secondary); font-weight: 600; border-bottom: 1px solid rgba(106,0,153,0.25); }
.prose-narrow ul, .prose-narrow ol { padding-left: 22px; margin-bottom: 26px; }
.prose-narrow li { margin-bottom: 8px; }
.section-dark .prose-narrow, .section-dark .prose-narrow p { color: rgba(255,255,255,0.85); }
.section-dark .prose-narrow strong { color: var(--white); }

.meds-h3, .section-subh3 { font-size: 22px; font-weight: 800; color: var(--primary); margin: 36px 0 14px; line-height: 1.3; }
.section-dark .meds-h3, .section-dark .section-subh3 { color: var(--accent); }

.image-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 900px; margin: 40px auto 0; }
.image-row img { width: 100%; border-radius: var(--r-lg); box-shadow: 0 10px 34px rgba(0,0,0,0.08); object-fit: cover; aspect-ratio: 4/3; }

@media (max-width: 900px) {
  section { padding: 70px 0; }
  .section-head { margin-bottom: 40px; }
  .section-head h2 { font-size: 28px; }
  .intro-grid { grid-template-columns: 1fr; gap: 24px; }
  .image-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) { .section-head h2 { font-size: 24px; } }


/* ============================================================
   11. TESTIMONIALS — .testimonial, .carousel, .google-rating, .filter-chip
   ============================================================ */
.testimonial .stars { color: var(--accent); font-size: 18px; letter-spacing: 2px; line-height: 1; margin-bottom: 16px; }
.testimonial .review { font-size: 15px; color: var(--muted-2); line-height: 1.85; margin-bottom: 22px; }
.testimonial .reviewer { font-weight: 800; color: var(--primary); font-size: 15px; }
.testimonial .review-loc { font-size: 14px; color: var(--muted); font-weight: 400; margin-top: 2px; }
.testimonial .review-service {
  display: inline-block; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.6px;
  color: var(--secondary); background: rgba(106,0,153,0.08);
  padding: 4px 10px; border-radius: 4px; margin-bottom: 14px;
}
.testimonial .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent); color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px; margin-right: 12px; vertical-align: middle;
}
.testimonial .reviewer-row { display: flex; align-items: center; gap: 12px; }

.testimonial-grid[data-density="compact"] .card,
.testimonial-grid[data-density="compact"] .testimonial { padding: 30px; }
.testimonial-grid[data-density="compact"] .review { font-size: 14px; }
.testimonial-grid[data-density="cozy"] .card,
.testimonial-grid[data-density="cozy"] .testimonial { padding: 45px; }
.testimonial-grid[data-density="spacious"] .card,
.testimonial-grid[data-density="spacious"] .testimonial { padding: 56px; }
.testimonial-grid[data-cols="2"] { grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); }
.testimonial-grid[data-cols="3"] { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.testimonial-grid[data-cols="4"] { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

.carousel { position: relative; max-width: 1100px; margin: 0 auto; }
.carousel-viewport { overflow: hidden; border-radius: var(--r-xl); }
.carousel-track { display: flex; transition: transform 0.5s cubic-bezier(0.22,0.61,0.36,1); will-change: transform; }
.carousel-slide {
  min-width: 100%; padding: 60px 80px;
  background: var(--white); border: 1px solid var(--hairline);
  display: flex; flex-direction: column; align-items: center; text-align: center; position: relative;
}
.carousel-slide .quote-mark { font-size: 80px; line-height: 1; color: var(--accent); font-family: Georgia,serif; margin-bottom: -20px; margin-top: -10px; }
.carousel-slide .stars { margin-bottom: 22px; font-size: 22px; letter-spacing: 3px; }
.carousel-slide .review { font-size: 22px; line-height: 1.6; color: var(--text); font-weight: 500; max-width: 760px; margin-bottom: 30px; text-wrap: pretty; }
.carousel-slide .reviewer { font-size: 18px; color: var(--primary); font-weight: 800; }
.carousel-slide .review-loc { font-size: 14px; color: var(--muted); margin-top: 2px; }
.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--hairline);
  color: var(--primary); font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: var(--shadow-sm);
  transition: background 0.25s ease, transform 0.25s ease; z-index: 2;
}
.carousel-arrow:hover { background: var(--accent); transform: translateY(-50%) scale(1.05); }
.carousel-arrow-prev { left: -26px; }
.carousel-arrow-next { right: -26px; }
.carousel-dots { display: flex; justify-content: center; gap: 10px; margin-top: 26px; }
.carousel-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(74,0,114,0.2); border: 0; padding: 0; cursor: pointer; transition: background 0.25s ease, transform 0.25s ease; }
.carousel-dot[aria-current="true"] { background: var(--primary); transform: scale(1.4); }

.google-rating { display: inline-flex; align-items: center; gap: 16px; background: var(--white); border: 1px solid var(--hairline); border-radius: var(--r-lg); padding: 18px 28px; box-shadow: var(--shadow-sm); text-align: left; }
.google-rating .g-logo { font-size: 28px; font-weight: 800; line-height: 1; }
.google-rating .g-logo .b { color: #4285F4; }
.google-rating .g-logo .r { color: #EA4335; }
.google-rating .g-logo .y { color: #FBBC05; }
.google-rating .g-logo .g { color: #34A853; }
.google-rating .g-score { font-size: 26px; font-weight: 800; color: var(--text); line-height: 1; }
.google-rating .g-stars { color: #fbbc05; font-size: 16px; letter-spacing: 1px; }
.google-rating .g-count { font-size: 13px; color: var(--muted); margin-top: 2px; }

.filter-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 50px; }
.filter-chip { background: var(--white); border: 1px solid var(--hairline); color: var(--text); padding: 10px 22px; border-radius: 30px; font-size: 14px; font-weight: 600; cursor: pointer; transition: all 0.25s ease; }
.filter-chip:hover { border-color: var(--primary); color: var(--primary); }
.filter-chip[aria-pressed="true"] { background: var(--primary); color: var(--white); border-color: var(--primary); }

@media (max-width: 900px) {
  .carousel-slide { padding: 40px 30px; }
  .carousel-slide .review { font-size: 17px; }
  .carousel-arrow-prev { left: 8px; }
  .carousel-arrow-next { right: 8px; }
  .carousel-arrow { width: 42px; height: 42px; }
}

/* Site-wide breadcrumb (pairs with JSON-LD BreadcrumbList on LP + hubs) */
.breadcrumb-bar {
  background: var(--white);
  border-bottom: 1px solid var(--hairline);
}
.breadcrumb-inner {
  padding: 12px 0;
  font-size: 13px;
  color: var(--muted);
}
.breadcrumb-inner a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}
.breadcrumb-inner a:hover {
  text-decoration: underline;
}
.breadcrumb-inner span {
  font-weight: 600;
  color: var(--text);
}

/* ============================================================
   HOMEPAGE HERO — trust stickers + mobile-first pickup form
   ============================================================ */
.hero-trust-stickers {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 18px 0 24px;
}
.hero-trust-sticker {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(
    160deg,
    rgba(122, 31, 162, 0.82) 0%,
    rgba(74, 0, 114, 0.9) 100%
  );
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 213, 79, 0.55);
  border-radius: 14px;
  padding: 10px 16px;
  min-width: 92px;
  line-height: 1.15;
  box-shadow: 0 4px 14px rgba(74, 0, 114, 0.35);
}
.hero-trust-sticker strong {
  color: #ffd54f;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.3px;
}
.hero-trust-sticker span {
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-top: 4px;
  white-space: nowrap;
  text-shadow: 0 1px 2px rgba(45, 10, 78, 0.45);
}

/* Mobile: H1 + chips + stickers FIRST, pickup card AFTER (per user direction) */
@media (max-width: 900px) {
  .hero-wrapper { display: flex; flex-direction: column; gap: 24px; }
  .hero-text { order: 1; }
  .hero-form { order: 2; }
  .hero-trust-stickers { gap: 8px; }
  .hero-trust-sticker { padding: 8px 12px; min-width: 78px; }
  .hero-trust-sticker strong { font-size: 15px; }
  .hero-trust-sticker span { font-size: 10px; }
}

/* ============================================================
   HOMEPAGE H1 — make .hero-seo-title visible (was unstyled = invisible on purple)
   ============================================================ */
.hero-seo-title {
  color: var(--white);
  font-weight: 800;
  font-size: clamp(24px, 4.6vw, 38px);
  line-height: 1.22;
  text-align: center;
  letter-spacing: 0.2px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
  margin: 18px 0 12px;
  max-width: 860px;
  padding: 0 12px;
}
.hero-seo-title em,
.hero-seo-title strong { color: var(--accent); font-style: normal; }

/* Trust stickers — slightly darker fill for stronger contrast on hero photo,
   plus a subtle hover lift on desktop */
.hero-trust-sticker {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.hero-trust-sticker:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(106, 0, 153, 0.45);
}
.hero-trust-stickers {
  justify-content: center;   /* center stickers under H1 */
}
@media (max-width: 480px) {
  .hero-seo-title { font-size: clamp(20px, 5.2vw, 26px); margin-top: 12px; }
  .hero-trust-stickers { gap: 6px; margin: 12px 0 16px; }
}

/* ============================================================
   HERO — Row 1: 3 value chips (Free pickup / Pro packing / Countries)
   ============================================================ */
.hero-value-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 16px 0 8px;
  padding: 0;
}
.hero-value-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--primary);
  font-weight: 800;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: var(--r-pill);
  box-shadow: 0 6px 18px rgba(255, 213, 79, 0.35);
  letter-spacing: 0.2px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.hero-value-chip:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(255, 213, 79, 0.45); }
.hero-value-chip span { font-size: 16px; }

@media (max-width: 480px) {
  .hero-value-chips { gap: 6px; margin: 10px 0 6px; }
  .hero-value-chip { font-size: 12px; padding: 7px 12px; gap: 6px; }
  .hero-value-chip span { font-size: 13px; }
}


/* ============================================================
   PICKUP CARD (form fields, labels, submit, links) — MIGRATED from
   css/pages/index.css so non-homepage pages also style the floating
   pickup-card section (injected by scripts/_inject_pickup_card.py).

   Original homepage hero pickup-card CSS still works (selectors
   identical); this just ensures coverage on every page that loads
   slp-deferred.css.
   ============================================================ */
.pickup-card {
      border: 2px solid rgba(255, 213, 79, 0.55);
      border-radius: 16px;
      box-shadow: 0 24px 60px rgba(74, 0, 114, 0.35), 0 6px 18px rgba(0, 0, 0, 0.18);
      overflow: hidden;
      max-width: 400px;
      margin-left: auto;
      color: #222;
    }

.pickup-card__head {
      background: linear-gradient(135deg, #3a0068 0%, #6a0099 100%);
      padding: 14px 18px;
      display: flex;
      align-items: center;
      gap: 12px;
      border-bottom: 3px solid #ffd54f;
    }

.pickup-card__logo {
      width: 44px;
      height: 44px;
      background: #fff;
      border-radius: 8px;
      padding: 3px;
      flex-shrink: 0;
      box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    }

.pickup-card__brand {
      color: #fff;
      font-weight: 900;
      font-size: 16px;
      line-height: 1.2;
      letter-spacing: 0.2px;
    }

.pickup-card__body {
      padding: 18px 18px 18px;
      background: #4a0072;
    }

.pickup-card__title {
      font-size: 1.25rem;
      font-weight: 800;
      color: #ffd54f;
      margin: 0 0 12px;
      line-height: 1.2;
    }

.pickup-card__chips {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      justify-content: center;
      margin-bottom: 12px;
    }

.pickup-card__chip {
      background: #ffd54f;
      color: #4a0072;
      font-size: 12px;
      font-weight: 800;
      padding: 5px 12px;
      border-radius: 6px;
      white-space: nowrap;
    }

.pickup-card__divider {
      height: 2px;
      background: #ffd54f;
      border-radius: 2px;
      margin-bottom: 14px;
      opacity: 0.55;
    }

.pickup-field {
      margin-bottom: 10px;
    }

.pickup-field label {
      display: block;
      font-size: 11px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 5px;
      text-transform: uppercase;
      letter-spacing: 0.4px;
    }

.pickup-req {
      color: #ffd54f;
      font-size: 12px;
    }

.pickup-select-wrap { position: relative; }

.pickup-select-wrap::after {
      content: '';
      position: absolute;
      right: 12px;
      top: 50%;
      transform: translateY(-50%);
      width: 10px;
      height: 6px;
      pointer-events: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%234a0072' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-size: contain;
    }

.pickup-field select,
    .pickup-field input[type="tel"] {
      width: 100%;
      padding: 11px 34px 11px 12px;
      border-radius: 9px;
      border: 1.5px solid rgba(255,255,255,0.2);
      font-size: 14px;
      font-family: inherit;
      font-weight: 500;
      color: #2a0050;
      background: #fdf6e3;
      appearance: none;
      -webkit-appearance: none;
      transition: border-color 0.15s ease, box-shadow 0.15s ease;
    }

.pickup-field input[type="tel"] { padding-right: 12px; }

.pickup-field select:focus,
    .pickup-field input:focus {
      outline: none;
      border-color: #ffd54f;
      box-shadow: 0 0 0 3px rgba(255, 213, 79, 0.3);
    }

/* Country combobox (213+ countries from rates CSV) */
.slp-country-combobox { position: relative; width: 100%; }
.pickup-card__body .slp-country-combobox__input,
.pickup-card__body .pickup-field input[type="number"] {
  width: 100%;
  padding: 11px 12px;
  border-radius: 9px;
  border: 1.5px solid rgba(255,255,255,0.2);
  font-size: 14px;
  font-family: inherit;
  font-weight: 500;
  color: #2a0050;
  background: #fdf6e3;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.slp-country-combobox__list {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 500;
  max-height: min(300px, 52vh);
  overflow-y: auto;
  background: #fdf6e3;
  border: 2px solid #ffd54f;
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}
.slp-country-combobox__list[hidden] { display: none !important; }
.slp-country-combobox__option {
  display: block;
  width: 100%;
  padding: 11px 14px;
  border: 0;
  background: transparent;
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  color: #2a0050;
  cursor: pointer;
  font-family: inherit;
}
.slp-country-combobox__option:hover,
.slp-country-combobox__option.is-active {
  background: rgba(255, 213, 79, 0.55);
  font-weight: 700;
  color: #4a0072;
}

.pickup-row2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }

.pickup-cta-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-top: 12px;
    }

.btn-pickup-rates {
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      text-decoration: none;
      padding: 13px 10px;
      border-radius: 50px;
      font-family: inherit;
      font-weight: 800;
      font-size: 13px;
      color: #4a0072;
      background: #ffd54f;
      box-shadow: 0 4px 14px rgba(255, 213, 79, 0.35);
      transition: transform 0.2s ease;
      white-space: nowrap;
    }

.btn-pickup-rates:hover { transform: translateY(-2px); color: #4a0072; }

.btn-pickup-submit {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 13px 10px;
      border-radius: 50px;
      border: 0;
      cursor: pointer;
      font-family: inherit;
      font-weight: 800;
      font-size: 13px;
      color: #fff;
      background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
      box-shadow: 0 4px 14px rgba(18, 140, 126, 0.4);
      transition: transform 0.2s ease;
      white-space: nowrap;
    }

.btn-pickup-submit:hover { transform: translateY(-2px); }

@media (max-width: 900px) {
      .header-trust {
        display: none;
      }

      .hero {
        background: linear-gradient(180deg, #1a0033 0%, #2d0a4e 50%, #1a0033 100%);
      }

      .hero-overlay {
        background: linear-gradient(rgba(20,0,50,0.75), rgba(74,0,114,0.85));
      }

      .hero-wrapper {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 28px;
      }

      .hero-text {
        text-align: center;
        padding: 0 12px;
        min-width: 0;
        width: 100%;
        max-width: 26rem;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
      }

      .hero-h1 {
        font-size: 24px;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
      }
      .hero-tagchips {
        justify-content: center;
      }

      .hero-trust-grid {
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
      }

      .hero-partners-line {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
      }

      .hero-btns {
        justify-content: center;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
      }

      .btn-hero-wa,
      .btn-hero-rates {
        justify-content: center;
      }

      .hero-form {
        width: 100%;
        max-width: 100%;
        flex: 1 1 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
      }

      .hero-form .pickup-card {
        width: 100%;
        max-width: min(420px, 100%);
        margin-left: auto;
        margin-right: auto;
      }

      .pickup-row2 {
        grid-template-columns: 1fr 1fr;
      }

      .pack-wrapper {
        flex-direction: column-reverse;
      }

      .pack-img-box {
        height: 300px;
      }

      .partners-grid {
        grid-template-columns: repeat(2, 1fr);
      }

    }

/* ============================================================
   PICKUP CARD VISIBILITY FIX
   Ensure the floating pickup card renders correctly regardless of
   the page background (purple footer, hero, white sections, etc.)
   ============================================================ */
.pickup-card-section {
  padding: 56px 0;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(244,247,246,0.6) 100%);
}
.pickup-card-section .pickup-card {
  max-width: 580px;
  margin: 0 auto;
  margin-left: auto;
  margin-right: auto;
}
.pickup-card-section .pickup-card__title {
  text-align: center;
  color: #ffd54f;
}
.pickup-card-section .pickup-card__body { padding: 28px 26px 22px; }
.pickup-card-section .pickup-card__head { padding: 16px 22px; }
@media (max-width: 600px) {
  .pickup-card-section { padding: 36px 0; }
  .pickup-card-section .pickup-card__body { padding: 22px 18px 18px; }
}
