/*
 * Pen A Story Landing Page Styles
 * Version: 1.0.0
 * Only loaded on the custom landing page.
 */

/* ──────────────────────────────────────────
   1. CSS CUSTOM PROPERTIES
─────────────────────────────────────────── */
:root {
  --pas-plum:        #32123E;
  --pas-purple:      #6E32B5;
  --pas-pink:        #E94B9A;
  --pas-cream:       #FFF9F2;
  --pas-ivory:       #FFFDF9;
  --pas-gold:        #E8B55A;
  --pas-green:       #4CAF89;
  --pas-text:        #291A2E;
  --pas-muted:       #6E6371;
  --pas-border:      rgba(110,50,181,0.12);
  --pas-shadow-sm:   0 2px 12px rgba(50,18,62,0.08);
  --pas-shadow-md:   0 8px 32px rgba(50,18,62,0.12);
  --pas-shadow-lg:   0 20px 60px rgba(50,18,62,0.18);
  --pas-radius:      14px;
  --pas-radius-sm:   8px;
  --pas-radius-pill: 100px;
  --pas-gradient:    linear-gradient(135deg, var(--pas-purple) 0%, var(--pas-pink) 100%);
  --pas-gradient-soft: linear-gradient(135deg, rgba(110,50,181,0.08) 0%, rgba(233,75,154,0.08) 100%);
  --pas-transition:  all 0.25s ease;
  --pas-header-h:    72px;
  --pas-font-serif:  'Playfair Display', Georgia, 'Times New Roman', serif;
  --pas-font-sans:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ──────────────────────────────────────────
   2. RESET / BASE
─────────────────────────────────────────── */
.pas-landing-body {
  margin: 0;
  padding: 0;
  font-family: var(--pas-font-sans);
  color: var(--pas-text);
  background: var(--pas-ivory);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.pas-landing-page *,
.pas-landing-page *::before,
.pas-landing-page *::after {
  box-sizing: border-box;
}

.pas-landing-page img {
  max-width: 100%;
  height: auto;
  display: block;
}

.pas-landing-page a {
  color: var(--pas-purple);
  text-decoration: none;
  transition: var(--pas-transition);
}

.pas-landing-page a:hover { color: var(--pas-pink); }

.pas-landing-page ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pas-landing-page h1,
.pas-landing-page h2,
.pas-landing-page h3 {
  margin: 0;
  line-height: 1.2;
}

.pas-landing-page p { margin: 0; }

/* Screen-reader only */
.screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px,1px,1px,1px) !important;
  white-space: nowrap !important;
}

/* ──────────────────────────────────────────
   3. LAYOUT UTILITIES
─────────────────────────────────────────── */
.pas-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.pas-section-header {
  text-align: center;
  margin-bottom: 48px;
}

.pas-section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  text-align: left;
  gap: 16px;
}

.pas-section-title {
  font-family: var(--pas-font-serif);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  color: var(--pas-plum);
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.pas-section-underline {
  display: inline-block;
  width: 56px;
  height: 4px;
  background: var(--pas-gradient);
  border-radius: 2px;
  margin: 0 auto;
}

.pas-section-header-row .pas-section-underline { margin: 0; }

.pas-gradient-text {
  font-style: italic;
  background: var(--pas-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pas-view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--pas-purple);
  white-space: nowrap;
  margin-bottom: 4px;
}

.pas-view-all-link:hover { color: var(--pas-pink); gap: 10px; }

.pas-link-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;
  color: var(--pas-purple);
}

.pas-link-cta:hover { gap: 10px; }

/* ──────────────────────────────────────────
   4. BUTTONS
─────────────────────────────────────────── */
.pas-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--pas-radius-pill);
  font-family: var(--pas-font-sans);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--pas-transition);
  text-decoration: none;
  border: none;
  line-height: 1;
  white-space: nowrap;
}

.pas-btn:focus-visible {
  outline: 3px solid var(--pas-pink);
  outline-offset: 3px;
}

.pas-btn-primary {
  background: var(--pas-gradient);
  color: #fff;
  box-shadow: 0 4px 20px rgba(233,75,154,0.35);
}
.pas-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(233,75,154,0.45);
  color: #fff;
}

.pas-btn-secondary {
  background: transparent;
  color: var(--pas-plum);
  border: 2px solid var(--pas-border);
}
.pas-btn-secondary:hover {
  border-color: var(--pas-purple);
  color: var(--pas-purple);
  background: rgba(110,50,181,0.04);
}

.pas-btn-cart {
  background: var(--pas-gradient);
  color: #fff;
  font-size: 13px;
  padding: 10px 18px;
  width: 100%;
  box-shadow: 0 2px 12px rgba(233,75,154,0.25);
}
.pas-btn-cart:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(233,75,154,0.4);
  color: #fff;
}

.pas-btn-lg { padding: 15px 32px; font-size: 16px; }

.pas-btn-light {
  background: #fff;
  color: var(--pas-plum);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.pas-btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
  color: var(--pas-purple);
}

.pas-btn-outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
}
.pas-btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  color: #fff;
}

/* ──────────────────────────────────────────
   5. HEADER
─────────────────────────────────────────── */
.pas-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,253,249,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--pas-border);
  height: var(--pas-header-h);
  transition: box-shadow 0.3s ease;
}

.pas-header.pas-header-scrolled {
  box-shadow: var(--pas-shadow-md);
}

.pas-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--pas-header-h);
  gap: 20px;
}

.pas-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.pas-logo img { height: 40px; width: auto; }

.pas-logo-text {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--pas-font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--pas-plum);
}

.pas-nav { flex: 1; }

.pas-nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap;
}

.pas-nav-link {
  display: block;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--pas-text);
  border-radius: var(--pas-radius-sm);
  white-space: nowrap;
}

.pas-nav-link:hover,
.pas-nav-link.pas-nav-active {
  color: var(--pas-purple);
  background: rgba(110,50,181,0.07);
}

.pas-nav-link.pas-nav-active {
  border-bottom: 2px solid var(--pas-pink);
  border-radius: 0;
  background: none;
}

.pas-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.pas-cart-icon {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--pas-text);
  padding: 6px;
}
.pas-cart-icon:hover { color: var(--pas-purple); }

.pas-cart-count {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--pas-pink);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(4px, -4px);
}

.pas-cart-count:empty { display: none; }

.pas-download-btn { font-size: 13px; padding: 10px 18px; }

.pas-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--pas-radius-sm);
}
.pas-hamburger:focus-visible { outline: 3px solid var(--pas-pink); }

.pas-hamburger-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--pas-plum);
  border-radius: 2px;
  transition: var(--pas-transition);
}

/* Mobile nav open states */
.pas-hamburger[aria-expanded="true"] .pas-hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.pas-hamburger[aria-expanded="true"] .pas-hamburger-bar:nth-child(2) {
  opacity: 0;
}
.pas-hamburger[aria-expanded="true"] .pas-hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Drawer */
.pas-mobile-nav {
  position: fixed;
  top: var(--pas-header-h);
  right: 0;
  bottom: 0;
  width: min(320px, 88vw);
  background: #fff;
  box-shadow: -4px 0 32px rgba(50,18,62,0.2);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 999;
  overflow-y: auto;
  padding: 24px 0;
}

.pas-mobile-nav.pas-mobile-nav-open {
  transform: translateX(0);
}

.pas-mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pas-mobile-nav-link {
  display: block;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 500;
  color: var(--pas-text);
  border-bottom: 1px solid var(--pas-border);
}
.pas-mobile-nav-link:hover { color: var(--pas-purple); background: var(--pas-gradient-soft); }

.pas-mobile-cta {
  padding: 24px;
  border-top: 1px solid var(--pas-border);
  margin-top: 8px;
}

.pas-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(50,18,62,0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.pas-mobile-overlay.pas-overlay-active {
  opacity: 1;
  visibility: visible;
}

/* ──────────────────────────────────────────
   6. HERO SECTION
─────────────────────────────────────────── */
.pas-hero {
  position: relative;
  background: var(--pas-cream);
  padding: 80px 0 100px;
  overflow: hidden;
}

.pas-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.pas-hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.pas-hero-blob-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(110,50,181,0.15) 0%, transparent 70%);
  top: -200px; right: -100px;
}
.pas-hero-blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(233,75,154,0.12) 0%, transparent 70%);
  bottom: -100px; left: -50px;
}

.pas-hero-orb-1 {
  position: absolute;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(232,181,90,0.15);
  top: 20%; left: 45%;
  filter: blur(20px);
}

.pas-hero-arch-art {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
}

.pas-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

/* Hero eyebrow */
.pas-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(110,50,181,0.1), rgba(233,75,154,0.1));
  border: 1px solid rgba(110,50,181,0.2);
  color: var(--pas-purple);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: var(--pas-radius-pill);
  margin-bottom: 20px;
}

.pas-hero-headline {
  font-family: var(--pas-font-serif);
  font-size: clamp(36px, 5.5vw, 60px);
  font-weight: 800;
  color: var(--pas-plum);
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.pas-hero-description {
  font-size: 17px;
  color: var(--pas-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}

.pas-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

/* Store badges */
.pas-store-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pas-store-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pas-plum);
  color: #fff;
  padding: 9px 16px;
  border-radius: 10px;
  font-size: 13px;
  text-decoration: none;
  transition: var(--pas-transition);
}
.pas-store-badge:hover {
  background: var(--pas-purple);
  transform: translateY(-2px);
  color: #fff;
}
.pas-store-badge span {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.pas-store-badge small { font-size: 10px; opacity: 0.8; }
.pas-store-badge strong { font-size: 13px; }

/* ── Phone Mockup ── */
.pas-hero-visual {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.pas-phone-mockup {
  position: relative;
  display: flex;
  justify-content: center;
}

.pas-phone-frame {
  width: 280px;
  background: #1A1A2E;
  border-radius: 44px;
  padding: 14px 10px;
  box-shadow:
    0 0 0 2px rgba(255,255,255,0.1),
    0 40px 80px rgba(50,18,62,0.5),
    inset 0 0 0 1px rgba(255,255,255,0.05);
  position: relative;
}

.pas-phone-notch {
  width: 80px;
  height: 10px;
  background: #1A1A2E;
  border-radius: 5px;
  margin: 0 auto 10px;
  position: relative;
  z-index: 1;
}
.pas-phone-notch::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: #2d2d48;
  border-radius: 50%;
}

.pas-phone-screen {
  background: #F8F4FC;
  border-radius: 32px;
  overflow: hidden;
  padding: 12px 10px 0;
  min-height: 420px;
}

.pas-app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.pas-app-logo-sm {
  font-family: var(--pas-font-serif);
  font-size: 12px;
  font-weight: 700;
  color: var(--pas-plum);
}

.pas-app-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.pas-app-section-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--pas-plum);
}
.pas-app-section-link {
  font-size: 9px;
  color: var(--pas-purple);
  cursor: pointer;
}

.pas-app-continue {
  display: flex;
  gap: 10px;
  background: #fff;
  border-radius: 10px;
  padding: 8px;
  margin-bottom: 14px;
  box-shadow: 0 2px 8px rgba(50,18,62,0.08);
}
.pas-app-continue-cover {
  width: 44px;
  height: 58px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}
.pas-app-continue-info { flex: 1; min-width: 0; }
.pas-app-book-title {
  font-size: 10px;
  font-weight: 600;
  color: var(--pas-plum);
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pas-app-progress-bar {
  height: 4px;
  background: rgba(110,50,181,0.15);
  border-radius: 2px;
  margin-bottom: 4px;
}
.pas-app-progress-fill {
  height: 100%;
  background: var(--pas-gradient);
  border-radius: 2px;
}
.pas-app-progress-pct { font-size: 9px; color: var(--pas-purple); }

.pas-app-book-row {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
  overflow: hidden;
}
.pas-app-mini-book {
  width: 52px;
  height: 68px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(110,50,181,0.1);
}
.pas-app-mini-book img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pas-app-mini-book-placeholder {
  background: linear-gradient(135deg, rgba(110,50,181,0.1), rgba(233,75,154,0.08));
}

.pas-app-bottom-nav {
  display: flex;
  align-items: center;
  justify-content: space-around;
  border-top: 1px solid rgba(110,50,181,0.12);
  padding: 10px 0 12px;
  background: #fff;
  margin: 0 -10px;
}
.pas-app-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 8px;
  color: var(--pas-muted);
}
.pas-app-nav-item.pas-app-nav-active {
  color: var(--pas-purple);
}

/* Phone floating decorations */
.pas-phone-float {
  position: absolute;
  border-radius: 50%;
  animation: pas-float 3s ease-in-out infinite;
}
.pas-phone-float-1 { top: -20px; right: -20px; animation-delay: 0s; }
.pas-phone-float-2 { bottom: 60px; right: -30px; animation-delay: 1s; }
.pas-phone-float-3 { bottom: 140px; left: -25px; animation-delay: 0.5s; }

@keyframes pas-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (prefers-reduced-motion: reduce) {
  .pas-phone-float { animation: none; }
  .pas-final-book animate { display: none; }
}

/* ──────────────────────────────────────────
   7. TRUST STRIP
─────────────────────────────────────────── */
.pas-trust-strip {
  position: relative;
  z-index: 2;
  margin: -36px 0 0;
  padding: 0 0 60px;
}

.pas-trust-grid {
  background: #fff;
  border-radius: var(--pas-radius);
  box-shadow: var(--pas-shadow-lg);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 28px 32px;
  gap: 20px;
  border: 1px solid rgba(255,255,255,0.9);
}

.pas-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.pas-trust-item + .pas-trust-item {
  border-left: 1px solid var(--pas-border);
  padding-left: 20px;
}

.pas-trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pas-trust-blue  { background: rgba(59,130,246,0.1); color: #3b82f6; }
.pas-trust-pink  { background: rgba(233,75,154,0.1); color: var(--pas-pink); }
.pas-trust-purple{ background: rgba(110,50,181,0.1); color: var(--pas-purple); }
.pas-trust-gold  { background: rgba(232,181,90,0.15); color: var(--pas-gold); }

.pas-trust-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pas-trust-value {
  font-family: var(--pas-font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--pas-plum);
  line-height: 1.1;
}
.pas-trust-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--pas-text);
}
.pas-trust-sub {
  font-size: 12px;
  color: var(--pas-muted);
}

/* ──────────────────────────────────────────
   8. HOW IT WORKS
─────────────────────────────────────────── */
.pas-process {
  padding: 20px 0 80px;
  background: var(--pas-ivory);
}

.pas-process-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.pas-process-step {
  flex: 1;
  text-align: center;
  padding: 0 20px;
  max-width: 220px;
}

.pas-process-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  position: relative;
}

.pas-process-num {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 24px;
  height: 24px;
  background: var(--pas-gradient);
  color: #fff;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--pas-ivory);
}

.pas-process-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--pas-plum);
  margin-bottom: 8px;
}

.pas-process-desc {
  font-size: 13px;
  color: var(--pas-muted);
  line-height: 1.6;
}

.pas-process-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 38px;
  flex-shrink: 0;
}

/* ──────────────────────────────────────────
   9. BESTSELLING EBOOKS
─────────────────────────────────────────── */
.pas-products {
  padding: 20px 0 80px;
  background: var(--pas-cream);
}

.pas-products-slider {
  overflow: hidden;
}

.pas-products-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

/* Product Card */
.pas-product-card {
  background: #fff;
  border-radius: var(--pas-radius);
  overflow: hidden;
  box-shadow: var(--pas-shadow-sm);
  transition: var(--pas-transition);
  display: flex;
  flex-direction: column;
}

.pas-product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--pas-shadow-md);
}

.pas-product-image-link { display: block; }

.pas-product-image-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.pas-product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.pas-product-card:hover .pas-product-image-wrap img {
  transform: scale(1.05);
}

.pas-product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(50,18,62,0);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 10px;
  transition: var(--pas-transition);
}
.pas-product-card:hover .pas-product-overlay {
  background: rgba(50,18,62,0.06);
}

.pas-quick-view-icon {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pas-purple);
  opacity: 0;
  transition: var(--pas-transition);
  transform: scale(0.8);
}
.pas-product-card:hover .pas-quick-view-icon {
  opacity: 1;
  transform: scale(1);
}

.pas-product-info {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.pas-product-cat {
  font-size: 11px;
  font-weight: 600;
  color: var(--pas-purple);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pas-product-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--pas-plum);
  line-height: 1.4;
  margin: 0;
}
.pas-product-title a { color: var(--pas-plum); }
.pas-product-title a:hover { color: var(--pas-purple); }

.pas-product-rating {
  display: flex;
  align-items: center;
  gap: 3px;
}
.pas-star { font-size: 12px; line-height: 1; }
.pas-star-full  { color: var(--pas-gold); }
.pas-star-half  { color: var(--pas-gold); }
.pas-star-empty { color: #ddd; }
.pas-review-count { font-size: 11px; color: var(--pas-muted); margin-left: 3px; }

.pas-product-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--pas-purple);
}
.pas-product-price .woocommerce-Price-amount { font-weight: 700; }
.pas-product-price del { color: var(--pas-muted); font-size: 12px; font-weight: 400; margin-left: 4px; }
.pas-product-price ins { text-decoration: none; }

.pas-product-actions {
  margin-top: auto;
  padding-top: 8px;
}

.pas-out-of-stock {
  display: block;
  text-align: center;
  font-size: 13px;
  color: var(--pas-muted);
  padding: 8px 0;
}

.pas-slider-dots {
  display: none;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
}

.pas-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(110,50,181,0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: var(--pas-transition);
}
.pas-slider-dot-active {
  background: var(--pas-purple);
  width: 20px;
  border-radius: 4px;
}

.pas-products-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--pas-muted);
}

/* ──────────────────────────────────────────
   10. EXPLORE BY CATEGORIES
─────────────────────────────────────────── */
.pas-categories {
  padding: 20px 0 80px;
  background: var(--pas-ivory);
}

.pas-categories-slider { overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.pas-categories-slider::-webkit-scrollbar { display: none; }

.pas-categories-track {
  display: flex;
  gap: 16px;
  padding-bottom: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.pas-cat-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 16px 16px;
  background: #fff;
  border-radius: var(--pas-radius);
  border: 1px solid var(--pas-border);
  min-width: 110px;
  transition: var(--pas-transition);
  text-decoration: none;
  text-align: center;
  cursor: pointer;
}
.pas-cat-tile:hover {
  border-color: var(--pas-purple);
  box-shadow: var(--pas-shadow-md);
  transform: translateY(-4px);
  background: rgba(110,50,181,0.02);
}

.pas-cat-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pas-cat-icon svg { width: 100%; height: 100%; }

.pas-cat-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--pas-plum);
}
.pas-cat-count {
  font-size: 11px;
  color: var(--pas-muted);
}

.pas-cat-tile-more .pas-cat-name { color: var(--pas-purple); }

/* ──────────────────────────────────────────
   11. APP SECTION
─────────────────────────────────────────── */
.pas-app-section {
  padding: 80px 0;
  background: linear-gradient(160deg, #FFF9F2 0%, rgba(110,50,181,0.04) 100%);
}

.pas-app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

/* Library Phone */
.pas-app-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.pas-lib-phone { position: relative; }

.pas-lib-phone-frame {
  width: 260px;
  background: #1A1A2E;
  border-radius: 40px;
  padding: 14px 10px;
  box-shadow:
    0 0 0 2px rgba(255,255,255,0.1),
    0 40px 80px rgba(50,18,62,0.45),
    inset 0 0 0 1px rgba(255,255,255,0.05);
}

.pas-lib-screen {
  background: #f4eeff;
  border-radius: 28px;
  overflow: hidden;
  padding: 14px 10px 0;
}

.pas-lib-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.pas-lib-title {
  font-family: var(--pas-font-serif);
  font-size: 14px;
  font-weight: 700;
  color: var(--pas-plum);
}
.pas-lib-tabs { display: flex; gap: 6px; }
.pas-lib-tab {
  font-size: 10px;
  padding: 3px 10px;
  border: 1px solid rgba(110,50,181,0.2);
  border-radius: 20px;
  background: none;
  cursor: pointer;
  color: var(--pas-muted);
}
.pas-lib-tab.pas-lib-tab-active {
  background: var(--pas-gradient);
  color: #fff;
  border-color: transparent;
}

.pas-lib-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}
.pas-lib-book {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pas-lib-book img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 6px;
}
.pas-lib-book-title {
  font-size: 9px;
  color: var(--pas-plum);
  text-align: center;
  line-height: 1.3;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.pas-lib-book-placeholder {
  background: rgba(110,50,181,0.08);
  aspect-ratio: 3/4;
  border-radius: 6px;
}

.pas-lib-bottom-nav {
  display: flex;
  justify-content: space-around;
  padding: 10px 0 12px;
  border-top: 1px solid rgba(110,50,181,0.12);
  background: #fff;
  margin: 0 -10px;
}
.pas-lib-nav-item {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pas-muted);
  width: 40px;
  height: 30px;
}
.pas-lib-nav-item.pas-lib-nav-active { color: var(--pas-purple); }

.pas-lib-book-stack {
  position: absolute;
  bottom: -20px;
  left: -60px;
  opacity: 0.7;
}

/* App content */
.pas-app-eyebrow { display: inline-flex; margin-bottom: 16px; }

.pas-app-title {
  text-align: left;
  margin-bottom: 28px;
}

.pas-app-benefits {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.pas-app-benefit {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.pas-app-benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pas-app-benefit strong {
  display: block;
  font-size: 15px;
  color: var(--pas-plum);
  margin-bottom: 4px;
}
.pas-app-benefit p {
  font-size: 13px;
  color: var(--pas-muted);
  line-height: 1.6;
}

.pas-app-download-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pas-store-badge-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--pas-plum);
  color: #fff;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 13px;
  text-decoration: none;
  transition: var(--pas-transition);
}
.pas-store-badge-dark:hover {
  background: var(--pas-purple);
  transform: translateY(-2px);
  color: #fff;
  box-shadow: var(--pas-shadow-md);
}
.pas-store-badge-dark span {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.pas-store-badge-dark small { font-size: 10px; opacity: 0.75; }
.pas-store-badge-dark strong { font-size: 14px; }

/* ──────────────────────────────────────────
   12. PUBLISH SECTION
─────────────────────────────────────────── */
.pas-publish {
  padding: 80px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.pas-publish-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.pas-publish-lines {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    transparent,
    transparent 30px,
    rgba(232,181,90,0.06) 30px,
    rgba(232,181,90,0.06) 31px
  );
}
.pas-publish-art {
  position: absolute;
  top: 0; right: 0;
  width: 60%;
  opacity: 0.5;
}

.pas-publish-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.pas-publish-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

/* Notebook */
.pas-notebook {
  width: 260px;
  background: #FFFBF0;
  border-radius: 4px 14px 14px 4px;
  box-shadow: 8px 8px 32px rgba(50,18,62,0.15), -2px 0 0 rgba(232,181,90,0.3);
  padding: 32px 28px;
  position: relative;
  border-left: 6px solid var(--pas-gold);
}

.pas-notebook-binding {
  position: absolute;
  left: -22px;
  top: 20px;
  bottom: 20px;
  width: 20px;
  background: var(--pas-gold);
  border-radius: 4px 0 0 4px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding: 12px 4px;
  gap: 0;
}
.pas-notebook-binding::before,
.pas-notebook-binding::after {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(50,18,62,0.3);
}

.pas-notebook-pages {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pas-notebook-line {
  height: 1px;
  background: rgba(232,181,90,0.35);
  border-radius: 1px;
}

.pas-notebook-handwriting {
  margin-top: 8px;
  padding-top: 4px;
}
.pas-notebook-quote {
  font-family: 'Segoe Script', 'Brush Script MT', cursive;
  font-size: 15px;
  color: var(--pas-plum);
  line-height: 1.8;
  opacity: 0.85;
}

.pas-publish-pen-icon {
  position: absolute;
  bottom: -10px;
  right: 20px;
  transform: rotate(-30deg);
  opacity: 0.7;
}

.pas-publish-eyebrow { margin-bottom: 16px; }

.pas-publish-title {
  text-align: left;
  margin-bottom: 16px;
  font-size: clamp(28px, 4vw, 42px);
}

.pas-publish-desc {
  font-size: 16px;
  color: var(--pas-muted);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 480px;
}

.pas-publish-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}

.pas-publish-benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--pas-plum);
}

.pas-publish-benefit-icon {
  width: 36px;
  height: 36px;
  background: rgba(110,50,181,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pas-purple);
  flex-shrink: 0;
}

.pas-publish-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ──────────────────────────────────────────
   13. BLOG SECTION
─────────────────────────────────────────── */
.pas-blog {
  padding: 20px 0 80px;
  background: var(--pas-cream);
}

.pas-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pas-blog-card {
  background: #fff;
  border-radius: var(--pas-radius);
  overflow: hidden;
  box-shadow: var(--pas-shadow-sm);
  transition: var(--pas-transition);
  display: flex;
  flex-direction: column;
}
.pas-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--pas-shadow-md);
}

.pas-blog-image-link { display: block; }
.pas-blog-image {
  aspect-ratio: 5/3;
  overflow: hidden;
}
.pas-blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.pas-blog-card:hover .pas-blog-image img { transform: scale(1.05); }

.pas-blog-image-placeholder {
  width: 100%;
  height: 100%;
  background: var(--pas-gradient-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pas-blog-info {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.pas-blog-cat {
  font-size: 11px;
  font-weight: 700;
  color: var(--pas-purple);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pas-blog-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--pas-plum);
  line-height: 1.4;
  margin: 0;
}
.pas-blog-title a { color: var(--pas-plum); }
.pas-blog-title a:hover { color: var(--pas-purple); }

.pas-blog-date {
  font-size: 12px;
  color: var(--pas-muted);
}

.pas-blog-excerpt {
  font-size: 13px;
  color: var(--pas-muted);
  line-height: 1.6;
}

.pas-blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--pas-purple);
  margin-top: auto;
  padding-top: 8px;
}
.pas-blog-read-more:hover { gap: 10px; }

/* ──────────────────────────────────────────
   14. FINAL CTA
─────────────────────────────────────────── */
.pas-final-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #32123E 0%, #6E32B5 45%, #E94B9A 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.pas-final-cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.pas-final-book {
  position: absolute;
  bottom: -40px;
  right: 5%;
  width: 300px;
  opacity: 0.15;
}

.pas-final-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}
.pas-final-shape-1 {
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.06);
  top: -200px; left: -100px;
}
.pas-final-shape-2 {
  width: 300px; height: 300px;
  background: rgba(232,181,90,0.1);
  bottom: -150px; right: 10%;
}

.pas-final-cta-inner {
  position: relative;
  z-index: 1;
}

.pas-final-cta-heading {
  font-family: var(--pas-font-serif);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.pas-final-cta-accent {
  display: block;
  color: var(--pas-gold);
}

.pas-final-cta-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
}

.pas-final-cta-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ──────────────────────────────────────────
   15. FOOTER
─────────────────────────────────────────── */
.pas-footer { background: var(--pas-plum); }

.pas-footer-top { padding: 64px 0 40px; }

.pas-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.4fr;
  gap: 40px;
}

.pas-footer-brand { max-width: 260px; }

.pas-footer-logo img { height: 38px; width: auto; filter: brightness(0) invert(1); opacity: 0.9; }

.pas-footer-logo-text {
  color: rgba(255,255,255,0.9);
}

.pas-footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-top: 14px;
  margin-bottom: 20px;
}

.pas-social-links {
  display: flex;
  gap: 10px;
}

.pas-social-link {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--pas-transition);
}
.pas-social-link:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
  transform: translateY(-2px);
}

.pas-footer-heading {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.pas-footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pas-footer-links li a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: var(--pas-transition);
}
.pas-footer-links li a:hover { color: #fff; padding-left: 4px; }

.pas-footer-newsletter-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 16px;
}

.pas-newsletter-input-row {
  display: flex;
  gap: 8px;
}

.pas-newsletter-input {
  flex: 1;
  padding: 10px 14px;
  border-radius: var(--pas-radius-pill);
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 13px;
  font-family: var(--pas-font-sans);
  outline: none;
  min-width: 0;
}
.pas-newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
.pas-newsletter-input:focus { border-color: rgba(233,75,154,0.6); background: rgba(255,255,255,0.12); }

.pas-newsletter-btn { font-size: 13px; padding: 10px 18px; flex-shrink: 0; }

.pas-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}

.pas-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.pas-footer-copyright,
.pas-footer-love,
.pas-footer-secure {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ──────────────────────────────────────────
   16. ADMIN SETTINGS PAGE
─────────────────────────────────────────── */
.pas-admin-wrap .pas-admin-page-links {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.pas-admin-tabs {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid #ddd;
  margin-bottom: 0;
  flex-wrap: wrap;
}
.pas-tab {
  padding: 8px 16px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 14px;
  color: #666;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
}
.pas-tab.active, .pas-tab:hover {
  color: var(--pas-purple, #6E32B5);
  border-bottom-color: var(--pas-purple, #6E32B5);
}
.pas-tab-content { display: none; padding-top: 20px; }
.pas-tab-content.active { display: block; }

/* ──────────────────────────────────────────
   17. SCROLL ANIMATIONS
─────────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  [data-animate] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  [data-animate="fade-left"] { transform: translateX(20px); }
  [data-animate].pas-animated {
    opacity: 1;
    transform: none;
  }
}

/* ──────────────────────────────────────────
   18. RESPONSIVE — TABLET  (max 1024px)
─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .pas-nav { display: none; }
  .pas-hamburger { display: flex; }
  .pas-download-btn { display: none; }

  .pas-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .pas-hero-description { margin: 0 auto 32px; }
  .pas-hero-actions { justify-content: center; }
  .pas-store-badges { justify-content: center; }
  .pas-hero-visual { justify-content: center; }

  .pas-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .pas-trust-item:nth-child(3) { border-left: none; }

  .pas-products-track { grid-template-columns: repeat(3, 1fr); }

  .pas-app-grid { grid-template-columns: 1fr; gap: 48px; }
  .pas-app-visual { order: 2; }
  .pas-app-content { order: 1; }
  .pas-app-title { text-align: center; }
  .pas-app-eyebrow { display: block; text-align: center; }
  .pas-app-download-btns { justify-content: center; }

  .pas-publish-grid { grid-template-columns: 1fr; gap: 40px; }
  .pas-publish-title { text-align: center; }
  .pas-publish-eyebrow { display: block; text-align: center; }
  .pas-publish-desc { margin: 0 auto 28px; }
  .pas-publish-actions { justify-content: center; }
  .pas-publish-benefits { max-width: 400px; margin: 0 auto 32px; }
  .pas-publish-visual { margin: 0 auto; }

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

  .pas-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 48px; }
  .pas-footer-brand { grid-column: 1 / -1; max-width: 100%; }
  .pas-footer-newsletter { grid-column: 1 / -1; }
}

/* ──────────────────────────────────────────
   19. RESPONSIVE — MOBILE (max 768px)
─────────────────────────────────────────── */
@media (max-width: 768px) {
  .pas-hero { padding: 52px 0 72px; }
  .pas-hero-headline { font-size: clamp(32px, 9vw, 44px); }

  .pas-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .pas-trust-item:nth-child(2) { border-left: 1px solid var(--pas-border); }
  .pas-trust-item:nth-child(3) { border-left: none; }
  .pas-trust-item:nth-child(4) { border-left: 1px solid var(--pas-border); }

  .pas-process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .pas-process-arrow { display: none; }

  .pas-products-track {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
    gap: 16px;
    scrollbar-width: none;
  }
  .pas-products-track::-webkit-scrollbar { display: none; }
  .pas-product-card {
    min-width: calc(55vw);
    max-width: 220px;
    scroll-snap-align: start;
    flex-shrink: 0;
  }
  .pas-slider-dots { display: flex; }

  .pas-section-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .pas-categories-track {
    justify-content: flex-start;
    flex-wrap: nowrap;
  }
  .pas-cat-tile { min-width: 90px; }

  .pas-blog-grid { grid-template-columns: 1fr; }

  .pas-final-cta-actions { flex-direction: column; align-items: center; }
  .pas-final-cta-actions .pas-btn { width: 100%; max-width: 280px; }

  .pas-footer-grid { grid-template-columns: 1fr 1fr; }
  .pas-footer-brand { grid-column: 1 / -1; }
  .pas-footer-newsletter { grid-column: 1 / -1; }

  .pas-footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .pas-publish-benefits { grid-template-columns: 1fr; }
}

/* ──────────────────────────────────────────
   20. RESPONSIVE — SMALL MOBILE (max 480px)
─────────────────────────────────────────── */
@media (max-width: 480px) {
  .pas-container { padding: 0 16px; }

  .pas-process-grid { grid-template-columns: 1fr; }
  .pas-process-arrow { display: none; }
  .pas-process-step {
    display: flex;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
    padding: 0;
    max-width: 100%;
  }
  .pas-process-icon-wrap { flex-shrink: 0; margin: 0; }

  .pas-trust-grid { grid-template-columns: 1fr 1fr; gap: 16px; padding: 20px; }
  .pas-trust-item + .pas-trust-item { border-left: none; padding-left: 0; }
  .pas-trust-item:nth-child(2) { border-left: none; }
  .pas-trust-item:nth-child(4) { border-left: none; }

  .pas-phone-frame { width: 240px; }
  .pas-lib-phone-frame { width: 240px; }

  .pas-footer-grid { grid-template-columns: 1fr; }
  .pas-footer-brand { grid-column: auto; }
  .pas-footer-newsletter { grid-column: auto; }
}

/* ──────────────────────────────────────────
   21. FOCUS STATES / ACCESSIBILITY
─────────────────────────────────────────── */
.pas-landing-page a:focus-visible,
.pas-landing-page button:focus-visible {
  outline: 3px solid var(--pas-pink);
  outline-offset: 3px;
  border-radius: 4px;
}

/* High-contrast links in footer */
.pas-footer a:focus-visible { outline-color: var(--pas-gold); }

/* ──────────────────────────────────────────
   22. PRINT
─────────────────────────────────────────── */
@media print {
  .pas-header,
  .pas-hero-bg,
  .pas-phone-mockup,
  .pas-final-cta-bg,
  .pas-footer-bottom { display: none; }
  .pas-final-cta { background: var(--pas-plum); print-color-adjust: exact; }
}
