/* =============================================================
   PocketWare – Public Marketing CSS
   ============================================================= */

/* ----- Base reset --------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #374151;
  background: #fff;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
[x-cloak] { display: none !important; }

/* ----- Navbar ------------------------------------------------- */
.pw-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #1a2332;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.pw-navbar-container {
  display: flex;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 64px;
}

.pw-navbar-brand {
  display: flex;
  align-items: center;
  margin-right: auto;
  flex-shrink: 0;
}

.pw-navbar-brand img {
  height: 36px;
  width: auto;
}

/* Desktop links – always visible on ≥ 992px */
.pw-navbar-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.pw-navbar-links a {
  color: rgba(255,255,255,0.72);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.45rem 0.7rem;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}

.pw-navbar-links a:hover,
.pw-navbar-links a.is-active {
  color: #fff;
  background: rgba(255,255,255,0.1);
}

.pw-nav-sep {
  display: inline-block;
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.18);
  margin: 0 0.5rem;
  flex-shrink: 0;
}

.pw-lang-link {
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em;
}

.pw-navbar-cta {
  background: #0B9C94 !important;
  color: #fff !important;
  padding: 0.45rem 1.1rem !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
  margin-left: 0.25rem;
}

.pw-navbar-cta:hover {
  background: #088A83 !important;
  color: #fff !important;
}

/* Hamburger – hidden on desktop, shown on mobile */
.pw-navbar-toggle {
  display: none;
  background: none;
  border: none;
  color: rgba(255,255,255,0.85);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: 0.5rem;
  border-radius: 6px;
  transition: background 0.15s;
}

.pw-navbar-toggle:hover { background: rgba(255,255,255,0.1); }

/* Mobile dropdown */
.pw-navbar-mobile {
  background: #232d3f;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 0.75rem 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.pw-navbar-mobile a {
  color: rgba(255,255,255,0.78);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.65rem 0.75rem;
  border-radius: 6px;
  display: block;
  transition: color 0.12s, background 0.12s;
}

.pw-navbar-mobile a:hover { color: #fff; background: rgba(255,255,255,0.08); }

.pw-mobile-lang {
  display: flex;
  gap: 0.5rem;
  padding: 0.4rem 0.75rem;
}

.pw-mobile-lang a {
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em;
}

.pw-mobile-lang a.is-active { color: #0eb5ac !important; }

.pw-mobile-cta {
  background: #0B9C94;
  color: #fff !important;
  text-align: center;
  margin-top: 0.5rem;
  font-weight: 600 !important;
}

.pw-mobile-cta:hover { background: #088A83 !important; }

@media (max-width: 991px) {
  .pw-navbar-links { display: none; }
  .pw-navbar-toggle { display: block; }
}

/* ----- Page hero (title pages) -------------------------------- */
.pw-page-hero {
  background: linear-gradient(135deg, #1a2332 0%, #0B9C94 100%);
  padding: 4rem 0 3.25rem;
  text-align: center;
  color: #fff;
}

.pw-page-hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  font-weight: 700;
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

.pw-page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  margin: 0 auto;
  max-width: 580px;
}

/* ----- Alerts ------------------------------------------------- */
.pw-alert {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.875rem 1.25rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.5;
}

.pw-alert-success {
  background: rgba(16,185,129,0.1);
  color: #064e3b;
  border: 1px solid rgba(16,185,129,0.3);
}

.pw-alert-danger {
  background: rgba(239,68,68,0.08);
  color: #7f1d1d;
  border: 1px solid rgba(239,68,68,0.25);
}

/* ----- Sections ----------------------------------------------- */
main { min-height: 50vh; }

.pw-section {
  padding: 5rem 0;
}

.pw-section--gray  { background: #f9fafb; }
.pw-section--dark  { background: #1a2332; color: #fff; }
.pw-section--dark .pw-section-header h2 { color: #fff; }
.pw-section--dark .pw-section-header p  { color: rgba(255,255,255,0.7); }

.pw-section-header {
  text-align: center;
  margin: 0 auto 3rem;
  max-width: 640px;
}

.pw-section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #1a2332;
  margin: 0.5rem 0 0.75rem;
  line-height: 1.25;
}

.pw-section-header p {
  font-size: 1.05rem;
  color: #6b7280;
  margin: 0;
}

.pw-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #0B9C94;
  background: rgba(11,156,148,0.1);
  padding: 0.22rem 0.7rem;
  border-radius: 100px;
  margin-bottom: 0.6rem;
}

/* ----- Hero section ------------------------------------------- */
.pw-hero {
  background: linear-gradient(135deg, #1a2332 0%, #232d3f 55%, #0B9C94 100%);
  color: #fff;
  padding: 5.5rem 0 4.5rem;
  overflow: hidden;
}

.pw-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.pw-hero-text .pw-eyebrow {
  color: #DB8E57;
  background: rgba(219,142,87,0.15);
}

.pw-hero-text h1 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0.75rem 0 1.1rem;
}

.pw-hero-text p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 2rem;
  max-width: 500px;
  line-height: 1.7;
}

.pw-hero-actions {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  align-items: center;
}

/* Hero logo */
.pw-hero-logo-link { display: inline-block; margin-bottom: 1.75rem; }
.pw-hero-logo { height: 52px; width: auto; filter: brightness(0) invert(1); }

/* Mock dashboard panel */
.pw-hero-panel {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 1.75rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
}

.pw-hero-panel-card {
  background: rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.pw-hero-panel-card:first-child { grid-column: span 2; }

.pw-hero-panel-card span {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pw-hero-panel-card strong {
  font-size: 1.85rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

/* ----- Buttons ------------------------------------------------ */
.pw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1.375rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.15s;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.4;
}

.pw-btn-lg { padding: 0.825rem 2rem; font-size: 1rem; }

.pw-btn-primary { background: #0B9C94; color: #fff; border-color: #0B9C94; }
.pw-btn-primary:hover { background: #088A83; border-color: #088A83; color: #fff; }

.pw-btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.pw-btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.8); color: #fff; }

.pw-btn-outline-dark { background: transparent; color: #0B9C94; border-color: #0B9C94; }
.pw-btn-outline-dark:hover { background: #0B9C94; color: #fff; }

.pw-btn-white { background: #fff; color: #0B9C94; border-color: #fff; font-weight: 700; }
.pw-btn-white:hover { background: #f0fafa; color: #088A83; }

/* ----- Feature grid ------------------------------------------- */
.pw-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.pw-feature-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  transition: box-shadow 0.2s, transform 0.2s;
}

.pw-feature-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

.pw-feature-card i {
  font-size: 1.7rem;
  color: #0B9C94;
  margin-bottom: 1rem;
}

.pw-feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a2332;
  margin: 0 0 0.5rem;
}

.pw-feature-card p {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.65;
}

/* ----- Steps / How it works ----------------------------------- */
.pw-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pw-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.875rem;
}

.pw-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #0B9C94;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pw-step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a2332;
  margin: 0;
}

.pw-step p {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.65;
}

/* ----- Testimonial -------------------------------------------- */
.pw-testimonial {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 2.5rem 2rem;
}

.pw-testimonial blockquote {
  font-size: 1.1rem;
  font-style: italic;
  color: #374151;
  line-height: 1.8;
  margin: 0 0 1.5rem;
}

.pw-testimonial cite {
  font-style: normal;
  font-weight: 600;
  color: #1a2332;
  font-size: 0.9rem;
}

/* ----- Pricing cards ------------------------------------------ */
.pw-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.pw-price-card {
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 2rem 1.75rem;
  position: relative;
  transition: box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.pw-price-card:hover { box-shadow: 0 10px 28px rgba(0,0,0,0.09); }

.pw-price-card.featured {
  border-color: #0B9C94;
  box-shadow: 0 8px 30px rgba(11,156,148,0.18);
  transform: scale(1.02);
}

.pw-price-card h2,
.pw-price-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a2332;
  margin: 0.5rem 0 0.5rem;
}

.pw-price-card > p {
  font-size: 0.85rem;
  color: #6b7280;
  margin: 0 0 1.25rem;
  line-height: 1.65;
}

.pw-credit-count {
  font-size: 1.9rem;
  font-weight: 800;
  color: #0B9C94;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.pw-price {
  font-size: 1.7rem;
  font-weight: 700;
  color: #1a2332;
  margin-bottom: 0.4rem;
}

.pw-price small {
  font-size: 0.85rem;
  font-weight: 400;
  color: #6b7280;
}

.pw-price-note {
  font-size: 0.78rem;
  color: #9ca3af;
  margin-bottom: 0.75rem;
}

.pw-pack-bonus {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: #DB8E57;
  background: rgba(219,142,87,0.1);
  padding: 0.18rem 0.55rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.pw-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  background: #0B9C94;
  padding: 0.18rem 0.55rem;
  border-radius: 100px;
  margin-bottom: 0.5rem;
}

/* Trust row (pricing page top bar) */
.pw-trust-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.pw-trust-item {
  flex: 1;
  min-width: 200px;
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 1.1rem 1.25rem;
}

.pw-trust-item i {
  font-size: 1.4rem;
  color: #0B9C94;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.pw-trust-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a2332;
  margin-bottom: 0.2rem;
}

.pw-trust-item span {
  font-size: 0.82rem;
  color: #6b7280;
}

/* ----- FAQ (public) ------------------------------------------- */
.pw-faq-search {
  margin-bottom: 2rem;
}

.pw-faq-search label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
}

.pw-faq-search input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.pw-faq-search input:focus {
  border-color: #0B9C94;
  box-shadow: 0 0 0 3px rgba(11,156,148,0.1);
}

.pw-faq-group { margin-bottom: 2.5rem; }

.pw-faq-group h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a2332;
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e5e7eb;
}

.pw-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.pw-faq-item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.15s;
}

.pw-faq-item:hover { box-shadow: 0 4px 14px rgba(0,0,0,0.06); }

.pw-faq-item summary {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a2332;
  padding: 1rem 1.25rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.pw-faq-item summary::-webkit-details-marker { display: none; }

.pw-faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: #0B9C94;
  flex-shrink: 0;
  transition: transform 0.15s;
}

.pw-faq-item[open] summary::after { transform: rotate(45deg); }

.pw-faq-item > p,
.pw-faq-item div {
  font-size: 0.875rem;
  color: #6b7280;
  padding: 0 1.25rem 1rem;
  margin: 0;
  line-height: 1.7;
}

/* Home FAQ preview (inline details) */
.pw-faq-preview details {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  margin-bottom: 0.625rem;
  overflow: hidden;
}

.pw-faq-preview details summary {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a2332;
  padding: 0.875rem 1.25rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pw-faq-preview details summary::-webkit-details-marker { display: none; }

.pw-faq-preview details summary::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 300;
  color: #0B9C94;
}

.pw-faq-preview details[open] summary::after { content: '×'; }

.pw-faq-preview details > p {
  font-size: 0.875rem;
  color: #6b7280;
  padding: 0 1.25rem 1rem;
  margin: 0;
  line-height: 1.7;
}

/* ----- Blog cards --------------------------------------------- */
.pw-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.5rem;
}

.pw-blog-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}

.pw-blog-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

.pw-blog-card > img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.pw-blog-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.5rem;
}

.pw-blog-meta {
  font-size: 0.78rem;
  color: #9ca3af;
}

.pw-blog-card h2 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a2332;
  margin: 0;
  line-height: 1.4;
}

.pw-blog-card h2 a { color: inherit; }
.pw-blog-card h2 a:hover { color: #0B9C94; }

.pw-blog-card p {
  font-size: 0.85rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.65;
  flex: 1;
}

.pw-link-cta {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0B9C94;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.5rem;
}

.pw-link-cta:hover { color: #088A83; text-decoration: underline; }

/* ----- CTA section -------------------------------------------- */
.pw-cta-section {
  background: linear-gradient(135deg, #0B9C94 0%, #088A83 100%);
  padding: 5rem 0;
  text-align: center;
  color: #fff;
}

.pw-cta-section h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin: 0 0 1rem;
}

.pw-cta-section p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  margin: 0 auto 2rem;
  max-width: 520px;
  line-height: 1.7;
}

/* ----- Newsletter --------------------------------------------- */
.pw-newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 460px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.pw-newsletter-form input {
  flex: 1;
  min-width: 220px;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.pw-newsletter-form input:focus {
  border-color: #0B9C94;
  box-shadow: 0 0 0 3px rgba(11,156,148,0.1);
}

/* ----- Contact page ------------------------------------------- */
.pw-contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}

.pw-contact-aside h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a2332;
  margin: 0 0 0.875rem;
}

.pw-contact-aside > p {
  color: #6b7280;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.pw-contact-card {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1rem 1.1rem;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  margin-bottom: 0.75rem;
}

.pw-contact-card i {
  font-size: 1.2rem;
  color: #0B9C94;
  width: 22px;
  text-align: center;
  flex-shrink: 0;
}

.pw-contact-card span {
  font-size: 0.72rem;
  color: #9ca3af;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pw-contact-card a {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a2332;
  display: block;
}

.pw-contact-card a:hover { color: #0B9C94; }

/* Public form */
.pw-public-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #374151;
  margin: 1.1rem 0 0.4rem;
}

.pw-public-form input,
.pw-public-form select,
.pw-public-form textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #374151;
  background: #fff;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.pw-public-form input:focus,
.pw-public-form select:focus,
.pw-public-form textarea:focus {
  border-color: #0B9C94;
  box-shadow: 0 0 0 3px rgba(11,156,148,0.1);
}

.pw-public-form .row { display: flex; gap: 1rem; }
.pw-public-form .row > * { flex: 1; min-width: 0; }

/* ----- Prose (privacy, terms) --------------------------------- */
.pw-prose {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #374151;
}

.pw-prose h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a2332;
  margin: 2.25rem 0 0.75rem;
  padding-top: 0.5rem;
}

.pw-prose h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a2332;
  margin: 1.5rem 0 0.5rem;
}

.pw-prose ul,
.pw-prose ol {
  padding-left: 1.5rem;
  margin: 0.75rem 0;
}

.pw-prose li { margin-bottom: 0.5rem; }

.pw-prose a { color: #0B9C94; text-decoration: underline; }

.pw-toc {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}

.pw-toc a {
  font-size: 0.85rem;
  color: #0B9C94;
  font-weight: 500;
  text-decoration: none;
}

.pw-toc a:hover { text-decoration: underline; }

.pw-updated {
  font-size: 0.82rem;
  color: #9ca3af;
  margin-bottom: 1.5rem;
}

/* ----- Table -------------------------------------------------- */
.pw-public-table {
  font-size: 0.875rem;
  width: 100%;
  border-collapse: collapse;
}

.pw-public-table th {
  background: #f3f4f6;
  font-weight: 700;
  color: #374151;
  padding: 0.7rem 1rem;
  text-align: left;
  border-bottom: 2px solid #e5e7eb;
}

.pw-public-table td {
  padding: 0.7rem 1rem;
  border-bottom: 1px solid #e5e7eb;
  color: #6b7280;
}

.pw-public-table tr:hover td { background: #f9fafb; }

/* ----- Footer ------------------------------------------------- */
.pw-footer {
  background: #1a2332;
  color: rgba(255,255,255,0.7);
  padding: 4.5rem 0 0;
}

.pw-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.pw-footer-logo {
  height: 36px;
  width: auto;
  margin-bottom: 1rem;
}

.pw-footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  margin: 0 0 1.25rem;
  color: rgba(255,255,255,0.55);
  max-width: 280px;
}

.pw-footer-social {
  display: flex;
  gap: 0.625rem;
}

.pw-footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 0.8rem;
  transition: background 0.15s, color 0.15s;
}

.pw-footer-social a:hover { background: #0B9C94; color: #fff; }

.pw-footer h4 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(255,255,255,0.38);
  margin: 0 0 1.1rem;
}

.pw-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.pw-footer ul a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.12s;
}

.pw-footer ul a:hover { color: #fff; }

/* Account links – larger */
.pw-footer-account-links a {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
}

.pw-footer-account-links a:hover { color: #fff; }

.pw-footer-cta {
  display: inline-block;
  margin-top: 1.1rem;
  padding: 0.45rem 1.1rem;
  background: #0B9C94;
  color: #fff;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s;
}

.pw-footer-cta:hover { background: #088A83; color: #fff; }

.pw-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 1.5rem 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

.pw-footer-legal { display: flex; gap: 1.5rem; }

.pw-footer-legal a { color: rgba(255,255,255,0.35); text-decoration: none; }
.pw-footer-legal a:hover { color: rgba(255,255,255,0.75); }

/* ----- Empty state -------------------------------------------- */
.pw-empty-public {
  text-align: center;
  padding: 3rem;
  color: #9ca3af;
}

.pw-empty-public h2 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #6b7280;
  margin: 0 0 0.75rem;
}

/* ----- Utilities ---------------------------------------------- */
.pw-center { text-align: center; margin-top: 2rem; }
.pw-muted { color: #9ca3af; font-size: 0.875rem; }
.pw-mt-0 { margin-top: 0 !important; }

/* ----- Responsive --------------------------------------------- */
@media (max-width: 991px) {
  .pw-hero-inner { grid-template-columns: 1fr; }
  .pw-hero-panel { display: none; }
  .pw-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .pw-steps { grid-template-columns: 1fr 1fr; }
  .pw-pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pw-contact-grid { grid-template-columns: 1fr; }
  .pw-footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .pw-footer-brand { grid-column: span 2; }
  .pw-trust-row { flex-direction: column; }
  .pw-trust-item { min-width: 0; }
}

@media (max-width: 767px) {
  .pw-section { padding: 3.5rem 0; }
  .pw-hero { padding: 3.5rem 0 3rem; }
  .pw-feature-grid { grid-template-columns: 1fr; }
  .pw-steps { grid-template-columns: 1fr; }
  .pw-pricing-grid { grid-template-columns: 1fr; }
  .pw-price-card.featured { transform: none; }
  .pw-footer-grid { grid-template-columns: 1fr; }
  .pw-footer-brand { grid-column: span 1; }
  .pw-cta-section { padding: 3.5rem 0; }
  .pw-newsletter-form { flex-direction: column; }
  .pw-newsletter-form input,
  .pw-newsletter-form .pw-btn { width: 100%; }
  .pw-public-form .row { flex-direction: column; gap: 0; }
  .pw-blog-grid { grid-template-columns: 1fr; }
}
