/* ==========================================================================
   Paesabai (แพสบาย) — Production styles
   Mobile-first. Breakpoints: 720px, 960px, 1024px+, 1440px+.
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. Design tokens
   -------------------------------------------------------------------------- */
:root {
  --pb-teal: #1E8C8C;
  --pb-deep: #0A4F4F;
  --pb-orange: #FF8A3D;
  --pb-coral: #E85D4E;
  --pb-yellow: #FFD93D;
  --pb-verified: #27AE60;
  --pb-line: #06C755;
  --pb-cream: #F5EFE4;
  --pb-paper: #FBF6EC;
  --pb-ink: #0A2A2A;
  --pb-ink-72: rgba(10, 42, 42, 0.72);
  --pb-ink-55: rgba(10, 42, 42, 0.55);
  --pb-ink-border: rgba(10, 42, 42, 0.08);

  --pb-accent: var(--pb-orange);

  --pb-radius-lg: 18px;
  --pb-radius-md: 14px;
  --pb-radius-sm: 12px;
  --pb-radius-pill: 999px;

  --pb-shadow-card: 0 12px 28px -14px rgba(10, 42, 42, 0.25);
  --pb-shadow-hero: 0 30px 60px -20px rgba(10, 42, 42, 0.25);

  --pb-maxw: 1240px;
  --pb-gutter: 24px;

  --pb-nav-height: 64px;

  --pb-font-head: 'Prompt', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --pb-font-body: 'Sarabun', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --pb-font-num:  'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* --------------------------------------------------------------------------
   1. Reset + base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--pb-font-body);
  font-size: 16px;
  line-height: 1.7; /* Thai-friendly — accommodates diacritics */
  background: var(--pb-cream);
  color: var(--pb-ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1, "liga" 1; /* kerning + standard ligatures */
  word-break: keep-all; /* prevents Thai word-mid breaks */
  hanging-punctuation: first last;
  overflow-x: hidden;
}
/* Body paragraphs — line-length cap for readability (Butterick: 45-90 chars) */
p { max-width: 70ch; }
/* but allow paragraphs inside cards/CTAs to fill their container */
.pb-card p, .pb-pkg p, .pb-review p, .pb-blog-card p, .pb-step p,
.pb-guide p, .pb-why p, .pb-section-head p, .pb-hero p,
.pb-company p, .pb-faq p, .pb-footer p { max-width: none; }
/* Print: avoid widows and orphans */
@media print {
  p, blockquote { orphans: 3; widows: 3; }
  h1, h2, h3 { page-break-after: avoid; }
}
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; }
a { -webkit-tap-highlight-color: transparent; color: inherit; }
a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--pb-teal);
  outline-offset: 3px;
  border-radius: inherit;
}

/* Scroll anchor offset: keep hash-linked sections below the sticky header. */
section[id], [id="top"], [id="reviews"] {
  scroll-margin-top: 80px;
}

/* Utility container */
.pb-container {
  max-width: var(--pb-maxw);
  margin: 0 auto;
  padding: 0 var(--pb-gutter);
}

/* Screen-reader-only text */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* --------------------------------------------------------------------------
   2. Typography helpers
   -------------------------------------------------------------------------- */
.pb-h1 {
  font-family: var(--pb-font-head);
  font-weight: 700;
  font-size: clamp(30px, 4.2vw, 50px);
  line-height: 1.3; /* Thai diacritics need breathing room */
  letter-spacing: -0.2px;
  color: var(--pb-deep);
  margin: 0;
  text-wrap: balance;
  hyphens: none;
  word-break: keep-all;
}
.pb-h2 {
  font-family: var(--pb-font-head);
  font-weight: 700;
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.3; /* Thai diacritics need breathing room */
  letter-spacing: -0.2px;
  color: var(--pb-deep);
  margin: 0;
  text-wrap: balance;
  hyphens: none;
  word-break: keep-all;
}
.pb-h3 {
  font-family: var(--pb-font-head);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4; /* Thai diacritics + sub-heading clarity */
  letter-spacing: 0;
  color: var(--pb-deep);
  margin: 0;
  hyphens: none;
  word-break: keep-all;
}
.pb-eyebrow {
  font-family: var(--pb-font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em; /* 10% — within Butterick's 5-12% for caps */
  color: var(--pb-teal);
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.pb-body {
  font-family: var(--pb-font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--pb-ink-72);
}

/* --------------------------------------------------------------------------
   3. Buttons
   -------------------------------------------------------------------------- */
.pb-btn {
  font-family: var(--pb-font-head);
  font-weight: 500;
  border: none;
  border-radius: var(--pb-radius-pill);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
  white-space: nowrap;
  text-decoration: none;
  min-height: 44px;
}
.pb-btn:hover { transform: translateY(-1px); }
.pb-btn--block { width: 100%; }

.pb-btn--sm { font-size: 14px; padding: 10px 18px; min-height: 44px; }
.pb-btn--md { font-size: 15px; padding: 12px 22px; min-height: 44px; }
.pb-btn--lg { font-size: 17px; padding: 16px 28px; min-height: 52px; }

.pb-btn--primary {
  background: var(--pb-accent);
  color: #2b1300;
  box-shadow: 0 6px 18px rgba(255, 138, 61, 0.35);
}
.pb-btn--primary:hover { background: #f57a2a; }

.pb-btn--teal {
  background: var(--pb-teal);
  color: var(--pb-cream);
  box-shadow: 0 6px 18px rgba(30, 140, 140, 0.3);
}
.pb-btn--teal:hover { background: #167777; }

.pb-btn--outline {
  background: transparent;
  color: var(--pb-deep);
  box-shadow: inset 0 0 0 1.5px var(--pb-teal);
}
.pb-btn--outline:hover { background: rgba(30, 140, 140, 0.06); }

.pb-btn--ghost {
  background: rgba(10, 79, 79, 0.06);
  color: var(--pb-deep);
}
.pb-btn--ghost:hover { background: rgba(10, 79, 79, 0.12); }

.pb-btn--ghost-dark {
  background: rgba(245, 239, 228, 0.1);
  color: var(--pb-cream);
}
.pb-btn--ghost-dark:hover { background: rgba(245, 239, 228, 0.18); }

.pb-btn:disabled,
.pb-btn[aria-disabled="true"] {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

/* --------------------------------------------------------------------------
   4. Hero wash (decorative background)
   -------------------------------------------------------------------------- */
.pb-hero-wash {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(60% 70% at 100% 0%, rgba(30, 140, 140, 0.12), transparent 60%),
    radial-gradient(40% 60% at 0% 100%, rgba(255, 138, 61, 0.08), transparent 60%);
}

/* --------------------------------------------------------------------------
   5. Top navigation
   -------------------------------------------------------------------------- */
.pb-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(245, 239, 228, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, backdrop-filter .25s ease, border-color .25s ease;
}
.pb-nav.is-scrolled {
  background: rgba(245, 239, 228, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--pb-ink-border);
}
.pb-nav__bar {
  max-width: var(--pb-maxw);
  margin: 0 auto;
  padding: 10px var(--pb-gutter);
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.pb-nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.pb-nav__links a {
  font-family: var(--pb-font-head);
  font-weight: 500;
  font-size: 15px;
  color: var(--pb-deep);
  text-decoration: none;
  padding: 10px 4px;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  transition: color .15s ease;
}
.pb-nav__links a:hover { color: var(--pb-teal); }
.pb-nav__right { display: flex; align-items: center; gap: 10px; }
.pb-lang-toggle {
  font-family: var(--pb-font-head);
  font-size: 13px;
  font-weight: 500;
  background: transparent;
  border: 1px solid rgba(10, 79, 79, 0.2);
  border-radius: var(--pb-radius-pill);
  padding: 8px 14px;
  cursor: pointer;
  color: var(--pb-deep);
  min-width: 72px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Hamburger */
.pb-hamburger {
  display: none;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border: none;
  background: transparent;
  padding: 10px;
  cursor: pointer;
  color: var(--pb-deep);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.pb-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  margin: 3px 0;
  transition: transform .25s ease, opacity .2s ease;
  border-radius: 2px;
}
.pb-hamburger.is-open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.pb-hamburger.is-open span:nth-child(2) { opacity: 0; }
.pb-hamburger.is-open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* Mobile drawer */
.pb-mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: var(--pb-cream);
  box-shadow: -20px 0 60px -20px rgba(10, 42, 42, 0.3);
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.2, .8, .2, 1);
  z-index: 110;
  display: flex;
  flex-direction: column;
  padding: 24px 22px 28px;
  overflow-y: auto;
}
.pb-mobile-drawer.is-open { transform: translateX(0); }
.pb-mobile-drawer__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.pb-mobile-drawer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pb-mobile-drawer__links a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 8px;
  font-family: var(--pb-font-head);
  font-weight: 500;
  font-size: 17px;
  color: var(--pb-deep);
  text-decoration: none;
  border-bottom: 1px solid rgba(10, 42, 42, 0.06);
}
.pb-mobile-drawer__links a:hover { color: var(--pb-teal); }
.pb-mobile-drawer__foot {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pb-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 42, 42, 0.55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 105;
}
.pb-backdrop.is-open { opacity: 1; pointer-events: auto; }

/* --------------------------------------------------------------------------
   6. Logo
   -------------------------------------------------------------------------- */
.pb-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  min-height: 44px;
}
.pb-logo__mark { flex-shrink: 0; }
.pb-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.pb-logo__word {
  font-family: var(--pb-font-head);
  font-weight: 700;
  font-size: 18px;
  color: var(--pb-deep);
  white-space: nowrap;
}
.pb-logo__sub {
  font-family: var(--pb-font-body);
  font-weight: 400;
  font-size: 10px;
  color: rgba(10, 42, 42, 0.62);
  letter-spacing: 0.2px;
  margin-top: 4px;
  white-space: nowrap;
}
.pb-logo--dark .pb-logo__word { color: var(--pb-cream); }
.pb-logo--dark .pb-logo__sub { color: rgba(245, 239, 228, 0.72); }

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */
.pb-hero {
  position: relative;
  padding: 24px 0 80px;
}
.pb-hero__grid {
  max-width: var(--pb-maxw);
  margin: 0 auto;
  padding: 0 var(--pb-gutter);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}
.pb-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(30, 140, 140, 0.1);
  color: var(--pb-deep);
  padding: 6px 14px;
  border-radius: var(--pb-radius-pill);
  font-family: var(--pb-font-body);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
}
.pb-hero__pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: var(--pb-accent);
}
.pb-hero__title { font-size: clamp(30px, 4.2vw, 50px); }
.pb-hero__title .accent { color: var(--pb-teal); }
.pb-hero__sub {
  font-family: var(--pb-font-body);
  font-size: 17px;
  line-height: 1.65;
  color: rgba(10, 42, 42, 0.75);
  margin-top: 20px;
  max-width: 520px;
}
.pb-hero__cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.pb-price-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  background: var(--pb-accent);
  color: #2b1300;
  padding: 10px 16px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(255, 138, 61, 0.3);
  font-family: var(--pb-font-body);
}
.pb-price-badge__label {
  font-size: 13px;
  font-weight: 600;
}
.pb-price-badge__num {
  font-family: var(--pb-font-num);
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.pb-hero__trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  margin-top: 32px;
  max-width: 480px;
}
.pb-hero__photo {
  position: relative;
  min-height: 420px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--pb-shadow-hero);
  aspect-ratio: 4 / 5;
}
.pb-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Tick */
.pb-tick {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-family: var(--pb-font-body);
  color: var(--pb-deep);
}

/* --------------------------------------------------------------------------
   8. Generic section
   -------------------------------------------------------------------------- */
.pb-section { padding: 88px 0; }
.pb-section--tight { padding: 72px 0; }
.pb-section--paper { background: var(--pb-paper); }

.pb-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 44px;
  flex-wrap: wrap;
  gap: 16px;
}
.pb-section-head__lead { max-width: 620px; }
.pb-section-head__lead--wide { max-width: none; }
/* Thai-aware no-break unit (proper-noun protection) */
.pb-nowrap { white-space: nowrap; }
/* Single-line heading variant — uses smaller font on narrow screens to stay one line */
.pb-h2--oneline { font-size: clamp(20px, 3vw, 40px); text-wrap: balance; }
.pb-section-head__aside { max-width: 380px; margin: 0; }
.pb-section-head--center { text-align: center; max-width: 620px; margin: 0 auto 48px; }

/* --------------------------------------------------------------------------
   9. How-it-works
   -------------------------------------------------------------------------- */
.pb-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 20px;
}
.pb-step {
  position: relative;
  background: var(--pb-cream);
  border-radius: var(--pb-radius-lg);
  padding: 28px;
  border: 1px solid var(--pb-ink-border);
}
.pb-step__num {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--pb-font-num);
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
  color: rgba(30, 140, 140, 0.12);
  font-variant-numeric: tabular-nums;
}
.pb-step__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(30, 140, 140, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--pb-teal);
}
.pb-step__title { margin-bottom: 8px; }
.pb-step__body { margin: 0; }

/* --------------------------------------------------------------------------
   10. Guide
   -------------------------------------------------------------------------- */
.pb-guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 18px;
}
.pb-guide-card {
  background: var(--pb-paper);
  border-radius: var(--pb-radius-lg);
  padding: 26px;
  border: 1px solid rgba(10, 42, 42, 0.07);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pb-guide-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pb-guide-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(30, 140, 140, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pb-teal);
  flex-shrink: 0;
}
.pb-guide-card__cat {
  font-family: var(--pb-font-head);
  font-size: 11px;
  font-weight: 500;
  color: var(--pb-teal);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.pb-guide-card__title {
  font-family: var(--pb-font-head);
  font-weight: 600;
  font-size: 18px;
  color: var(--pb-deep);
  margin: 2px 0 0;
  line-height: 1.25;
}
.pb-guide-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pb-guide-card__list li {
  font-family: var(--pb-font-body);
  font-size: 14px;
  color: rgba(10, 42, 42, 0.82);
  line-height: 1.5;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.pb-guide-card__list li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--pb-accent);
  margin-top: 8px;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   11. Packages
   -------------------------------------------------------------------------- */
.pb-pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 20px;
}
.pb-pkg {
  position: relative;
  background: var(--pb-cream);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(10, 42, 42, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.pb-pkg:hover {
  transform: translateY(-2px);
  box-shadow: var(--pb-shadow-card);
}
.pb-pkg--popular {
  border: 2px solid var(--pb-accent);
  box-shadow: 0 20px 40px -15px rgba(255, 138, 61, 0.28);
}
.pb-pkg__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  background: var(--pb-yellow);
  color: var(--pb-deep);
  font-family: var(--pb-font-head);
  font-weight: 600;
  font-size: 11px;
  padding: 5px 10px;
  border-radius: var(--pb-radius-pill);
  letter-spacing: 0.3px;
  box-shadow: 0 4px 10px rgba(10, 42, 42, 0.15);
}
.pb-pkg__photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: rgba(30, 140, 140, 0.1);
}
.pb-pkg__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.pb-pkg__sub {
  font-family: var(--pb-font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em; /* 10% — Butterick caps range */
  color: var(--pb-teal);
  text-transform: uppercase;
}
.pb-pkg__title {
  margin-top: 6px;
  margin-bottom: 4px;
}
.pb-pkg__meta {
  display: flex;
  gap: 14px;
  margin-top: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.pb-pkg__meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--pb-font-body);
  font-size: 13px;
  color: rgba(10, 42, 42, 0.72);
}
.pb-pkg__features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.pb-pkg__features li {
  font-family: var(--pb-font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--pb-ink-72);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.pb-pkg__features li::before {
  content: '→';
  color: var(--pb-teal);
  flex-shrink: 0;
  margin-top: 2px;
}
.pb-pkg__foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px dashed rgba(10, 42, 42, 0.12);
  gap: 10px;
}
.pb-pkg__price-lbl {
  font-family: var(--pb-font-body);
  font-size: 12px;
  color: var(--pb-ink-55);
}
.pb-pkg__price {
  font-family: var(--pb-font-num);
  font-weight: 700;
  font-size: 26px;
  line-height: 1;
  color: var(--pb-deep);
  font-variant-numeric: tabular-nums;
}
.pb-pkg__price small {
  font-size: 12px;
  font-weight: 500;
  color: var(--pb-ink-55);
  font-family: var(--pb-font-body);
}
.pb-pkg__quote {
  font-family: var(--pb-font-head);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.1;
  color: var(--pb-deep);
}

/* Verified chip */
.pb-verified {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(39, 174, 96, 0.1);
  color: #186c3c;
  border: 1px solid rgba(39, 174, 96, 0.35);
  padding: 4px 10px;
  border-radius: var(--pb-radius-pill);
  font-size: 11px;
  font-family: var(--pb-font-body);
  font-weight: 600;
  margin-bottom: 10px;
}

/* --------------------------------------------------------------------------
   12. Why-us
   -------------------------------------------------------------------------- */
.pb-why {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 2px;
  background: rgba(10, 79, 79, 0.12);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(10, 79, 79, 0.12);
}
.pb-why__cell {
  background: var(--pb-cream);
  padding: 28px;
  min-height: 200px;
}
.pb-why__num {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--pb-teal);
  color: var(--pb-cream);
  font-family: var(--pb-font-num);
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-variant-numeric: tabular-nums;
}
.pb-why__t { margin-bottom: 8px; }

/* --------------------------------------------------------------------------
   13. Testimonials
   -------------------------------------------------------------------------- */
.pb-reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 20px;
}
.pb-review {
  margin: 0;
  padding: 26px;
  background: var(--pb-cream);
  border-radius: var(--pb-radius-lg);
  border: 1px solid rgba(10, 42, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pb-review__quote {
  margin: 0;
  font-family: var(--pb-font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--pb-deep);
  flex: 1;
}
.pb-review__foot {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px dashed rgba(10, 42, 42, 0.12);
  padding-top: 14px;
}
.pb-review__avatar {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: repeating-linear-gradient(135deg, #e8ddc7 0 14px, #ddd0b4 14px 28px);
  flex-shrink: 0;
}
.pb-review__name {
  font-family: var(--pb-font-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--pb-deep);
}
.pb-review__trip {
  font-family: var(--pb-font-body);
  font-size: 12px;
  color: rgba(10, 42, 42, 0.6);
}
.pb-stars { display: flex; gap: 2px; }

/* --------------------------------------------------------------------------
   14. Company banner
   -------------------------------------------------------------------------- */
.pb-company-section { padding: 56px var(--pb-gutter); }
.pb-company {
  max-width: var(--pb-maxw);
  margin: 0 auto;
  background: var(--pb-deep);
  color: var(--pb-cream);
  border-radius: 24px;
  padding: 56px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.pb-company__ripple {
  position: absolute;
  right: -40px;
  bottom: -20px;
  width: 500px;
  opacity: 0.08;
  pointer-events: none;
}
.pb-company__inner { position: relative; z-index: 1; }
.pb-company__eyebrow {
  display: inline-block;
  font-family: var(--pb-font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em; /* 10% — Butterick caps range */
  color: var(--pb-yellow);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.pb-company__h2 { color: var(--pb-cream); margin: 0 0 14px; }
.pb-company__p {
  font-family: var(--pb-font-body);
  font-size: 15px;
  line-height: 1.7;
  color: rgba(245, 239, 228, 0.78);
  max-width: 520px;
  margin: 0;
}
.pb-company__ctas {
  display: flex;
  gap: 10px;
  margin-top: 26px;
  flex-wrap: wrap;
}
.pb-company-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  min-width: 260px;
  position: relative;
  z-index: 1;
}
.pb-stat {
  background: rgba(245, 239, 228, 0.08);
  border: 1px solid rgba(245, 239, 228, 0.12);
  border-radius: 14px;
  padding: 16px 14px;
}
.pb-stat__big {
  font-family: var(--pb-font-num);
  font-weight: 700;
  font-size: 26px;
  color: var(--pb-yellow);
  font-variant-numeric: tabular-nums;
}
.pb-stat__lbl {
  font-family: var(--pb-font-body);
  font-size: 12px;
  color: rgba(245, 239, 228, 0.75);
  margin-top: 2px;
}

/* --------------------------------------------------------------------------
   15. Safety
   -------------------------------------------------------------------------- */
.pb-safety {
  max-width: var(--pb-maxw);
  margin: 0 auto;
  padding: 0 var(--pb-gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.pb-safety__photo {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: 18px;
  background: rgba(30, 140, 140, 0.1);
}
.pb-safety__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 22px;
  padding: 0;
  list-style: none;
}

/* --------------------------------------------------------------------------
   16. FAQ
   -------------------------------------------------------------------------- */
.pb-faq {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 var(--pb-gutter);
}
.pb-faq__head { text-align: center; margin-bottom: 44px; }
.pb-faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pb-faq-item {
  background: var(--pb-cream);
  border: 1px solid rgba(10, 42, 42, 0.08);
  border-radius: var(--pb-radius-md);
  overflow: hidden;
  transition: box-shadow .2s ease;
}
.pb-faq-item.is-open { box-shadow: 0 10px 28px -12px rgba(10, 42, 42, 0.12); }
.pb-faq-item__btn {
  width: 100%;
  min-height: 56px;
  background: transparent;
  border: none;
  padding: 18px 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  gap: 16px;
  font-family: var(--pb-font-head);
  font-weight: 500;
  font-size: 16px;
  color: var(--pb-deep);
  line-height: 1.4;
}
.pb-faq-item__plus {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(30, 140, 140, 0.12);
  color: var(--pb-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease, background .2s ease, color .2s ease;
  font-size: 20px;
  font-weight: 300;
}
.pb-faq-item.is-open .pb-faq-item__plus {
  background: var(--pb-teal);
  color: var(--pb-cream);
  transform: rotate(45deg);
}
.pb-faq-item__panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height .25s ease;
}
.pb-faq-item.is-open .pb-faq-item__panel { max-height: 500px; }
.pb-faq-item__panel-inner {
  padding: 0 22px 22px;
  font-family: var(--pb-font-body);
  font-size: 15px;
  line-height: 1.75;
  color: rgba(10, 42, 42, 0.78);
}

/* --------------------------------------------------------------------------
   17. Blog
   -------------------------------------------------------------------------- */
.pb-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 20px;
}
.pb-blog-card {
  background: var(--pb-cream);
  border-radius: var(--pb-radius-lg);
  padding: 0;
  border: 1px solid rgba(10, 42, 42, 0.06);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.pb-blog-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--pb-shadow-card);
}
.pb-blog-card__cover {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: rgba(30, 140, 140, 0.1);
  border-bottom: 1px solid rgba(10, 42, 42, 0.05);
}
.pb-blog-card__body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.pb-blog-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.pb-blog-card__cat {
  font-family: var(--pb-font-head);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.pb-blog-card__cat--teal  { color: var(--pb-teal); }
.pb-blog-card__cat--coral { color: #C74A3E; }
.pb-blog-card__cat--yellow { color: #9A6A00; }
.pb-blog-card__read {
  font-family: var(--pb-font-body);
  font-size: 12px;
  color: var(--pb-ink-55);
}
.pb-blog-card__title {
  font-family: var(--pb-font-head);
  font-weight: 600;
  font-size: 18px;
  color: var(--pb-deep);
  margin: 0;
  line-height: 1.3;
}
.pb-blog-card__excerpt {
  font-family: var(--pb-font-body);
  font-size: 14px;
  line-height: 1.6;
  color: rgba(10, 42, 42, 0.7);
  margin: 0;
  flex: 1;
}
.pb-blog-card__more {
  font-family: var(--pb-font-head);
  font-size: 13px;
  font-weight: 500;
  color: var(--pb-teal);
  margin-top: 4px;
}

.pb-blog-all { text-align: center; margin-top: 36px; }

/* --------------------------------------------------------------------------
   18. Footer
   -------------------------------------------------------------------------- */
.pb-footer {
  background: var(--pb-deep);
  color: rgba(245, 239, 228, 0.78);
  padding: 64px var(--pb-gutter) 32px;
}
.pb-footer__grid {
  max-width: var(--pb-maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
.pb-footer__about-p {
  font-family: var(--pb-font-body);
  font-size: 13px;
  line-height: 1.7;
  margin: 20px 0 0;
  max-width: 340px;
}
.pb-footer__socials {
  display: flex;
  gap: 8px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.pb-footer__socials a {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 10px;
  border-radius: 50%;
  background: rgba(245, 239, 228, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pb-cream);
  text-decoration: none;
  transition: background .2s ease;
}
.pb-footer__socials a:hover { background: rgba(245, 239, 228, 0.18); }
.pb-footer__col-title {
  font-family: var(--pb-font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em; /* 10% — Butterick caps range */
  color: var(--pb-yellow);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.pb-footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pb-footer__col a {
  color: rgba(245, 239, 228, 0.78);
  text-decoration: none;
  font-family: var(--pb-font-body);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 4px 0;
}
.pb-footer__col a:hover { color: var(--pb-cream); }
.pb-footer__bottom {
  max-width: var(--pb-maxw);
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(245, 239, 228, 0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--pb-font-body);
  font-size: 12px;
  color: rgba(245, 239, 228, 0.55);
}
.pb-footer__bottom a { color: inherit; text-decoration: none; }
.pb-footer__bottom a:hover { color: var(--pb-cream); }

/* --------------------------------------------------------------------------
   19. Floating LINE button + mobile CTA bar
   -------------------------------------------------------------------------- */
.pb-line-fab {
  position: fixed;
  right: 22px;
  bottom: 92px;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: var(--pb-line);
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 28px -8px rgba(6, 199, 85, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 30;
  animation: pb-pulse 2.4s ease-out infinite;
  text-decoration: none;
}
@keyframes pb-pulse {
  0%   { box-shadow: 0 12px 28px -8px rgba(6,199,85,0.5), 0 0 0 0   rgba(6,199,85,0.45); }
  70%  { box-shadow: 0 12px 28px -8px rgba(6,199,85,0.5), 0 0 0 18px rgba(6,199,85,0); }
  100% { box-shadow: 0 12px 28px -8px rgba(6,199,85,0.5), 0 0 0 0   rgba(6,199,85,0); }
}

.pb-mobile-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  background: rgba(245, 239, 228, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--pb-ink-border);
  box-shadow: 0 -8px 20px rgba(10, 42, 42, 0.08);
  gap: 10px;
  z-index: 30;
  align-items: center;
}
.pb-mobile-cta__call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 14px;
  background: rgba(10, 79, 79, 0.08);
  color: var(--pb-deep);
  text-decoration: none;
  flex-shrink: 0;
}
.pb-mobile-cta .pb-btn {
  min-height: 52px;
}

/* --------------------------------------------------------------------------
   20. Booking drawer
   -------------------------------------------------------------------------- */
.pb-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(520px, 100vw);
  background: var(--pb-cream);
  box-shadow: -20px 0 60px -20px rgba(10, 42, 42, 0.3);
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.2, .8, .2, 1);
  z-index: 120;
  display: flex;
  flex-direction: column;
}
.pb-drawer.is-open { transform: translateX(0); }
.pb-drawer__handle { display: none; }
.pb-drawer__head {
  padding: 20px 24px;
  border-bottom: 1px solid var(--pb-ink-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.pb-drawer__step-lbl {
  font-family: var(--pb-font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em; /* 10% — Butterick caps range */
  color: var(--pb-teal);
  text-transform: uppercase;
}
.pb-drawer__title {
  font-family: var(--pb-font-head);
  font-size: 20px;
  font-weight: 600;
  color: var(--pb-deep);
  margin-top: 2px;
}
.pb-drawer__close {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 999px;
  background: rgba(10, 42, 42, 0.06);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--pb-deep);
  font-size: 24px;
  line-height: 1;
}
.pb-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  padding-bottom: max(24px, env(safe-area-inset-bottom));
}
.pb-drawer__step {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.pb-drawer__step[hidden] { display: none; }

.pb-label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--pb-font-head);
  font-size: 14px;
  font-weight: 500;
  color: var(--pb-deep);
}
.pb-input,
.pb-textarea {
  padding: 12px 14px;
  background: var(--pb-cream);
  border: 1.5px solid rgba(10, 42, 42, 0.12);
  border-radius: 10px;
  font-family: var(--pb-font-body);
  font-size: 16px;
  min-height: 44px;
  color: var(--pb-deep);
  outline: none;
  width: 100%;
}
.pb-input:focus,
.pb-textarea:focus { border-color: var(--pb-teal); }
.pb-textarea { resize: vertical; min-height: 88px; }

.pb-pkg-options { display: grid; grid-template-columns: 1fr; gap: 8px; }
.pb-pkg-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  min-height: 56px;
  background: var(--pb-cream);
  border: 1.5px solid rgba(10, 42, 42, 0.1);
  border-radius: 12px;
  cursor: pointer;
  transition: all .15s;
}
.pb-pkg-option.is-selected {
  background: rgba(30, 140, 140, 0.08);
  border-color: var(--pb-teal);
}
.pb-pkg-option input[type="radio"] { accent-color: var(--pb-teal); width: 20px; height: 20px; }
.pb-pkg-option__t {
  font-family: var(--pb-font-head);
  font-weight: 500;
  font-size: 15px;
  color: var(--pb-deep);
}
.pb-pkg-option__p {
  font-family: var(--pb-font-body);
  font-size: 12px;
  color: rgba(10, 42, 42, 0.6);
}

.pb-stepper {
  display: inline-flex;
  align-items: center;
  background: var(--pb-cream);
  border: 1.5px solid rgba(10, 42, 42, 0.12);
  border-radius: 999px;
  overflow: hidden;
}
.pb-stepper__btn {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border: none;
  background: transparent;
  font-size: 22px;
  color: var(--pb-deep);
  cursor: pointer;
  font-family: var(--pb-font-head);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pb-stepper__val {
  width: 52px;
  text-align: center;
  font-family: var(--pb-font-num);
  font-weight: 700;
  font-size: 17px;
  color: var(--pb-deep);
  font-variant-numeric: tabular-nums;
}
.pb-stepper-wrap { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.pb-stepper-hint {
  flex: 1;
  min-width: 140px;
  font-family: var(--pb-font-body);
  font-size: 13px;
  color: rgba(10, 42, 42, 0.6);
}
.pb-stepper-hint b {
  font-family: var(--pb-font-num);
  color: var(--pb-deep);
  font-size: 16px;
  font-variant-numeric: tabular-nums;
}

.pb-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-family: var(--pb-font-body);
  font-size: 14px;
  color: rgba(10, 42, 42, 0.78);
  line-height: 1.55;
  padding: 14px;
  background: rgba(30, 140, 140, 0.06);
  border-radius: 10px;
  cursor: pointer;
  min-height: 56px;
}
.pb-consent input {
  accent-color: var(--pb-teal);
  margin-top: 2px;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  min-width: 22px;
}

.pb-drawer__actions {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.pb-err {
  font-family: var(--pb-font-body);
  color: #b33b2c;
  font-size: 14px;
  padding: 10px 14px;
  background: rgba(232, 93, 78, 0.08);
  border-radius: 8px;
}
.pb-err[hidden] { display: none; }

.pb-success { text-align: center; padding: 40px 20px; }
.pb-success__icon {
  width: 80px;
  height: 80px;
  border-radius: 999px;
  background: rgba(39, 174, 96, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--pb-verified);
}
.pb-success__summary {
  background: var(--pb-cream);
  border: 1px dashed rgba(10, 79, 79, 0.2);
  border-radius: 14px;
  padding: 18px;
  text-align: left;
  font-family: var(--pb-font-body);
  font-size: 14px;
  color: var(--pb-deep);
  margin-top: 10px;
}
.pb-success__summary div { margin-bottom: 6px; }
.pb-success__summary small {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  color: rgba(10, 42, 42, 0.6);
}

/* --------------------------------------------------------------------------
   21. Blog index page
   -------------------------------------------------------------------------- */
.pb-blog-page { padding: 64px 0; }
.pb-blog-page .pb-container { max-width: var(--pb-maxw); }
.pb-blog-hero {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.pb-blog-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--pb-font-head);
  font-size: 14px;
  color: var(--pb-teal);
  text-decoration: none;
  margin-bottom: 18px;
  padding: 8px 4px;
  min-height: 44px;
}

/* --------------------------------------------------------------------------
   22. Responsive — tablet (≤ 960px)
   -------------------------------------------------------------------------- */
@media (max-width: 960px) {
  .pb-nav__links { display: none; }
  .pb-hamburger { display: inline-flex; }
  .pb-hero__grid { grid-template-columns: 1fr; gap: 32px; padding-inline: 20px; }
  .pb-hero__photo { width: 100%; max-width: 100%; min-height: 0; aspect-ratio: 16 / 10; }
  .pb-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .pb-safety { grid-template-columns: 1fr; gap: 32px; }
  .pb-company { grid-template-columns: 1fr; padding: 40px 28px; }
  .pb-section { padding: 64px 0; }
  .pb-section--tight { padding: 56px 0; }
}

/* --------------------------------------------------------------------------
   23. Responsive — mobile (≤ 720px)
   -------------------------------------------------------------------------- */
@media (max-width: 720px) {
  :root { --pb-gutter: 20px; }
  body {
    padding-bottom: calc(84px + env(safe-area-inset-bottom));
  }
  .pb-hero { padding: 16px 0 48px; }
  .pb-hero__grid { padding-inline: 20px; }
  .pb-hero__title { line-height: 1.2; }
  .pb-hero__cta-row { gap: 10px; }
  .pb-hero__cta-row > .pb-btn,
  .pb-hero__cta-row > .pb-price-badge { flex: 1 1 auto; }
  .pb-blog-card__cover { aspect-ratio: 4 / 3; }
  .pb-footer { padding: 48px var(--pb-gutter) 28px; }
  .pb-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px 20px; }
  .pb-footer__grid > :first-child { grid-column: 1 / -1; }
  .pb-company-stats { grid-template-columns: 1fr 1fr; }
  .pb-section { padding: 48px 0; }
  .pb-section--tight { padding: 40px 0; }
  .pb-section-head { margin-bottom: 28px; }
  .pb-company { padding: 36px 24px; border-radius: 20px; }
  .pb-company__ripple { width: 350px; }
  .pb-mobile-cta { display: flex; }
  .pb-line-fab { bottom: calc(88px + env(safe-area-inset-bottom)); right: 16px; }
  .pb-footer__bottom { flex-direction: column; }
  .pb-logo__word { font-size: 16px; }
  .pb-logo__sub { display: none; }
  .pb-nav__bar { padding: 8px var(--pb-gutter); min-height: 56px; }

  /* Booking drawer becomes a bottom sheet on mobile. */
  .pb-drawer {
    top: auto;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100vw;
    max-height: 92vh;
    border-radius: 20px 20px 0 0;
    transform: translateY(100%);
    box-shadow: 0 -20px 60px -20px rgba(10, 42, 42, 0.35);
  }
  .pb-drawer.is-open { transform: translateY(0); }
  .pb-drawer__handle {
    display: block;
    width: 44px;
    height: 5px;
    border-radius: 999px;
    background: rgba(10, 42, 42, 0.2);
    margin: 10px auto 4px;
    flex-shrink: 0;
  }
  .pb-drawer__head {
    padding: 8px 20px 16px;
  }
  .pb-drawer__body {
    padding: 20px 20px max(24px, env(safe-area-inset-bottom));
  }
}

/* --------------------------------------------------------------------------
   24. Responsive — small phones (≤ 400px)
   -------------------------------------------------------------------------- */
@media (max-width: 400px) {
  .pb-company-stats { grid-template-columns: 1fr; }
}

@media (max-width: 380px) {
  .pb-hero__trust { grid-template-columns: 1fr; }
  .pb-price-badge__num { font-size: 24px; }
  .pb-hero__cta-row { flex-direction: column; align-items: stretch; }
  .pb-hero__cta-row > * { width: 100%; justify-content: center; }
}

/* --------------------------------------------------------------------------
   25. Desktop lock-in (≥ 1024px)
   Lock 3-col layouts on real desktops so they don't re-flow.
   -------------------------------------------------------------------------- */
@media (min-width: 1024px) {
  .pb-nav__bar { min-height: 64px; padding: 14px var(--pb-gutter); }
  .pb-section { padding: 88px 0; }
  .pb-section--tight { padding: 72px 0; }
  .pb-steps { grid-template-columns: repeat(3, 1fr); }
  .pb-guide-grid { grid-template-columns: repeat(3, 1fr); }
  .pb-pkg-grid { grid-template-columns: repeat(3, 1fr); }
  .pb-blog-grid { grid-template-columns: repeat(3, 1fr); }
  .pb-why { grid-template-columns: repeat(4, 1fr); }
  .pb-reviews { grid-template-columns: repeat(3, 1fr); }
}

/* --------------------------------------------------------------------------
   26. Large-monitor polish (≥ 1440px)
   Very subtle scale-up for big displays.
   -------------------------------------------------------------------------- */
@media (min-width: 1440px) {
  :root {
    --pb-gutter: 32px;
  }
  body { font-size: 17px; }
  .pb-body { font-size: 17px; }
  .pb-hero__sub { font-size: 18px; }
}

/* --------------------------------------------------------------------------
   27. Reduced motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
