/* ==========================================================================
   PetConnect — marketing inner pages
   Extends common/css/home.css with templates used by product/feature pages.
   ========================================================================== */

body.pc-marketing {
  font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-optical-sizing: auto;
  overflow-x: hidden;
  max-width: 100%;
}

body.pc-marketing .pc-page-hero h1,
body.pc-marketing .pc-page-hero--compact h1,
body.pc-marketing .pc-section h2,
body.pc-marketing .pc-cta-strip h3 {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
}

body.pc-marketing .pc-page-hero .lead-text,
body.pc-marketing .pc-section .lead,
body.pc-marketing .pc-capability p {
  line-height: 1.6;
  letter-spacing: 0.01em;
}

.pc-marketing main {
  display: block;
}

/* --------------------------------------------------------------------------
   Page hero
   -------------------------------------------------------------------------- */

.pc-page-hero {
  position: relative;
  padding: 4.5rem 0 3.5rem;
  background:
    radial-gradient(900px 360px at 12% -10%, rgba(113, 173, 221, 0.16), transparent 70%),
    radial-gradient(700px 300px at 95% 0%, rgba(113, 173, 221, 0.10), transparent 70%),
    var(--pc-bg);
  overflow: hidden;
}

.pc-page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(15, 23, 42, 0.08), transparent);
}

.pc-page-hero .pc-breadcrumb {
  display: inline-flex;
  align-items: center;
  /* Always keep the trail on a single line. On phones we scale font/letter-
     spacing/gap down (see media queries below) so even longer crumbs like
     "Inventory & stock management" still fit without wrapping. */
  flex-wrap: nowrap;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--pc-muted);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  max-width: 100%;
  margin-bottom: 1rem;
}

.pc-page-hero .pc-breadcrumb a,
.pc-page-hero .pc-breadcrumb span {
  /* Each crumb label stays whole — never breaks mid-word. */
  white-space: nowrap;
}

.pc-page-hero .pc-breadcrumb a {
  color: var(--pc-muted);
  text-decoration: none;
}

.pc-page-hero .pc-breadcrumb a:hover {
  color: var(--pc-primary-dark);
}

.pc-page-hero .pc-breadcrumb i {
  font-size: 0.7rem;
  opacity: 0.7;
  flex-shrink: 0;
}

/* Phones — shrink the breadcrumb so the full trail (e.g.
   "PETCONNECT > PRODUCTS > GROOMING MANAGEMENT") stays on a single line. */
@media (max-width: 575.98px) {
  .pc-page-hero .pc-breadcrumb {
    font-size: 0.7rem;
    letter-spacing: 0.02em;
    gap: 0.35rem;
    /* If the trail is still wider than the viewport on tiny phones (<360px),
       allow it to scroll horizontally inside its row instead of wrapping. */
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 2px;
  }
  .pc-page-hero .pc-breadcrumb::-webkit-scrollbar {
    display: none;
  }
  .pc-page-hero .pc-breadcrumb i {
    font-size: 0.55rem;
  }
}

/* Very narrow devices — drop one more notch to be safe. */
@media (max-width: 359.98px) {
  .pc-page-hero .pc-breadcrumb {
    font-size: 0.62rem;
    letter-spacing: 0.01em;
    gap: 0.3rem;
  }
}

.pc-page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--pc-ink);
  margin: 0 0 1.1rem;
}

.pc-page-hero h1 .accent {
  background: var(--pc-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pc-page-hero .lead-text {
  font-size: 1.075rem;
  color: var(--pc-slate);
  max-width: 36rem;
  margin-bottom: 1.75rem;
}

.pc-page-hero .pc-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin-top: 1.75rem;
  font-size: 0.92rem;
  color: var(--pc-muted);
}

.pc-hero-app-stores {
  margin-top: 1.75rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 36rem;
  text-align: center;
}

.pc-hero-app-stores__head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.5rem;
}

.pc-hero-app-stores__head::before,
.pc-hero-app-stores__head::after {
  content: "";
  flex: 1;
  min-width: 1.5rem;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(15, 23, 42, 0.14) 18%,
    rgba(15, 23, 42, 0.14) 82%,
    transparent
  );
}

.pc-hero-app-stores__head span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pc-muted);
  white-space: nowrap;
}

.pc-hero-app-stores__sub {
  font-size: 0.9rem;
  color: var(--pc-slate);
  margin: 0 0 0.85rem;
  line-height: 1.55;
}

.pc-hero-app-stores__badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 0.9rem;
}

.pc-hero-app-stores__badge {
  display: inline-block;
  line-height: 0;
  border-radius: 8px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.pc-hero-app-stores__badge:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.pc-hero-app-stores__badge:focus-visible {
  outline: 2px solid var(--pc-primary-dark);
  outline-offset: 3px;
}

.pc-hero-app-stores__badge img {
  display: block;
  height: 40px;
  width: auto;
}

.pc-hero-app-stores__badge--google img {
  height: 58px;
}

@media (prefers-reduced-motion: reduce) {
  .pc-hero-app-stores__badge {
    transition: none;
  }

  .pc-hero-app-stores__badge:hover {
    transform: none;
  }
}

.pc-page-hero .pc-hero-meta li {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.pc-page-hero .pc-hero-meta i {
  color: var(--pc-primary-dark);
}

.pc-hero-visual {
  position: relative;
  border-radius: var(--pc-radius);
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(113, 173, 221, 0.18), transparent 70%),
    #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--pc-shadow);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}

.pc-hero-visual .pc-hero-icon {
  width: 132px;
  height: 132px;
  border-radius: 36px;
  background: var(--pc-gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.4rem;
  box-shadow: 0 22px 50px rgba(85, 153, 201, 0.35);
}

.pc-hero-visual .pc-hero-chip {
  position: absolute;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  padding: 0.5rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--pc-ink);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.pc-hero-visual .pc-hero-chip i { color: var(--pc-primary-dark); }

/*
  Keep chips within the visual box — the ::before blob uses inset:-50%
  so overflow:hidden is required to prevent the gradient from causing
  horizontal scroll at every breakpoint.
*/
.pc-hero-visual {
  overflow: hidden;
}

/* Chip positions: within bounds (≥2%) so overflow:hidden doesn't clip them */
.pc-hero-visual .pc-hero-chip.c1 { top: 14%; left: 2%; }
.pc-hero-visual .pc-hero-chip.c2 { top: 30%; right: 2%; }
.pc-hero-visual .pc-hero-chip.c3 { bottom: 12%; left: 6%; }

/* Product / feature hero — real screenshot: no card frame (image only) */
.pc-hero-visual--screenshot {
  display: block;
  padding: 0;
  min-height: 0;
  text-align: center;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}

.pc-hero-visual--screenshot::before {
  content: none;
}

.pc-hero-visual--screenshot .pc-hero-visual__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(420px, 70vh);
  margin: 0 auto;
  object-fit: contain;
  border-radius: var(--pc-radius, 16px);
}

/* Animated SVG hero (object embed — CSS/SVG motion runs; img alone is static in most browsers) */
.pc-hero-visual--screenshot object.pc-hero-visual__img.pc-animated-svg {
  border: 0;
  vertical-align: top;
}

@media (max-width: 575px) {
  .pc-hero-visual--screenshot .pc-hero-visual__img {
    border-radius: calc(var(--pc-radius, 16px) - 4px);
  }
}

@media (max-width: 991px) {
  .pc-page-hero { padding: 3rem 0 2rem; }
  .pc-hero-visual { margin-top: 2rem; min-height: 240px; padding: 1.5rem; }
  .pc-hero-visual--screenshot {
    min-height: 0;
    padding: 0;
  }
  .pc-hero-visual--screenshot .pc-hero-visual__img {
    max-height: none;
  }
  .pc-hero-visual .pc-hero-chip { font-size: 0.75rem; padding: 0.4rem 0.7rem; }
  .pc-hero-visual .pc-hero-chip.c1 { left: 4%; top: 8%; }
  .pc-hero-visual .pc-hero-chip.c2 { right: 4%; top: 22%; }
  .pc-hero-visual .pc-hero-chip.c3 { left: 8%; bottom: 8%; }
  .pc-hero-visual .pc-hero-icon { width: 96px; height: 96px; font-size: 2.4rem; border-radius: 26px; }

}

@media (max-width: 575px) {
  .pc-hero-visual .pc-hero-chip { display: none; }

  /* Match the homepage's behavior: keep the two hero CTAs side-by-side
     even on the narrowest phones — share the row equally, shrink type
     and padding so each label stays on a single line. */
  .pc-page-hero .d-flex.gap-3,
  .pc-page-hero--compact .d-flex.gap-3 {
    flex-wrap: nowrap;
    gap: 0.55rem !important;
  }
  .pc-page-hero .d-flex.gap-3 > .btn,
  .pc-page-hero .d-flex.gap-3 > .btn.btn-lg,
  .pc-page-hero--compact .d-flex.gap-3 > .btn,
  .pc-page-hero--compact .d-flex.gap-3 > .btn.btn-lg {
    flex: 1 1 0;
    min-width: 0;
    padding: 0.55rem 0.55rem;
    font-size: 0.85rem;
    line-height: 1.2;
    border-radius: 999px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* --------------------------------------------------------------------------
   Section helpers
   -------------------------------------------------------------------------- */

.pc-section {
  padding: 4rem 0;
}

.pc-section--soft {
  background: var(--pc-bg);
}

.pc-section--white {
  background: #fff;
}

.pc-section--dark {
  background: var(--pc-dark);
  color: rgba(255, 255, 255, 0.85);
}

.pc-section--dark .section-title { color: #fff; }
.pc-section--dark .section-desc { color: rgba(255, 255, 255, 0.65); }
.pc-section--dark .section-label { color: rgba(113, 173, 221, 0.9); }

@media (max-width: 767px) {
  .pc-section { padding: 2.75rem 0; }
}

/* --------------------------------------------------------------------------
   Capability grid (6-up tiles, like feature-tile but tighter spacing)
   -------------------------------------------------------------------------- */

.pc-capability {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: var(--pc-radius);
  padding: 1.5rem;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.pc-capability:hover {
  transform: translateY(-4px);
  border-color: rgba(113, 173, 221, 0.4);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.pc-capability .pc-cap-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--pc-primary-soft);
  color: var(--pc-primary-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 0.9rem;
  animation: pcFeatIconFloat 4s ease-in-out infinite;
}

.pc-capability h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--pc-ink);
  margin: 0 0 0.4rem;
}

.pc-capability p {
  margin: 0;
  color: var(--pc-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   How it works — numbered steps
   -------------------------------------------------------------------------- */

.pc-steps {
  counter-reset: pcstep;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .pc-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 992px) {
  .pc-steps--four { grid-template-columns: repeat(4, 1fr); }
}

.pc-step {
  position: relative;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: var(--pc-radius);
  padding: 1.75rem 1.5rem 1.5rem;
  height: 100%;
  counter-increment: pcstep;
}

.pc-step::before {
  content: counter(pcstep, decimal-leading-zero);
  position: absolute;
  top: -14px;
  left: 1.25rem;
  background: var(--pc-gradient);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(85, 153, 201, 0.35);
}

.pc-step h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--pc-ink);
  margin: 0.5rem 0 0.4rem;
}

.pc-step p {
  margin: 0;
  color: var(--pc-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   Highlight band — image + bullets, alternating
   -------------------------------------------------------------------------- */

.pc-highlight {
  display: grid;
  align-items: center;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.pc-highlight:last-child {
  border-bottom: none;
}

@media (min-width: 992px) {
  .pc-highlight {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  .pc-highlight--reverse .pc-highlight-media { order: 2; }
}

.pc-highlight h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--pc-ink);
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}

.pc-highlight p.lead {
  font-size: 1.02rem;
  color: var(--pc-slate);
  margin-bottom: 1.25rem;
}

.pc-highlight ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

.pc-highlight ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--pc-slate);
  font-size: 0.97rem;
}

.pc-highlight ul li i {
  color: var(--pc-primary-dark);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.pc-highlight-media {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(113, 173, 221, 0.16) 0%, rgba(113, 173, 221, 0.04) 100%);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: var(--pc-radius);
  padding: 2rem;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  color: var(--pc-primary-dark);
}

/* Product screenshots in highlight rows — no frame; image only */
.pc-highlight-media--screenshot {
  padding: 0;
  min-height: 0;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  display: block;
  font-size: inherit;
  color: inherit;
  overflow: visible;
}

.pc-highlight-media--screenshot::before {
  content: none;
}

.pc-highlight-media--screenshot .pc-highlight-media__img {
  border-radius: var(--pc-radius, 16px);
  box-shadow: none;
}

.pc-highlight-media--screenshot.pc-highlight-media--bare {
  display: flex;
  justify-content: center;
}

.pc-highlight-media--screenshot.pc-highlight-media--bare .pc-highlight-media__img {
  border-radius: 0;
  box-shadow: none;
  width: auto;
  max-width: min(400px, 100%);
  height: auto;
}

.pc-highlight-media--screenshot.pc-highlight-media--img-scale-80 {
  display: flex;
  justify-content: center;
}

.pc-highlight-media--screenshot.pc-highlight-media--img-scale-80 .pc-highlight-media__img {
  width: 80%;
  max-width: 80%;
  height: auto;
}

.pc-highlight-media--screenshot.pc-highlight-media--img-scale-75 {
  display: flex;
  justify-content: center;
}

.pc-highlight-media--screenshot.pc-highlight-media--img-scale-75 .pc-highlight-media__img {
  width: 75%;
  max-width: 75%;
  height: auto;
}

/* 64% column width ≈ 80% of the img-scale-80 height (same aspect ratio) */
.pc-highlight-media--screenshot.pc-highlight-media--img-scale-64 {
  display: flex;
  justify-content: center;
}

.pc-highlight-media--screenshot.pc-highlight-media--img-scale-64 .pc-highlight-media__img {
  width: 64%;
  max-width: 64%;
  height: auto;
}

/*
 * Narrow POS-style screenshot: fill the highlight column edge-to-edge, center the bitmap inside
 * (grid + fit-content is unreliable cross-browser). Flex is stable.
 */
.pc-highlight-media--screenshot.pc-highlight-media--fit-content {
  justify-self: stretch;
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.pc-highlight-media--screenshot.pc-highlight-media--fit-content .pc-highlight-media__img.pc-highlight-media__img--half {
  flex-shrink: 0;
  width: auto;
  max-width: min(285px, 100%);
  height: auto;
  border-radius: var(--pc-radius, 16px);
  box-shadow: none;
}

/* Tablet-style bezel around in-column product screenshots */
.pc-highlight-media--screenshot.pc-highlight-media--tablet-shell {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 1.125rem 1.2rem 1.35rem;
  max-width: 100%;
  box-sizing: border-box;
  background: linear-gradient(152deg, #343b45 0%, #1f242c 42%, #2a313a 100%);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: clamp(18px, 3vw, 26px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.07) inset,
    0 14px 36px rgba(15, 23, 42, 0.16),
    0 4px 10px rgba(15, 23, 42, 0.1);
}

.pc-highlight-media--screenshot.pc-highlight-media--tablet-shell::before {
  content: "";
  align-self: center;
  width: 7px;
  height: 7px;
  margin: 0 0 0.65rem;
  border-radius: 50%;
  flex-shrink: 0;
  background: radial-gradient(circle at 32% 28%, #5c6573, #1e232c 72%);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.45) inset,
    0 1px 1px rgba(255, 255, 255, 0.12) inset;
}

.pc-highlight-media--screenshot.pc-highlight-media--tablet-shell .pc-highlight-media__img {
  border-radius: 10px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.07) inset,
    0 6px 20px rgba(0, 0, 0, 0.32);
}

@media (max-width: 575px) {
  .pc-highlight-media--screenshot.pc-highlight-media--tablet-shell {
    padding: 0.95rem 1rem 1.15rem;
    border-radius: 18px;
  }

  .pc-highlight-media--screenshot.pc-highlight-media--tablet-shell::before {
    width: 6px;
    height: 6px;
    margin-bottom: 0.5rem;
  }

  .pc-highlight-media--screenshot.pc-highlight-media--tablet-shell .pc-highlight-media__img {
    border-radius: 8px;
  }
}

.pc-highlight-media__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--pc-radius);
}

.pc-highlight-media--screenshot object.pc-highlight-media__img.pc-animated-svg {
  border: 0;
  vertical-align: top;
  border-radius: var(--pc-radius, 16px);
  box-shadow: none;
}

/* --------------------------------------------------------------------------
   Mid-page CTA strip
   -------------------------------------------------------------------------- */

.pc-cta-strip {
  background: linear-gradient(135deg, rgba(113, 173, 221, 0.10) 0%, rgba(113, 173, 221, 0.02) 100%);
  border: 1px solid rgba(113, 173, 221, 0.25);
  border-radius: var(--pc-radius);
  padding: 1.75rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.pc-cta-strip h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--pc-ink);
  margin: 0 0 0.25rem;
}

.pc-cta-strip p {
  margin: 0;
  color: var(--pc-muted);
  font-size: 0.95rem;
}

@media (max-width: 575px) {
  .pc-cta-strip { padding: 1.5rem; }
  .pc-cta-strip .btn { width: 100%; }
}

/* --------------------------------------------------------------------------
   Related items (cross-links)
   -------------------------------------------------------------------------- */

.pc-related-card {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--pc-radius);
  padding: 1.25rem;
  text-decoration: none;
  color: inherit;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.pc-related-card:hover {
  transform: translateY(-3px);
  border-color: var(--pc-primary);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
  text-decoration: none;
  color: inherit;
}

.pc-related-card .pc-related-icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--pc-primary-soft);
  color: var(--pc-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.pc-related-card .pc-related-title {
  display: block;
  font-weight: 700;
  color: var(--pc-ink);
  font-size: 0.97rem;
  margin-bottom: 0.15rem;
}

.pc-related-card .pc-related-desc {
  display: block;
  color: var(--pc-muted);
  font-size: 0.875rem;
  line-height: 1.45;
}

.pc-related-card .pc-related-arrow {
  margin-left: auto;
  color: var(--pc-muted);
  align-self: center;
  transition: transform 0.2s ease, color 0.2s ease;
}

.pc-related-card:hover .pc-related-arrow {
  color: var(--pc-primary-dark);
  transform: translateX(3px);
}

/* --------------------------------------------------------------------------
   FAQ list (compact inline accordion)
   -------------------------------------------------------------------------- */

.pc-faq-list {
  display: grid;
  gap: 0.75rem;
}

.pc-faq-item {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--pc-radius);
  padding: 1.1rem 1.25rem;
}

.pc-faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--pc-ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

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

.pc-faq-item summary::after {
  content: "\002B";
  font-size: 1.25rem;
  color: var(--pc-muted);
  transition: transform 0.2s ease;
}

.pc-faq-item[open] summary::after {
  content: "\2212";
  color: var(--pc-primary-dark);
}

.pc-faq-item p {
  margin: 0.85rem 0 0;
  color: var(--pc-slate);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Contact page
   -------------------------------------------------------------------------- */

.pc-page-hero--compact {
  padding: 3.25rem 0 2.5rem;
}

.pc-page-hero--compact .lead-text {
  margin-bottom: 0;
}

.letter-spacing-tight {
  letter-spacing: 0.08em;
}

.pc-contact-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--pc-radius);
  padding: 2rem;
  box-shadow: var(--pc-shadow);
}

.pc-contact-aside {
  background: linear-gradient(180deg, rgba(113, 173, 221, 0.08) 0%, transparent 42%), #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: var(--pc-radius);
  padding: 2rem;
}

.pc-contact-aside a {
  text-decoration: none;
}

.pc-contact-aside a:hover {
  text-decoration: underline;
  color: var(--pc-primary-dark);
}

/* --------------------------------------------------------------------------
   Contact form (rebuilt) — modern multi-section layout with pill-style
   radios, feature checkbox grid, and a prominent send/spinner button.
   -------------------------------------------------------------------------- */
.pc-contact-section {
  position: relative;
}

.pc-contact-form-card {
  background: linear-gradient(180deg, #fbfdff 0%, #ffffff 60%);
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 18px;
  padding: clamp(1.4rem, 2.6vw, 2.4rem);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.pc-contact-form-card__header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px dashed rgba(15, 23, 42, 0.10);
}

.pc-contact-form-card__icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--pc-primary, #2cb6ec) 0%, #4facfe 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  box-shadow: 0 6px 16px rgba(44, 182, 236, 0.32);
}

.pc-contact-form-card__title {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
  color: var(--pc-ink, #0f172a);
}

.pc-contact-form-card__subtitle {
  margin: 0;
  font-size: 0.92rem;
  color: var(--pc-muted, #64748b);
}

.pc-required-mark {
  color: #e23a48;
  font-weight: 700;
  margin-left: 2px;
}

.pc-contact-flash-slot:empty {
  display: none;
}

.pc-contact-flash {
  border-radius: 12px;
}

/* Section / fieldset blocking */
.pc-contact-fieldset {
  border: none;
  margin: 0 0 1.4rem;
  padding: 1.1rem 0 0.4rem;
  border-top: 1px dashed rgba(15, 23, 42, 0.08);
}
.pc-contact-fieldset:first-of-type {
  border-top: none;
  padding-top: 0;
}

.pc-contact-legend {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  margin-bottom: 1rem;
  padding: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--pc-ink, #0f172a);
}

.pc-contact-legend__step {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pc-primary, #2cb6ec) 0%, #4facfe 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
}

.pc-contact-legend__title {
  display: inline-block;
}

/* Form controls — slightly softer than Bootstrap defaults so they sit
   inside the card without fighting the surrounding chrome. */
.pc-contact-form .form-control,
.pc-contact-form .form-select {
  border-radius: 10px;
  border-color: rgba(15, 23, 42, 0.12);
  background-color: #ffffff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.pc-contact-form .form-select {
  cursor: pointer;
}
.pc-contact-form .form-control:focus,
.pc-contact-form .form-select:focus {
  border-color: var(--pc-primary, #2cb6ec);
  box-shadow: 0 0 0 4px rgba(44, 182, 236, 0.15);
}
.pc-contact-form .form-control-lg,
.pc-contact-form .form-select-lg {
  font-size: 0.98rem;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
.pc-contact-form .form-label {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--pc-ink, #0f172a);
  margin-bottom: 0.35rem;
}
.pc-contact-form textarea.form-control {
  resize: vertical;
  min-height: 130px;
}
.pc-contact-form .form-text {
  color: var(--pc-muted, #64748b);
}

/* Pill-style radio groups (used for groomers/locations/volume/smart questions). */
.pc-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.pc-pill-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.pc-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.95rem;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--pc-ink, #0f172a);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.12s ease, box-shadow 0.12s ease;
  user-select: none;
  margin: 0;
}
.pc-pill:hover {
  border-color: rgba(44, 182, 236, 0.45);
  background: #f0faff;
}
.pc-pill-input:focus-visible + .pc-pill {
  outline: none;
  box-shadow: 0 0 0 3px rgba(44, 182, 236, 0.28);
}
.pc-pill-input:checked + .pc-pill {
  background: linear-gradient(135deg, var(--pc-primary, #2cb6ec) 0%, #4facfe 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 6px 14px rgba(44, 182, 236, 0.30);
}
.pc-pill-group--sm .pc-pill {
  padding: 0.36rem 0.78rem;
  font-size: 0.8rem;
}

/* Feature checkbox grid */
.pc-feature-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}
.pc-feature-chip {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0.85rem;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 12px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--pc-ink, #0f172a);
  transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, transform 0.12s ease;
  margin: 0;
}
.pc-feature-chip:hover {
  border-color: rgba(44, 182, 236, 0.45);
  background: #f6fbff;
}
.pc-feature-chip__input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}
.pc-feature-chip__check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 7px;
  border: 1.5px solid rgba(15, 23, 42, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: transparent;
  font-size: 0.7rem;
  transition: background 0.12s ease, border-color 0.12s ease, color 0.12s ease;
}
.pc-feature-chip__input:checked ~ .pc-feature-chip__check {
  background: linear-gradient(135deg, var(--pc-primary, #2cb6ec) 0%, #4facfe 100%);
  border-color: transparent;
  color: #ffffff;
}
.pc-feature-chip__input:checked ~ .pc-feature-chip__label {
  color: var(--pc-ink, #0f172a);
}
.pc-feature-chip__input:focus-visible ~ .pc-feature-chip__check {
  box-shadow: 0 0 0 3px rgba(44, 182, 236, 0.28);
}
.pc-feature-chip:has(.pc-feature-chip__input:checked) {
  border-color: rgba(44, 182, 236, 0.55);
  background: #f0faff;
  box-shadow: 0 4px 10px rgba(44, 182, 236, 0.10);
}

/* Smart questions disclosure */
.pc-contact-smart {
  margin: 0 0 1.4rem;
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 14px;
  background: #fafcff;
  overflow: hidden;
}
.pc-contact-smart__summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  cursor: pointer;
  user-select: none;
}
.pc-contact-smart__summary::-webkit-details-marker {
  display: none;
}
.pc-contact-smart__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(44, 182, 236, 0.12);
  color: var(--pc-primary, #2cb6ec);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pc-contact-smart__chev {
  margin-left: auto;
  color: var(--pc-muted, #64748b);
  transition: transform 0.18s ease;
}
.pc-contact-smart[open] .pc-contact-smart__chev {
  transform: rotate(180deg);
}
.pc-contact-smart__body {
  padding: 0.4rem 1.1rem 1.2rem;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.pc-smart-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px dashed rgba(15, 23, 42, 0.08);
}
.pc-smart-row:last-child {
  border-bottom: none;
}
.pc-smart-row__label {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--pc-ink, #0f172a);
  flex: 1 1 220px;
}

/* Submit row */
.pc-contact-form textarea.form-control {
  resize: none;
}

.pc-contact-form__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.6rem;
  padding-top: 1.2rem;
  border-top: 1px dashed rgba(15, 23, 42, 0.10);
}
.pc-contact-form__privacy {
  flex: 1 1 260px;
  margin: 0;
}
.pc-contact-submit {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding-left: 1.4rem;
  padding-right: 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.pc-contact-submit__spinner {
  display: none;
}
.pc-contact-submit.is-busy .pc-contact-submit__icon {
  display: none;
}
.pc-contact-submit.is-busy .pc-contact-submit__spinner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pc-contact-submit.is-busy {
  cursor: wait;
  opacity: 0.95;
}

/* Success card (replaces the form once submitted) */
.pc-contact-success {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(44, 182, 236, 0.30);
  background: linear-gradient(180deg, #f0faff 0%, #ffffff 70%);
  border-radius: 16px;
}
.pc-contact-success__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 0.8rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pc-primary, #2cb6ec) 0%, #4facfe 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 10px 24px rgba(44, 182, 236, 0.30);
}
.pc-contact-success__title {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
  color: var(--pc-ink, #0f172a);
}
.pc-contact-success__lead {
  margin: 0 0 1rem;
  color: var(--pc-muted, #64748b);
}
.pc-contact-success__ticket {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.9rem;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 14px;
  margin-bottom: 0.85rem;
}
.pc-contact-success__ticket-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pc-muted, #64748b);
}
.pc-contact-success__ticket-number {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: var(--pc-ink, #0f172a);
}
.pc-contact-success__copy {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: transparent;
  border: 1px solid rgba(15, 23, 42, 0.12);
  color: var(--pc-primary, #2cb6ec);
  border-radius: 999px;
  padding: 0.32rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.12s ease, color 0.12s ease, border-color 0.12s ease;
}
.pc-contact-success__copy:hover,
.pc-contact-success__copy:focus-visible {
  background: var(--pc-primary, #2cb6ec);
  color: #fff;
  border-color: var(--pc-primary, #2cb6ec);
  outline: none;
}
.pc-contact-success__copy.is-copied {
  background: #10b981;
  color: #fff;
  border-color: #10b981;
}
.pc-contact-success__hint {
  margin: 0.4rem 0 0;
  font-size: 0.88rem;
  color: var(--pc-muted, #64748b);
}

/* Aside */
.pc-contact-aside-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: 100px;
}
.pc-contact-aside-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 14px;
  padding: 1.25rem 1.3rem;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
}
.pc-contact-aside-card--soft {
  background: linear-gradient(180deg, rgba(44, 182, 236, 0.07) 0%, transparent 60%), #ffffff;
}
.pc-contact-aside-card--quick {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.03) 0%, transparent 60%), #ffffff;
}
.pc-contact-aside-card__icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(44, 182, 236, 0.12);
  color: var(--pc-primary, #2cb6ec);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.6rem;
}
.pc-contact-aside-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 0.45rem;
  color: var(--pc-ink, #0f172a);
}
.pc-contact-aside-card__text {
  font-size: 0.88rem;
  color: var(--pc-muted, #64748b);
  margin: 0 0 0.6rem;
}
.pc-contact-aside-card__link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--pc-primary, #2cb6ec);
  text-decoration: none;
}
.pc-contact-aside-card__link:hover {
  color: var(--pc-primary-dark, #0a86b3);
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   Live-demo aside card (sits above the email/quick-link cards)
   -------------------------------------------------------------------------- */
.pc-demo-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 1.4rem 1.4rem 1.5rem;
  border-radius: 18px;
  color: #f8fafc;
  background:
    radial-gradient(1100px 320px at -20% -40%, rgba(79, 172, 254, 0.55) 0%, transparent 55%),
    radial-gradient(900px 360px at 130% 130%, rgba(44, 182, 236, 0.55) 0%, transparent 55%),
    linear-gradient(155deg, #0b1d33 0%, #0f2a47 55%, #0b1d33 100%);
  border: 1px solid rgba(148, 197, 234, 0.22);
  box-shadow:
    0 18px 38px -16px rgba(11, 29, 51, 0.45),
    0 4px 14px -4px rgba(15, 23, 42, 0.18);
}
.pc-demo-card__halo {
  position: absolute;
  inset: -40% -10% auto auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 172, 254, 0.35) 0%, transparent 65%);
  filter: blur(8px);
  pointer-events: none;
  z-index: -1;
  animation: pcDemoFloat 9s ease-in-out infinite;
}
@keyframes pcDemoFloat {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(-12px, 14px); }
}
.pc-demo-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.7rem 0.25rem 0.55rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d6f0ff;
  background: rgba(79, 172, 254, 0.18);
  border: 1px solid rgba(79, 172, 254, 0.4);
  border-radius: 999px;
  margin-bottom: 0.85rem;
}
.pc-demo-card__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.8);
  animation: pcDemoPulse 2s ease-out infinite;
}
@keyframes pcDemoPulse {
  0%   { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); }
  70%  { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}
.pc-demo-card__title {
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 0.5rem;
  color: #ffffff;
}
.pc-demo-card__title span {
  display: inline-block;
  background: linear-gradient(90deg, #4facfe 0%, #7be9ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.pc-demo-card__lead {
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(226, 240, 255, 0.78);
  margin: 0 0 0.95rem;
}
.pc-demo-card__features {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}
.pc-demo-card__features li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.83rem;
  font-weight: 500;
  color: rgba(226, 240, 255, 0.88);
  padding: 0.32rem 0;
}
.pc-demo-card__features li i {
  flex: 0 0 1.05rem;
  font-size: 0.78rem;
  color: #7be9ff;
  text-align: center;
}
.pc-demo-card__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.7rem 0.95rem 0.7rem 1.05rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #2cb6ec 0%, #4facfe 100%);
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 10px 22px -10px rgba(44, 182, 236, 0.65);
  transition: transform 160ms ease, box-shadow 200ms ease, filter 200ms ease;
}
.pc-demo-card__cta:hover,
.pc-demo-card__cta:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 16px 28px -10px rgba(44, 182, 236, 0.75);
  outline: none;
}
.pc-demo-card__cta:active {
  transform: translateY(0);
}
.pc-demo-card__cta-label {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  min-width: 0;
}
.pc-demo-card__cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  font-size: 0.78rem;
  flex: 0 0 32px;
  transition: background 200ms ease, transform 160ms ease;
}
.pc-demo-card__cta:hover .pc-demo-card__cta-arrow,
.pc-demo-card__cta:focus-visible .pc-demo-card__cta-arrow {
  background: rgba(255, 255, 255, 0.28);
  transform: translate(2px, -2px);
}
.pc-demo-card__hint {
  margin: 0.75rem 0 0;
  font-size: 0.76rem;
  line-height: 1.45;
  color: rgba(226, 240, 255, 0.55);
}

@media (prefers-reduced-motion: reduce) {
  .pc-demo-card__halo,
  .pc-demo-card__pulse,
  .pc-demo-card__cta,
  .pc-demo-card__cta-arrow {
    animation: none !important;
    transition: none !important;
  }
}
.pc-contact-aside-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pc-contact-aside-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.9rem;
  color: var(--pc-ink, #0f172a);
  padding: 0.32rem 0;
}
.pc-contact-aside-card__list li i {
  margin-top: 4px;
  font-size: 0.85rem;
}
.pc-contact-aside-card__list--links li {
  padding: 0.45rem 0;
  border-bottom: 1px dashed rgba(15, 23, 42, 0.08);
}
.pc-contact-aside-card__list--links li:last-child {
  border-bottom: none;
}
.pc-contact-aside-card__list--links a {
  color: var(--pc-ink, #0f172a);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}
.pc-contact-aside-card__list--links a:hover {
  color: var(--pc-primary, #2cb6ec);
}

@media (max-width: 991.98px) {
  .pc-contact-aside-stack {
    position: static;
  }
}

@media (max-width: 575.98px) {
  /* Breadcrumb: keep on a single line on phones by tightening size, gap and
     letter-spacing. Worst case (very narrow phones) we let it overflow into a
     hidden scroll area rather than wrap mid-label. */
  .pc-page-hero .pc-breadcrumb {
    font-size: 0.7rem;
    letter-spacing: 0.02em;
    gap: 0.35rem;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .pc-page-hero .pc-breadcrumb::-webkit-scrollbar {
    display: none;
  }
  .pc-page-hero .pc-breadcrumb i {
    font-size: 0.55rem;
  }

  .pc-contact-form-card {
    border-radius: 14px;
  }
  .pc-contact-form-card__header {
    gap: 0.75rem;
  }
  .pc-contact-form-card__icon {
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
  }
  .pc-contact-form-card__title {
    font-size: 1.15rem;
  }
  .pc-contact-form__footer {
    justify-content: stretch;
  }
  .pc-contact-submit {
    width: 100%;
    justify-content: center;
  }
}

/* --------------------------------------------------------------------------
   Searchable ISD code dropdown (phone country picker)
   -------------------------------------------------------------------------- */
.pc-phone-field {
  position: relative;
  display: flex;
  align-items: stretch;
  border: 1px solid #d6dde5;
  border-radius: 0.65rem;
  background: #fff;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.pc-phone-field:focus-within {
  border-color: var(--pc-primary, #2cb6ec);
  box-shadow: 0 0 0 4px rgba(44, 182, 236, 0.15);
}
.pc-phone-field__country-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.75rem 0.35rem 0.85rem;
  margin: 0;
  background: #f6f8fb;
  border: none;
  border-right: 1px solid #e3e8ef;
  border-radius: 0.65rem 0 0 0.65rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--pc-ink, #0f172a);
  cursor: pointer;
  white-space: nowrap;
  transition: background 140ms ease, color 140ms ease;
  min-width: 7.25rem;
  justify-content: flex-start;
}
.pc-phone-field__country-btn:hover,
.pc-phone-field__country-btn:focus-visible {
  background: #eef5fb;
  color: var(--pc-primary, #2cb6ec);
  outline: none;
}
/* Higher specificity (.fi joined) so we override flag-icons' default 1.33em
   width without resorting to !important — flag-icons is loaded *after*
   marketing-page.css through $pageMeta['extra_head']. */
.pc-phone-field__flag,
.pc-phone-field__flag.fi {
  display: inline-block;
  width: 1.45em;
  height: 1.05em;
  line-height: 1;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.10), 0 1px 1.5px rgba(15, 23, 42, 0.08);
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-color: #e2e8f0;
  flex: 0 0 auto;
  vertical-align: -2px;
}
.pc-phone-field__flag.fi::before {
  content: '';
}
.pc-phone-field__code {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
}
.pc-phone-field__chev {
  font-size: 0.78rem;
  opacity: 0.65;
  margin-left: 0.05rem;
}
.pc-phone-field__country-btn[aria-expanded="true"] .pc-phone-field__chev {
  transform: rotate(180deg);
  opacity: 0.95;
}
/* Subtle pulse when JS auto-syncs the dial code from the country select,
   so the change doesn't feel ghostly. */
.pc-phone-field__country-btn.is-just-synced {
  animation: pcDialSyncPulse 900ms ease-out;
}
@keyframes pcDialSyncPulse {
  0%   { background: #f6f8fb; }
  20%  { background: rgba(44, 182, 236, 0.22); }
  100% { background: #f6f8fb; }
}
.pc-phone-field__number {
  flex: 1 1 auto;
  border: none !important;
  border-radius: 0 0.65rem 0.65rem 0 !important;
  box-shadow: none !important;
  background: transparent;
  padding-left: 0.85rem !important;
}
.pc-phone-field__number:focus {
  box-shadow: none !important;
}

/* Popover panel */
.pc-phone-field__menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 30;
  width: min(360px, calc(100vw - 2rem));
  background: #fff;
  border: 1px solid #e3e8ef;
  border-radius: 14px;
  box-shadow: 0 18px 38px -16px rgba(15, 23, 42, 0.25),
              0 4px 12px -4px rgba(15, 23, 42, 0.12);
  overflow: hidden;
  animation: pcDialPop 160ms ease-out;
}
@keyframes pcDialPop {
  from { opacity: 0; transform: translateY(-4px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}
.pc-phone-field__menu[hidden] {
  display: none;
}
.pc-phone-field__search-wrap {
  position: relative;
  padding: 0.65rem 0.75rem 0.55rem;
  border-bottom: 1px solid #f1f5f9;
  background: linear-gradient(180deg, #f9fbfd 0%, #ffffff 100%);
}
.pc-phone-field__search-icon {
  position: absolute;
  top: 50%;
  left: 1.55rem;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 0.85rem;
  pointer-events: none;
}
.pc-phone-field__search {
  width: 100%;
  padding: 0.5rem 0.7rem 0.5rem 2.1rem;
  border: 1px solid #d6dde5;
  border-radius: 8px;
  font-size: 0.92rem;
  background: #fff;
  transition: border-color 140ms ease, box-shadow 140ms ease;
}
.pc-phone-field__search:focus {
  outline: none;
  border-color: var(--pc-primary, #2cb6ec);
  box-shadow: 0 0 0 3px rgba(44, 182, 236, 0.18);
}
.pc-phone-field__list {
  list-style: none;
  margin: 0;
  padding: 0.35rem 0;
  max-height: 280px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
}
.pc-phone-field__list::-webkit-scrollbar {
  width: 8px;
}
.pc-phone-field__list::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
.pc-phone-field__option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.42rem 0.85rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--pc-ink, #0f172a);
  transition: background 100ms ease;
}
.pc-phone-field__option:hover,
.pc-phone-field__option.is-active {
  background: #eef7fd;
}
.pc-phone-field__option.is-selected {
  background: rgba(44, 182, 236, 0.12);
  color: var(--pc-primary, #2cb6ec);
  font-weight: 600;
}
.pc-phone-field__option-flag,
.pc-phone-field__option-flag.fi {
  display: inline-block;
  width: 1.4em;
  height: 1.05em;
  line-height: 1;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.10);
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-color: #e2e8f0;
  flex: 0 0 auto;
  vertical-align: -2px;
}
.pc-phone-field__option-flag.fi::before {
  content: '';
}
.pc-phone-field__option-name {
  flex: 1 1 auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pc-phone-field__option-code {
  flex: 0 0 auto;
  color: #6b7280;
  font-variant-numeric: tabular-nums;
  font-size: 0.85rem;
  letter-spacing: 0.01em;
}
.pc-phone-field__option.is-selected .pc-phone-field__option-code {
  color: var(--pc-primary, #2cb6ec);
}
.pc-phone-field__divider {
  list-style: none;
  margin: 0.35rem 0.85rem;
  height: 1px;
  background: #eef2f7;
}
.pc-phone-field__empty {
  padding: 1rem 0.85rem;
  text-align: center;
  color: #6b7280;
  font-size: 0.85rem;
}
.pc-phone-field__empty[hidden] {
  display: none;
}

/* --------------------------------------------------------------------------
   Searchable country combobox (contact form — mirrors ISD picker UX)
   -------------------------------------------------------------------------- */
.pc-country-field {
  position: relative;
}
.pc-country-field.is-invalid .pc-country-field__btn {
  border-color: var(--bs-danger, #dc3545);
}
.pc-country-field__btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 2.25rem 0.5rem 0.85rem;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  color: var(--bs-body-color, #212529);
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: var(--bs-border-radius-lg, 0.5rem);
  cursor: pointer;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.pc-country-field__btn:hover {
  border-color: #c9cfd6;
}
.pc-country-field__btn:focus {
  outline: 0;
  border-color: var(--pc-primary, #86b7fe);
  box-shadow: 0 0 0 0.25rem rgba(44, 182, 236, 0.25);
}
.pc-country-field__btn[aria-expanded="true"] {
  border-color: var(--pc-primary, #2cb6ec);
  box-shadow: 0 0 0 0.2rem rgba(44, 182, 236, 0.18);
}
.pc-country-field__btn-leading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 1.65rem;
  height: 1.25rem;
}
.pc-country-field__globe {
  color: #94a3b8;
  font-size: 1rem;
  line-height: 1;
}
.pc-country-field__btn-flag.fi:not(.d-none) {
  display: inline-block;
  width: 1.45em;
  height: 1.05em;
  line-height: 1;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.10);
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  vertical-align: -2px;
}
.pc-country-field__btn-flag.fi::before {
  content: '';
}
.pc-country-field__btn-label {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 500;
  color: var(--pc-ink, #0f172a);
}
.pc-country-field__chev {
  position: absolute;
  right: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.78rem;
  opacity: 0.65;
  pointer-events: none;
}
.pc-country-field__btn[aria-expanded="true"] .pc-country-field__chev {
  transform: translateY(-50%) rotate(180deg);
}
.pc-country-field__menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 35;
  background: #fff;
  border: 1px solid #e3e8ef;
  border-radius: 14px;
  box-shadow: 0 18px 38px -16px rgba(15, 23, 42, 0.25),
              0 4px 12px -4px rgba(15, 23, 42, 0.12);
  overflow: hidden;
  animation: pcDialPop 160ms ease-out;
}
.pc-country-field__menu[hidden] {
  display: none;
}
.pc-country-field__search-wrap {
  position: relative;
  padding: 0.65rem 0.75rem 0.55rem;
  border-bottom: 1px solid #f1f5f9;
  background: linear-gradient(180deg, #f9fbfd 0%, #ffffff 100%);
}
.pc-country-field__search-icon {
  position: absolute;
  top: 50%;
  left: 1.55rem;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 0.85rem;
  pointer-events: none;
}
.pc-country-field__search {
  width: 100%;
  padding: 0.5rem 0.7rem 0.5rem 2.1rem !important;
  border: 1px solid #d6dde5 !important;
  border-radius: 8px !important;
  font-size: 0.92rem !important;
  min-height: 0;
}
.pc-country-field__search:focus {
  outline: none;
  border-color: var(--pc-primary, #2cb6ec) !important;
  box-shadow: 0 0 0 3px rgba(44, 182, 236, 0.18) !important;
}
.pc-country-field__list {
  list-style: none;
  margin: 0;
  padding: 0.35rem 0;
  max-height: 280px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
}
.pc-country-field__list::-webkit-scrollbar {
  width: 8px;
}
.pc-country-field__list::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
.pc-country-field__option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0.85rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--pc-ink, #0f172a);
  transition: background 100ms ease;
}
.pc-country-field__option:hover,
.pc-country-field__option.is-active {
  background: #eef7fd;
}
.pc-country-field__option.is-selected {
  background: rgba(44, 182, 236, 0.12);
  color: var(--pc-primary, #2cb6ec);
  font-weight: 600;
}
.pc-country-field__option-flag,
.pc-country-field__option-flag.fi {
  display: inline-block;
  width: 1.4em;
  height: 1.05em;
  line-height: 1;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.10);
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  flex: 0 0 auto;
  vertical-align: -2px;
}
.pc-country-field__option-flag.fi::before {
  content: '';
}
.pc-country-field__option-flag--empty {
  background: #e2e8f0;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.08);
}
.pc-country-field__option-name {
  flex: 1 1 auto;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pc-country-field__divider {
  list-style: none;
  margin: 0.35rem 0.85rem;
  height: 1px;
  background: #eef2f7;
}
.pc-country-field__empty {
  padding: 1rem 0.85rem;
  text-align: center;
  color: #6b7280;
  font-size: 0.85rem;
}
.pc-country-field__empty[hidden] {
  display: none;
}

/* --------------------------------------------------------------------------
   WhatsApp question block (sits under the phone row)
   -------------------------------------------------------------------------- */
.pc-whatsapp-block {
  background: linear-gradient(180deg, rgba(37, 211, 102, 0.05) 0%, rgba(37, 211, 102, 0.0) 100%);
  border: 1px solid rgba(37, 211, 102, 0.18);
  border-radius: 12px;
  padding: 0.95rem 1.1rem 1rem;
  transition: border-color 200ms ease, background 200ms ease;
}
.pc-whatsapp-block[data-state="available"] {
  border-color: rgba(37, 211, 102, 0.55);
  background: linear-gradient(180deg, rgba(37, 211, 102, 0.10) 0%, rgba(37, 211, 102, 0.02) 100%);
}
.pc-whatsapp-block[data-state="unavailable"] {
  border-color: rgba(15, 23, 42, 0.10);
  background: #f8fafc;
}
.pc-whatsapp-block__header {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.7rem;
}
.pc-whatsapp-block__icon {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #25d366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  box-shadow: 0 6px 14px -6px rgba(37, 211, 102, 0.6);
}
.pc-whatsapp-block__title {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--pc-ink, #0f172a);
  line-height: 1.2;
}
.pc-whatsapp-block__hint {
  font-size: 0.78rem;
  color: #6b7280;
  margin-top: 0.15rem;
}
.pc-whatsapp-block__col-contact {
  transition: opacity 180ms ease;
}
.pc-whatsapp-block__col-contact.is-disabled {
  opacity: 0.42;
  pointer-events: none;
}
.pc-whatsapp-block .pc-pill-group--sm .pc-pill {
  padding: 0.35rem 0.85rem;
  font-size: 0.85rem;
}
.pc-whatsapp-block .pc-pill-input:checked + .pc-pill {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
  box-shadow: 0 4px 10px -4px rgba(37, 211, 102, 0.55);
}

@media (max-width: 575.98px) {
  .pc-phone-field__country-btn {
    min-width: 6rem;
    padding-left: 0.65rem;
    padding-right: 0.55rem;
  }
  .pc-phone-field__menu {
    width: calc(100vw - 2.4rem);
  }
  .pc-whatsapp-block {
    padding: 0.85rem 0.85rem 0.9rem;
  }
  .pc-whatsapp-block__icon {
    width: 32px;
    height: 32px;
    font-size: 0.95rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pc-pill,
  .pc-feature-chip,
  .pc-contact-smart__chev,
  .pc-contact-success__copy,
  .pc-phone-field,
  .pc-phone-field__country-btn,
  .pc-phone-field__chev,
  .pc-phone-field__option,
  .pc-country-field__btn,
  .pc-country-field__option,
  .pc-whatsapp-block,
  .pc-whatsapp-block__col-contact {
    transition: none;
  }
  .pc-phone-field__menu,
  .pc-country-field__menu,
  .pc-phone-field__country-btn.is-just-synced {
    animation: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pc-capability .pc-cap-icon {
    animation: none;
  }
}

/* --------------------------------------------------------------------------
   Legal pages (privacy policy, terms & conditions)
   -------------------------------------------------------------------------- */
.pc-legal-body {
  color: var(--pc-ink);
  line-height: 1.75;
}

.pc-legal-body h2 {
  font-family: 'Plus Jakarta Sans', 'DM Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--pc-ink);
  margin-top: 2.5rem;
  margin-bottom: 0.65rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.pc-legal-body h2:first-child {
  margin-top: 0;
}

/* Headings produced by the admin rich-text editor (formatBlock h3/h4/h5/h6). */
.pc-legal-body h3,
.pc-legal-body h4,
.pc-legal-body h5,
.pc-legal-body h6 {
  font-family: 'Plus Jakarta Sans', 'DM Sans', sans-serif;
  font-weight: 700;
  color: var(--pc-ink);
  margin-top: 2rem;
  margin-bottom: 0.55rem;
}
.pc-legal-body h3 { font-size: 1.08rem; }
.pc-legal-body h4 { font-size: 1.02rem; }
.pc-legal-body h5,
.pc-legal-body h6 { font-size: 0.96rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--pc-primary-dark); }
.pc-legal-body strong { font-weight: 700; }
.pc-legal-body em { font-style: italic; }

.pc-legal-body p,
.pc-legal-body ul,
.pc-legal-body ol {
  font-size: 0.975rem;
  color: var(--pc-ink);
  margin-bottom: 1rem;
}

.pc-legal-body ul,
.pc-legal-body ol {
  padding-left: 1.5rem;
}

.pc-legal-body li {
  margin-bottom: 0.35rem;
}

.pc-legal-body a {
  color: var(--pc-primary-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pc-legal-body a:hover {
  color: var(--pc-primary);
}
