/* Local-only city-service template prototype — not included by production pages. */
:root {
  --lp-ink: #17232b;
  --lp-muted: #60717c;
  --lp-line: #dbe5ea;
  --lp-surface: #f4f8fa;
  --lp-blue: #126e9f;
  --lp-blue-dark: #0a4768;
  --lp-blue-light: #dceff7;
  --lp-teal: #b8e6e1;
  --lp-white: #fff;
  --lp-shadow: 0 18px 50px rgba(21, 53, 70, .09);
}

body {
  background: var(--lp-white);
  color: var(--lp-ink);
}

.lpv2-page {
  min-height: 100vh;
  overflow: hidden;
}

.lpv2-container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.lpv2-site-header {
  position: relative;
  z-index: 5;
  background: #102c3d;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.lpv2-site-header__inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.lpv2-site-header img {
  width: 220px;
  height: auto;
  filter: brightness(0) invert(1);
}

.lpv2-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
}

.lpv2-nav a {
  color: rgba(255, 255, 255, .76);
}

.lpv2-nav a:hover,
.lpv2-nav a[aria-current="page"] {
  color: #fff;
}

.lpv2-header-cta {
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 999px;
}

.lpv2-hero {
  position: relative;
  color: #fff;
  background:
    radial-gradient(circle at 12% 20%, rgba(184, 230, 225, .2), transparent 28%),
    radial-gradient(circle at 86% 8%, rgba(160, 207, 231, .28), transparent 26%),
    linear-gradient(128deg, #092f46 0%, #0b5579 52%, #126e9f 100%);
  padding: 40px 0 70px;
}

.lpv2-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .16;
  pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.75) .7px, transparent .7px);
  background-size: 17px 17px;
}

.lpv2-hero > * {
  position: relative;
  z-index: 1;
}

.lpv2-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 42px;
  color: rgba(255, 255, 255, .62);
  font-family: var(--font-ui);
  font-size: 13px;
}

.lpv2-breadcrumbs a {
  color: rgba(255, 255, 255, .8);
}

.lpv2-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(310px, .7fr);
  gap: 64px;
  align-items: center;
}

.lpv2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #bfe9f8;
}

.lpv2-eyebrow::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--lp-teal);
}

.lpv2-hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--font-h);
  font-size: clamp(2.7rem, 5.8vw, 5.4rem);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -1.5px;
  text-transform: uppercase;
}

.lpv2-hero__lead {
  max-width: 700px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .82);
  font-family: var(--font-ui);
  font-size: clamp(1.04rem, 1.7vw, 1.24rem);
  line-height: 1.7;
}

.lpv2-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.lpv2-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.lpv2-button--primary {
  background: #fff;
  color: var(--lp-blue-dark);
}

.lpv2-button--primary:hover {
  background: var(--lp-teal);
  color: var(--lp-blue-dark);
}

.lpv2-button--secondary {
  border-color: rgba(255, 255, 255, .38);
  color: #fff;
}

.lpv2-button--secondary:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, .08);
}

.lpv2-snapshot {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 20px;
  background: rgba(5, 34, 50, .48);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .2);
  backdrop-filter: blur(10px);
}

.lpv2-snapshot__label {
  color: rgba(255, 255, 255, .6);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.lpv2-snapshot h2 {
  margin: 6px 0 22px;
  color: #fff;
  font-family: var(--font-h);
  font-size: 1.7rem;
  font-weight: 500;
  text-transform: uppercase;
}

.lpv2-snapshot dl {
  margin: 0;
}

.lpv2-snapshot__row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.lpv2-snapshot dt {
  color: rgba(255, 255, 255, .56);
  font-size: 13px;
}

.lpv2-snapshot dd {
  margin: 0;
  color: #fff;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
}

.lpv2-trust-strip {
  position: relative;
  z-index: 2;
  margin-top: -28px;
}

.lpv2-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--lp-line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--lp-shadow);
}

.lpv2-trust-item {
  padding: 20px 22px;
  border-right: 1px solid var(--lp-line);
}

.lpv2-trust-item:last-child {
  border-right: 0;
}

.lpv2-trust-item strong,
.lpv2-trust-item span {
  display: block;
}

.lpv2-trust-item strong {
  color: var(--lp-ink);
  font-family: var(--font-ui);
  font-size: 15px;
}

.lpv2-trust-item span {
  margin-top: 2px;
  color: var(--lp-muted);
  font-size: 13px;
}

.lpv2-section {
  padding: 84px 0;
}

.lpv2-section--soft {
  background: var(--lp-surface);
}

.lpv2-section--dark {
  color: #fff;
  background: #102c3d;
}

.lpv2-section-heading {
  max-width: 740px;
  margin-bottom: 38px;
}

.lpv2-section-heading--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.lpv2-kicker {
  margin: 0 0 10px;
  color: var(--lp-blue);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.lpv2-section--dark .lpv2-kicker {
  color: #9fd9ee;
}

.lpv2-section h2 {
  margin: 0;
  color: var(--lp-ink);
  font-family: var(--font-h);
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 500;
  line-height: 1.05;
  text-transform: uppercase;
}

.lpv2-section--dark h2 {
  color: #fff;
}

.lpv2-section-heading > p:last-child {
  margin: 16px 0 0;
  color: var(--lp-muted);
  font-size: 17px;
  line-height: 1.75;
}

.lpv2-section--dark .lpv2-section-heading > p:last-child {
  color: rgba(255, 255, 255, .68);
}

.lpv2-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: 42px;
  align-items: start;
}

.lpv2-prose p {
  margin: 0 0 18px;
  color: #41535e;
  font-size: 17px;
  line-height: 1.85;
}

.lpv2-prose p:first-child {
  color: var(--lp-ink);
  font-size: 20px;
  line-height: 1.7;
}

.lpv2-notice {
  padding: 28px;
  border: 1px solid #bddce9;
  border-radius: 16px;
  background: #eef9fd;
}

.lpv2-notice__icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--lp-blue);
  color: #fff;
  font-family: var(--font-ui);
  font-weight: 800;
}

.lpv2-notice h3 {
  margin: 0 0 8px;
  color: var(--lp-ink);
  font-family: var(--font-h);
  font-size: 1.35rem;
  font-weight: 500;
  text-transform: uppercase;
}

.lpv2-notice p {
  margin: 0;
  color: #49636f;
  line-height: 1.75;
}

.lpv2-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.lpv2-step,
.lpv2-card,
.lpv2-lab-card,
.lpv2-related-card {
  border: 1px solid var(--lp-line);
  border-radius: 16px;
  background: #fff;
}

.lpv2-step {
  min-height: 260px;
  padding: 26px;
}

.lpv2-step__number {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--lp-blue-light);
  color: var(--lp-blue-dark);
  font-family: var(--font-ui);
  font-weight: 800;
}

.lpv2-step h3,
.lpv2-card h3,
.lpv2-lab-card h3,
.lpv2-related-card h3 {
  margin: 0 0 10px;
  color: var(--lp-ink);
  font-family: var(--font-h);
  font-size: 1.25rem;
  font-weight: 500;
  text-transform: uppercase;
}

.lpv2-step p,
.lpv2-card p,
.lpv2-lab-card p,
.lpv2-related-card p {
  margin: 0;
  color: var(--lp-muted);
  line-height: 1.7;
}

.lpv2-lab-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.lpv2-lab-card {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 22px;
}

.lpv2-lab-card__mark {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 13px;
  background: var(--lp-blue-light);
  color: var(--lp-blue-dark);
  font-family: var(--font-h);
  font-size: 18px;
  font-weight: 600;
}

.lpv2-lab-card a {
  color: var(--lp-blue);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.lpv2-source-note {
  margin: 18px 0 0;
  color: #7a8b94;
  font-size: 13px;
  text-align: center;
}

.lpv2-path-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.lpv2-card {
  padding: 30px;
}

.lpv2-card--accent {
  border-color: transparent;
  background: linear-gradient(145deg, #e8f7fb, #f8fcfd);
}

.lpv2-list {
  display: grid;
  gap: 11px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.lpv2-list li {
  position: relative;
  padding-left: 24px;
  color: #435963;
  line-height: 1.6;
}

.lpv2-list li::before {
  content: '';
  position: absolute;
  top: .55em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lp-blue);
}

.lpv2-pricing-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 54px;
  align-items: center;
}

.lpv2-price {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 18px;
  background: rgba(255, 255, 255, .06);
}

.lpv2-price__amount {
  display: block;
  color: #fff;
  font-family: var(--font-h);
  font-size: 3.4rem;
  line-height: 1;
}

.lpv2-price__label {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, .6);
}

.lpv2-dark-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lpv2-dark-list li {
  padding: 14px 0 14px 26px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .76);
  line-height: 1.65;
}

.lpv2-provider {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 38px;
  align-items: center;
  padding: 38px;
  border: 1px solid var(--lp-line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--lp-shadow);
}

.lpv2-provider__portrait {
  width: 170px;
  height: 170px;
  object-fit: cover;
  object-position: top;
  border-radius: 50%;
}

.lpv2-provider h2 {
  font-size: clamp(1.8rem, 3.3vw, 2.7rem);
}

.lpv2-provider p {
  margin: 14px 0 0;
  color: var(--lp-muted);
  line-height: 1.75;
}

.lpv2-credential-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.lpv2-credential-row span {
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--lp-surface);
  color: var(--lp-blue-dark);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
}

.lpv2-faq {
  max-width: 850px;
  margin: 0 auto;
}

.lpv2-faq details {
  border-bottom: 1px solid var(--lp-line);
}

.lpv2-faq summary {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 21px 0;
  color: var(--lp-ink);
  font-family: var(--font-h);
  font-size: 1.18rem;
  font-weight: 500;
  list-style: none;
  cursor: pointer;
  text-transform: uppercase;
}

.lpv2-faq summary::after {
  content: '+';
  color: var(--lp-blue);
}

.lpv2-faq details[open] summary::after {
  content: '−';
}

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

.lpv2-faq details p {
  max-width: 760px;
  margin: 0;
  padding: 0 0 22px;
  color: var(--lp-muted);
  line-height: 1.8;
}

.lpv2-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.lpv2-related-card {
  min-height: 170px;
  padding: 24px;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}

.lpv2-related-card:hover {
  color: inherit;
  border-color: #9bc9dc;
  box-shadow: 0 12px 30px rgba(21, 53, 70, .08);
  transform: translateY(-3px);
}

.lpv2-related-card p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.lpv2-final-cta {
  padding: 74px 0;
  color: #fff;
  text-align: center;
  background: linear-gradient(130deg, var(--lp-blue-dark), var(--lp-blue));
}

.lpv2-final-cta h2 {
  max-width: 760px;
  margin: 0 auto;
  color: #fff;
  font-family: var(--font-h);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 500;
  line-height: 1.05;
  text-transform: uppercase;
}

.lpv2-final-cta p {
  max-width: 640px;
  margin: 16px auto 0;
  color: rgba(255, 255, 255, .75);
  font-size: 17px;
}

.lpv2-footer {
  padding: 34px 0;
  color: rgba(255, 255, 255, .56);
  background: #0a1b25;
  font-size: 13px;
}

.lpv2-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.lpv2-footer a {
  color: rgba(255, 255, 255, .72);
}

@media (max-width: 960px) {
  .lpv2-nav a:not(.lpv2-header-cta) {
    display: none;
  }

  .lpv2-hero__grid,
  .lpv2-intro-grid,
  .lpv2-pricing-grid {
    grid-template-columns: 1fr;
  }

  .lpv2-hero__grid {
    gap: 38px;
  }

  .lpv2-trust-grid,
  .lpv2-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .lpv2-trust-item:nth-child(2) {
    border-right: 0;
  }

  .lpv2-trust-item:nth-child(-n+2) {
    border-bottom: 1px solid var(--lp-line);
  }
}

@media (max-width: 720px) {
  .lpv2-container {
    width: min(100% - 32px, 1180px);
  }

  .lpv2-site-header img {
    width: 170px;
  }

  .lpv2-header-cta {
    padding: 8px 12px;
    font-size: 12px;
  }

  .lpv2-hero {
    padding: 26px 0 58px;
  }

  .lpv2-breadcrumbs {
    margin-bottom: 28px;
  }

  .lpv2-hero h1 {
    font-size: clamp(2.45rem, 13vw, 4rem);
  }

  .lpv2-snapshot {
    padding: 24px 20px;
  }

  .lpv2-trust-grid,
  .lpv2-steps,
  .lpv2-lab-grid,
  .lpv2-path-grid,
  .lpv2-related-grid {
    grid-template-columns: 1fr;
  }

  .lpv2-trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--lp-line);
  }

  .lpv2-trust-item:last-child {
    border-bottom: 0;
  }

  .lpv2-section {
    padding: 62px 0;
  }

  .lpv2-step {
    min-height: 0;
  }

  .lpv2-step__number {
    margin-bottom: 18px;
  }

  .lpv2-lab-card {
    grid-template-columns: 48px 1fr;
  }

  .lpv2-lab-card__mark {
    width: 48px;
    height: 48px;
  }

  .lpv2-lab-card a {
    grid-column: 2;
  }

  .lpv2-provider {
    grid-template-columns: 1fr;
    padding: 28px;
    text-align: center;
  }

  .lpv2-provider__portrait {
    margin: 0 auto;
  }

  .lpv2-credential-row {
    justify-content: center;
  }

  .lpv2-footer__inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 460px) {
  .lpv2-actions {
    flex-direction: column;
  }

  .lpv2-button {
    width: 100%;
  }

  .lpv2-snapshot__row {
    grid-template-columns: 82px 1fr;
  }
}
