/* PingReports marketing site — light theme. Brand palette pulled from the
   logo: deep blue for the Ping wordmark, leaf green for Reports, dark
   ink for body copy. Built mobile-first, fluid type, no framework. */

:root {
  --pr-blue: #1572d6;
  --pr-blue-deep: #0b51a0;
  --pr-green: #4fb24a;
  --pr-green-deep: #2c8a3f;
  --pr-ink: #15233e;
  --pr-ink-soft: #4a5b7a;
  --pr-mute: #6b7995;
  --pr-bg: #ffffff;
  --pr-bg-soft: #f5f8fc;
  --pr-bg-tint: #eef5fd;
  --pr-border: #dde5f1;
  --pr-warn: #f59e0b;
  --pr-shadow-sm: 0 2px 8px rgba(21, 35, 62, 0.06);
  --pr-shadow-md: 0 10px 30px rgba(21, 35, 62, 0.08);
  --pr-shadow-lg: 0 20px 50px rgba(21, 35, 62, 0.12);
  --pr-radius: 14px;
  --pr-radius-sm: 10px;
  --pr-radius-pill: 999px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--pr-ink);
  background: var(--pr-bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--pr-blue); text-decoration: none; }
a:hover { color: var(--pr-blue-deep); text-decoration: underline; }

h1, h2, h3, h4 { color: var(--pr-ink); font-weight: 700; letter-spacing: -0.01em; margin: 0 0 0.6em; }
h1 { font-size: clamp(2rem, 4.6vw, 3.4rem); line-height: 1.1; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); line-height: 1.15; }
h3 { font-size: 1.25rem; line-height: 1.25; }
p  { color: var(--pr-ink-soft); margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 22px;
}

/* ---------- top nav ---------- */
.pr-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--pr-border);
}
.pr-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 0;
}
.pr-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.pr-logo img {
  height: 68px;
  width: auto;
  display: block;
}
@media (max-width: 720px) {
  .pr-logo img { height: 52px; }
}
.pr-menu {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.pr-menu a {
  color: var(--pr-ink);
  font-weight: 500;
  font-size: 0.96rem;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}
.pr-menu a:hover,
.pr-menu a.active {
  color: var(--pr-blue);
  border-bottom-color: var(--pr-green);
  text-decoration: none;
}
.pr-nav-cta { display: flex; gap: 10px; align-items: center; }

/* Language switcher in nav */
.pr-lang {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-right: 4px;
  color: var(--pr-mute);
}
.pr-lang a {
  color: var(--pr-mute);
  padding: 4px 7px;
  border-radius: var(--pr-radius-sm);
  text-decoration: none;
  transition: color .15s, background .15s;
}
.pr-lang a:hover { color: var(--pr-blue); background: var(--pr-bg-tint); text-decoration: none; }
.pr-lang a.is-active { color: var(--pr-blue); cursor: default; }
.pr-lang a.is-active:hover { background: transparent; }
.pr-lang .pr-lang-sep { color: var(--pr-border); }

/* Mobile burger */
.pr-burger {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  width: 38px;
  height: 38px;
}
.pr-burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--pr-ink);
  margin: 4px auto;
  transition: transform .2s, opacity .2s;
}
.pr-nav.is-open .pr-burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.pr-nav.is-open .pr-burger span:nth-child(2) { opacity: 0; }
.pr-nav.is-open .pr-burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--pr-radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary {
  background: var(--pr-blue);
  color: #fff;
  box-shadow: 0 6px 16px rgba(21, 114, 214, 0.25);
}
.btn-primary:hover { background: var(--pr-blue-deep); }
.btn-primary:hover { color: #fff; box-shadow: 0 10px 24px rgba(21, 114, 214, 0.35); }
.btn-ghost {
  background: transparent;
  color: var(--pr-blue);
  border-color: var(--pr-border);
}
.btn-ghost:hover { background: var(--pr-bg-tint); border-color: var(--pr-blue); color: var(--pr-blue-deep); }
.btn-lg { padding: 14px 28px; font-size: 1.02rem; }
.btn svg { width: 16px; height: 16px; }

/* ---------- hero ---------- */
.hero {
  background: var(--pr-bg-soft);
  padding: 76px 0 88px;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffffcc;
  border: 1px solid var(--pr-border);
  color: var(--pr-blue);
  padding: 6px 14px;
  border-radius: var(--pr-radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 18px;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--pr-green);
  box-shadow: 0 0 0 4px rgba(79, 178, 74, 0.18);
}
.hero h1 .accent { color: var(--pr-green); }
.hero p.lead {
  font-size: 1.18rem;
  color: var(--pr-ink-soft);
  margin: 8px 0 28px;
  max-width: 540px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta {
  margin-top: 22px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--pr-mute);
  font-size: 0.88rem;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 6px; }
.hero-meta svg { width: 14px; height: 14px; color: var(--pr-green); }

/* mock product preview on the right */
.hero-mock {
  position: relative;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--pr-shadow-lg);
  padding: 14px;
  border: 1px solid var(--pr-border);
}
.hero-mock::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 22px;
  background: var(--pr-blue);
  z-index: -1;
  filter: blur(20px);
  opacity: 0.15;
}
.hero-mock-bar {
  display: flex;
  gap: 6px;
  padding: 0 4px 10px;
}
.hero-mock-bar span {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: #e4ebf3;
}
.hero-mock-bar span:nth-child(1) { background: #f87171; }
.hero-mock-bar span:nth-child(2) { background: #fbbf24; }
.hero-mock-bar span:nth-child(3) { background: #34d399; }
.hero-mock svg.chart {
  width: 100%;
  height: 220px;
  display: block;
}
.hero-mock-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 10px;
}
.hero-mock-kpi {
  background: var(--pr-bg-soft);
  border-radius: var(--pr-radius-sm);
  padding: 10px 12px;
}
.hero-mock-kpi .lbl { font-size: 0.74rem; color: var(--pr-mute); text-transform: uppercase; letter-spacing: 0.04em; }
.hero-mock-kpi .val { font-size: 1.1rem; font-weight: 700; color: var(--pr-ink); font-variant-numeric: tabular-nums; }

/* ---------- logos strip ---------- */
.logos-strip {
  border-bottom: 1px solid var(--pr-border);
  padding: 26px 0;
  background: #fff;
}
.logos-strip .label {
  text-align: center;
  font-size: 0.78rem;
  color: var(--pr-mute);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin: 0 0 14px;
}
.logos-row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  opacity: .65;
}
.logos-row span {
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--pr-ink-soft);
  font-size: 1.05rem;
}

/* ---------- generic section ---------- */
section { padding: 84px 0; }
body.page-about section:not(.page-hero):not(.cta-band) { padding: 20px 0; }
section.alt { background: var(--pr-bg-soft); }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-head .eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pr-green-deep);
  margin-bottom: 12px;
}
.section-head h2 { margin-bottom: 14px; }
.section-head p { font-size: 1.08rem; color: var(--pr-ink-soft); margin: 0; }

/* ---------- features grid ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.feature {
  background: #fff;
  border: 1px solid var(--pr-border);
  border-radius: var(--pr-radius);
  padding: 26px 24px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--pr-shadow-md);
  border-color: rgba(21, 114, 214, 0.35);
}
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--pr-bg-tint);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--pr-blue);
  margin-bottom: 18px;
}
.feature-icon svg { width: 22px; height: 22px; }
.feature h3 { font-size: 1.1rem; margin-bottom: 8px; }
.feature p { font-size: 0.95rem; color: var(--pr-ink-soft); margin: 0; }

/* ---------- stats band ---------- */
.stats {
  background: var(--pr-blue);
  color: #fff;
  padding: 56px 0;
}
.stats h3, .stats p { color: #fff; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  text-align: center;
}
.stats-grid .num {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  margin: 0;
  line-height: 1;
}
.stats-grid .lbl { font-size: 0.88rem; opacity: 0.85; margin-top: 6px; }

/* ---------- probe map (dark band) ---------- */
.pr-probemap {
  background: var(--pr-bg-soft);
  color: var(--pr-ink);
  padding: 56px 0 64px;
  border-bottom: 1px solid var(--pr-border);
}
.pr-probemap-head { color: var(--pr-ink); margin-bottom: 28px; }
.pr-probemap-head h2 { color: var(--pr-ink); }
.pr-probemap-head p { color: var(--pr-mute); }
.pr-probemap-head .eyebrow { color: var(--pr-green-deep); }
.pr-probemap-head .accent-green { color: var(--pr-green); }
.pr-probemap-frame {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  aspect-ratio: 1000 / 500;
  border-radius: 14px;
  overflow: hidden;
}
.pr-map-svg {
  width: 100%;
  height: 100%;
  display: block;
}
.pr-country {
  fill: rgba(21, 114, 214, 0.07);
  stroke: rgba(21, 114, 214, 0.35);
  stroke-width: 0.6;
  vector-effect: non-scaling-stroke;
}
.pr-probe .pr-core {
  fill: #ffffff;
  stroke: #0b51a0;
  stroke-width: 1.2;
  filter: drop-shadow(0 1px 2px rgba(11, 81, 160, 0.35));
}
.pr-probe .pr-glow {
  fill: #1572d6;
  opacity: 0.45;
}
.pr-arc {
  fill: none;
  stroke: var(--pr-green-deep);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-dasharray: 1 0;
  animation: pr-arc-travel 4.5s ease-in-out infinite;
}
@keyframes pr-arc-travel {
  0%   { stroke-dasharray: 0 1000; stroke-dashoffset: 0;    opacity: 0; }
  10%  { opacity: 1; }
  60%  { stroke-dasharray: 220 800; stroke-dashoffset: -800; opacity: 1; }
  85%  { opacity: 0.3; }
  100% { stroke-dasharray: 220 800; stroke-dashoffset: -1100; opacity: 0; }
}
.pr-probemap-cities {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 12px;
  margin-top: 28px;
  font-size: 0.88rem;
  color: var(--pr-mute);
}
.pr-probemap-cities span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: var(--pr-bg);
  border: 1px solid var(--pr-border);
  border-radius: 999px;
  box-shadow: 0 1px 2px rgba(15, 32, 65, 0.04);
}
.pr-probemap-cities span i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pr-green);
  box-shadow: 0 0 0 3px rgba(79, 178, 74, 0.18);
}
@media (prefers-reduced-motion: reduce) {
  .pr-arc { animation: none; }
}

/* ---------- testimonials ---------- */
.quote {
  background: #fff;
  border: 1px solid var(--pr-border);
  border-radius: var(--pr-radius);
  padding: 28px;
  box-shadow: var(--pr-shadow-sm);
}
.quote blockquote { margin: 0 0 18px; font-size: 1.05rem; line-height: 1.55; color: var(--pr-ink); }
.quote blockquote::before { content: '\201C'; font-size: 2.4rem; line-height: 0; color: var(--pr-green); vertical-align: -0.25em; margin-right: 4px; }
.quote-byline { display: flex; align-items: center; gap: 12px; }
.quote-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--pr-blue);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.quote-byline .who { font-weight: 600; color: var(--pr-ink); font-size: 0.96rem; }
.quote-byline .role { font-size: 0.84rem; color: var(--pr-mute); }

/* ---------- pricing ---------- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  align-items: stretch;
}
.price {
  background: #fff;
  border: 1px solid var(--pr-border);
  border-radius: var(--pr-radius);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.price.popular {
  border-color: rgba(21,114,214,0.55);
  box-shadow: var(--pr-shadow-md);
}
.price.popular::before {
  content: 'Most popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pr-blue);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--pr-radius-pill);
}
.price h3 { font-size: 1.2rem; }
.price-amount { display: flex; align-items: baseline; gap: 4px; margin: 12px 0 4px; }
.price-amount .num { font-size: 2.4rem; font-weight: 800; color: var(--pr-ink); }
.price-amount .per { color: var(--pr-mute); font-size: 0.92rem; }
.price ul { list-style: none; padding: 0; margin: 22px 0 28px; flex: 1; }
.price ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--pr-ink-soft);
  font-size: 0.96rem;
}
.price ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--pr-green);
}
.price ul li::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 16px;
  width: 8px; height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

/* ---------- big CTA ---------- */
.cta-band {
  background: var(--pr-bg-tint);
  border-top: 1px solid var(--pr-border);
  border-bottom: 1px solid var(--pr-border);
  padding: 60px 0;
  text-align: center;
}
.cta-band h2 { margin-bottom: 12px; }
.cta-band p { max-width: 600px; margin: 0 auto 26px; font-size: 1.06rem; }

/* ---------- footer ---------- */
.footer {
  background: #fff;
  border-top: 1px solid var(--pr-border);
  padding: 50px 0 28px;
  margin-top: auto;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}
.footer h4 { font-size: 0.84rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--pr-mute); margin-bottom: 14px; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 8px; }
.footer ul a { color: var(--pr-ink-soft); font-size: 0.94rem; }
.footer ul a:hover { color: var(--pr-blue); }
.footer-brand img { height: 60px; }
.footer-brand p { font-size: 0.92rem; color: var(--pr-mute); margin: 12px 0 0; max-width: 320px; }
.footer-bottom {
  border-top: 1px solid var(--pr-border);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.84rem;
  color: var(--pr-mute);
  gap: 18px;
  flex-wrap: wrap;
}
.footer-bottom .legal a { color: var(--pr-mute); margin-left: 18px; }
.footer-bottom .legal a:hover { color: var(--pr-blue); }

/* ---------- inner pages ---------- */
.page-hero {
  background: var(--pr-bg-soft);
  padding: 60px 0 40px;
  border-bottom: 1px solid var(--pr-border);
  text-align: center;
}
.page-hero h1 { margin-bottom: 10px; }
.page-hero p { font-size: 1.06rem; max-width: 640px; margin: 0 auto; }

.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { margin-top: 2em; }
.prose h3 { margin-top: 1.6em; color: var(--pr-ink); }
.prose p, .prose li { font-size: 1rem; color: var(--pr-ink-soft); }
.prose ul { padding-left: 20px; }
.prose code { background: var(--pr-bg-soft); padding: 1px 6px; border-radius: 4px; font-size: 0.9rem; color: var(--pr-ink); }
.prose .updated { font-size: 0.85rem; color: var(--pr-mute); margin-top: 0; }
.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1em 0;
  font-size: 0.94rem;
}
.prose th, .prose td {
  border-bottom: 1px solid var(--pr-border);
  padding: 10px 8px;
  text-align: left;
  vertical-align: top;
}
.prose th { font-weight: 600; color: var(--pr-ink); }

/* ---------- responsive ---------- */
@media (max-width: 920px) {
  .hero { padding: 60px 0 70px; }
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-mock { max-width: 540px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .pr-burger { display: inline-flex; align-items: center; justify-content: center; }
  .pr-menu {
    position: fixed;
    inset: 78px 0 auto 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 14px 22px;
    border-bottom: 1px solid var(--pr-border);
    box-shadow: var(--pr-shadow-md);
    transform: translateY(calc(-100% - 100px));
    transition: transform .25s ease, visibility .25s ease;
    visibility: hidden;
  }
  .pr-nav.is-open .pr-menu { transform: translateY(0); visibility: visible; }
  .pr-menu a { display: block; padding: 12px 4px; border-bottom: 1px solid var(--pr-border); border-radius: 0; }
  .pr-menu a:last-child { border-bottom: 0; }
  .pr-nav-cta .btn-ghost { display: none; }
  section { padding: 60px 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-bottom .legal a { margin-left: 0; margin-right: 18px; }
}

/* ---------- Screenshots gallery ---------- */
.pr-shots {
  max-width: 1100px;
  margin: 0 auto;
}
.pr-shots-window {
  position: relative;
  background: #fff;
  border: 1px solid var(--pr-border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 24px 60px -20px rgba(15, 32, 64, 0.20),
    0 6px 18px -6px rgba(15, 32, 64, 0.10);
}
.pr-shots-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #f3f6fb;
  border-bottom: 1px solid var(--pr-border);
}
.pr-shots-chrome span {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: #cfd8e6;
}
.pr-shots-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  background: #0c1019;
}
.pr-shots-track::-webkit-scrollbar { display: none; }
.pr-shots-track .pr-shot {
  flex: 0 0 100%;
  width: 100%;
  height: auto;
  display: block;
  scroll-snap-align: start;
  cursor: zoom-in;
}
.pr-shots-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.94);
  border: 1px solid var(--pr-border);
  color: var(--pr-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .15s, transform .15s;
  z-index: 2;
  box-shadow: 0 6px 18px rgba(15,32,64,0.18);
}
.pr-shots-arrow:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.06);
}
.pr-shots-arrow svg { width: 20px; height: 20px; }
.pr-shots-prev { left: 14px; }
.pr-shots-next { right: 14px; }
.pr-shots-caption {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
  font-size: 0.98rem;
  color: var(--pr-ink-soft);
  text-align: center;
}
.pr-shots-counter {
  display: inline-block;
  font-variant-numeric: tabular-nums;
  background: var(--pr-bg-tint);
  border: 1px solid var(--pr-border);
  color: var(--pr-blue);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.pr-shots-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.pr-shots-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(15, 32, 64, 0.18);
  cursor: pointer;
  transition: background .15s, transform .15s;
}
.pr-shots-dot:hover { background: rgba(15, 32, 64, 0.4); }
.pr-shots-dot[aria-current="true"] {
  background: var(--pr-blue);
  transform: scale(1.35);
}
@media (max-width: 720px) {
  .pr-shots-arrow { width: 36px; height: 36px; }
  .pr-shots-arrow svg { width: 16px; height: 16px; }
  .pr-shots-prev { left: 8px; }
  .pr-shots-next { right: 8px; }
  .pr-shots-chrome { padding: 10px 12px; }
  .pr-shots-chrome span { width: 9px; height: 9px; }
}

/* ---------- Lightbox ---------- */
.pr-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 12, 22, 0.88);
  backdrop-filter: blur(4px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4vh 5vw;
}
.pr-lightbox[hidden] { display: none; }
.pr-lightbox-img {
  max-width: 100%;
  max-height: 92vh;
  width: auto;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  cursor: zoom-out;
}
.pr-lightbox-close,
.pr-lightbox-prev,
.pr-lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .15s;
}
.pr-lightbox-close:hover,
.pr-lightbox-prev:hover,
.pr-lightbox-next:hover {
  background: rgba(255,255,255,0.22);
}
.pr-lightbox-close { top: 18px; right: 18px; }
.pr-lightbox-prev { left: 18px; top: 50%; transform: translateY(-50%); }
.pr-lightbox-next { right: 18px; top: 50%; transform: translateY(-50%); }
.pr-lightbox svg { width: 22px; height: 22px; }
@media (max-width: 720px) {
  .pr-lightbox-close, .pr-lightbox-prev, .pr-lightbox-next { width: 38px; height: 38px; }
  .pr-lightbox svg { width: 18px; height: 18px; }
  .pr-lightbox-close { top: 10px; right: 10px; }
  .pr-lightbox-prev { left: 8px; }
  .pr-lightbox-next { right: 8px; }
}

/* ---------- Mobile pass: nav crowding, table overflow, probemap aspect, hero typography ---------- */
.pr-mobile-only { display: none; } /* hidden on desktop; plain <li>s shown only in the burger menu */
@media (max-width: 720px) {
  .pr-mobile-only { display: list-item !important; }
}
@media (max-width: 720px) {
  /* Tighter side padding on phone */
  .container { padding: 0 16px; }

  /* Nav: hide the inline lang switcher and the login ghost button on mobile — burger menu carries them */
  .pr-nav-cta .pr-lang { display: none !important; }
  .pr-nav-cta .btn-ghost { display: none !important; }
  .pr-nav-inner { gap: 10px; }
  .pr-nav-cta { gap: 6px; }

  /* Primary CTA in nav: compact text on mobile */
  .pr-nav-cta .btn-primary {
    padding: 8px 14px;
    font-size: 0.88rem;
  }

  /* Burger menu: extra LI rows shown on mobile only (login + language) */
  .pr-mobile-only { display: list-item; }
  .pr-menu .pr-menu-lang-line { padding: 12px 4px; border-bottom: 0; }
  .pr-menu .pr-menu-lang-line a {
    display: inline !important;
    padding: 0 12px 0 0 !important;
    border-bottom: 0 !important;
    color: var(--pr-mute);
    font-weight: 600;
  }
  .pr-menu .pr-menu-lang-line a.is-active { color: var(--pr-blue); }
  .pr-menu .pr-menu-lang-line span { color: var(--pr-border); padding: 0 4px; }

  /* Probemap was 2:1 (1000x500). On phone that's ~170px tall — unreadable.
     Switch to 4:3 so the map gets vertical real estate. */
  .pr-probemap-frame { aspect-ratio: 4 / 3; }
  .pr-probemap-cities { font-size: 0.82rem; }
  .pr-probemap-cities span { padding: 4px 9px; }

  /* Tables (privacy policy / pricing FAQ) overflow horizontally on phone */
  .prose table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    font-size: 0.86rem;
  }
  .prose table th, .prose table td { white-space: normal; min-width: 140px; padding: 8px 6px; }

  /* Hero typography a touch smaller for narrow viewports */
  h1 { font-size: clamp(1.85rem, 6vw, 2.4rem); }
  .hero p.lead { font-size: 1.04rem; }
  .hero-eyebrow { font-size: 0.76rem; padding: 5px 12px; }
  .hero-meta { gap: 10px 16px; font-size: 0.82rem; }
  .hero-ctas { gap: 10px; }
  .hero-ctas .btn { flex: 1 1 auto; justify-content: center; }

  /* Section heading lead text — wrap nicer */
  .section-head p { font-size: 0.98rem; }

  /* CTA band tighter */
  .cta-band h2 { font-size: 1.4rem; }
  .cta-band p { font-size: 0.98rem; }

  /* Make every img/SVG inside content stop at viewport width */
  section img, .prose img { max-width: 100%; height: auto; }

  /* Pricing card narrow padding */
  .price { padding: 22px 18px; }
}

/* ---------- Anti-spam email link ---------- */
.email-link {
  display: inline-block;
  font-weight: 600;
  color: var(--pr-blue);
  text-decoration: none;
  border-bottom: 1px dashed currentColor;
  letter-spacing: 0.01em;
}
.email-link:hover { color: var(--pr-blue-deep); }
.email-link .email-at::before { content: "\0040"; } /* @ via Unicode escape */
