/* Premium SEO / local landing pages — loaded only on Strathfield cluster URLs */

.seo-lp-premium {
  --seo-prm-max: 1200px;
  --seo-prm-pad-x: clamp(1rem, 4vw, 2rem);
  --seo-prm-section-y: clamp(2.5rem, 6vw, 5rem);
  --seo-prm-section-y-md: clamp(3rem, 5vw, 4.25rem);
  --seo-prm-radius: 16px;
  --seo-prm-radius-lg: 22px;
  --seo-prm-shadow: 0 4px 24px rgb(2 26 51 / 0.06);
  --seo-prm-shadow-hover: 0 12px 40px rgb(2 26 51 / 0.1);
  --seo-prm-prose: min(42rem, 100%);
}

.seo-lp-premium .seo-prm-container {
  width: min(100% - var(--seo-prm-pad-x) * 2, var(--seo-prm-max));
  margin-inline: auto;
}

/* Section rhythm: py-10 mobile / py-14 tablet / py-20 desktop */
.seo-prm-section {
  padding-block: var(--seo-prm-section-y);
}
@media (min-width: 768px) {
  .seo-prm-section {
    padding-block: var(--seo-prm-section-y-md);
  }
}
@media (min-width: 1024px) {
  .seo-prm-section {
    padding-block: 5rem;
  }
}
.seo-prm-section--white { background: #fff; }
.seo-prm-section--muted { background: var(--bg, #f8fafc); }

.seo-prm-section__head {
  max-width: var(--seo-prm-prose);
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}
.seo-prm-section__head--center {
  max-width: 40rem;
  margin-inline: auto;
  text-align: center;
}
.seo-prm-eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-light, #0a75c9);
}
.seo-prm-h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text, #14253f);
}
.seo-prm-lead {
  margin: 0;
  max-width: var(--seo-prm-prose);
  font-size: clamp(1rem, 2vw, 1.08rem);
  line-height: 1.65;
  color: var(--muted, #5f6b7a);
}
.seo-prm-section__head--center .seo-prm-lead {
  margin-inline: auto;
}

/* Hero */
.seo-prm-hero {
  position: relative;
  overflow: hidden;
  color: #f8fafc;
  background: linear-gradient(135deg, #021a33 0%, #0655a1 48%, #032d56 100%);
  padding-block: clamp(2.75rem, 8vw, 4.5rem);
}
.seo-prm-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.seo-prm-hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgb(58 170 53 / 0.18), transparent 55%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgb(255 255 255 / 0.06), transparent 50%);
}
.seo-prm-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.seo-prm-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: center;
}
@media (min-width: 900px) {
  .seo-prm-hero__inner {
    grid-template-columns: 1fr minmax(260px, 340px);
  }
}
.seo-prm-breadcrumb {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  margin: 0 0 0.25rem;
  font-size: 0.82rem;
  color: rgb(255 255 255 / 0.72);
}
.seo-prm-breadcrumb a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
.seo-prm-breadcrumb a:hover { text-decoration: underline; }
.seo-prm-breadcrumb__sep { opacity: 0.45; }
.seo-prm-breadcrumb__current { color: rgb(255 255 255 / 0.9); }

.seo-prm-hero__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-on-dark-soft, #b8d4f0);
}
.seo-prm-hero__title {
  margin: 0 0 1rem;
  max-width: 18ch;
  font-size: clamp(1.75rem, 4.5vw, 2.65rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #fff;
}
@media (min-width: 900px) {
  .seo-prm-hero__title { max-width: 22ch; }
}
.seo-prm-hero__lead {
  margin: 0 0 1.35rem;
  max-width: 38rem;
  font-size: clamp(1rem, 2.2vw, 1.12rem);
  line-height: 1.65;
  color: rgb(248 250 252 / 0.92);
}
.seo-prm-hero__lead strong { color: #fff; font-weight: 600; }

.seo-prm-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.35rem;
  padding: 0;
  list-style: none;
}
.seo-prm-trust-badges li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  background: rgb(255 255 255 / 0.1);
  border: 1px solid rgb(255 255 255 / 0.18);
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.seo-prm-trust-badges svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  color: var(--accent, #3aaa35);
}

.seo-prm-hero__rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  margin: 0 0 1.35rem;
  padding: 0.65rem 0.9rem;
  max-width: 22rem;
  background: rgb(255 255 255 / 0.08);
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: 12px;
}
.seo-prm-hero__stars {
  display: flex;
  gap: 0.12rem;
  color: #fbbf24;
  font-size: 1rem;
  letter-spacing: 0.02em;
}
.seo-prm-hero__rating-text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.4;
  color: rgb(255 255 255 / 0.88);
}
.seo-prm-hero__rating-text strong { color: #fff; }

.seo-prm-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.seo-prm-hero__actions .btn.secondary {
  background: var(--accent);
  border-color: transparent;
  color: #fff;
}
.seo-prm-hero__actions .btn.ghost {
  color: #fff;
  border-color: rgb(255 255 255 / 0.35);
}
.seo-prm-hero__actions .btn.ghost:hover {
  background: rgb(255 255 255 / 0.1);
  color: #fff;
}

.seo-prm-hero__panel {
  padding: clamp(1.15rem, 3vw, 1.5rem);
  background: rgb(255 255 255 / 0.08);
  border: 1px solid rgb(255 255 255 / 0.14);
  border-radius: var(--seo-prm-radius-lg);
  backdrop-filter: blur(12px);
}
.seo-prm-hero__panel-title {
  margin: 0 0 0.85rem;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgb(255 255 255 / 0.75);
}
.seo-prm-hero__panel-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.seo-prm-hero__panel-list li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.65rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgb(248 250 252 / 0.95);
}
.seo-prm-hero__panel-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.seo-prm-hero__panel-list li:last-child { margin-bottom: 0; }
.seo-prm-hero__panel-list strong { color: #fff; font-weight: 600; }

/* Card grid */
.seo-prm-grid {
  display: grid;
  gap: 1.25rem;
}
.seo-prm-grid--2 {
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .seo-prm-grid--2 { grid-template-columns: repeat(2, 1fr); }
}
.seo-prm-grid--3 {
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .seo-prm-grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .seo-prm-grid--3 { grid-template-columns: repeat(3, 1fr); }
}
.seo-prm-grid--3.seo-prm-grid--six {
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .seo-prm-grid--3.seo-prm-grid--six { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .seo-prm-grid--3.seo-prm-grid--six { grid-template-columns: repeat(3, 1fr); }
}

.seo-prm-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  height: 100%;
  padding: 1.35rem 1.35rem 1.5rem;
  background: #fff;
  border: 1px solid var(--border, #e2e8f0);
  border-radius: var(--seo-prm-radius);
  box-shadow: var(--seo-prm-shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.seo-prm-section--muted .seo-prm-card {
  background: #fff;
}
.seo-prm-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--seo-prm-shadow-hover);
  border-color: var(--primary-tint-border, #b8d4ee);
}
.seo-prm-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 12px;
  background: var(--primary-tint-bg, #e8f2fb);
  color: var(--primary, #0655a1);
}
.seo-prm-card__icon svg {
  width: 1.35rem;
  height: 1.35rem;
}
.seo-prm-card__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}
.seo-prm-card__text {
  margin: 0;
  flex: 1;
  font-size: 0.94rem;
  line-height: 1.58;
  color: var(--muted);
}
.seo-prm-card__link {
  margin-top: auto;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}
.seo-prm-card__link:hover { text-decoration: underline; }

/* Why choose */
.seo-prm-why-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .seo-prm-why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
.seo-prm-why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.seo-prm-why-item__num {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--primary);
  background: var(--primary-tint-bg);
  border-radius: 10px;
}
.seo-prm-why-item h3 {
  margin: 0 0 0.35rem;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.3;
}
.seo-prm-why-item p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.58;
  color: var(--muted);
}

/* Process timeline */
.seo-prm-timeline {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: seo-step;
}
@media (min-width: 768px) {
  .seo-prm-timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}
.seo-prm-timeline li {
  position: relative;
  padding: 1.5rem 1.25rem 1.5rem 3.25rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--seo-prm-radius);
  box-shadow: var(--seo-prm-shadow);
  counter-increment: seo-step;
}
@media (min-width: 768px) {
  .seo-prm-timeline li { padding-top: 3.25rem; padding-left: 1.35rem; }
}
.seo-prm-timeline li::before {
  content: counter(seo-step);
  position: absolute;
  left: 1.15rem;
  top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  font-size: 0.8rem;
  font-weight: 800;
  color: #fff;
  background: var(--primary);
  border-radius: 50%;
}
@media (min-width: 768px) {
  .seo-prm-timeline li::before {
    left: 1.35rem;
    top: 1.25rem;
  }
}
.seo-prm-timeline h3 {
  margin: 0 0 0.4rem;
  font-size: 1.02rem;
  font-weight: 700;
}
.seo-prm-timeline p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.58;
  color: var(--muted);
}

/* Local areas */
.seo-prm-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.seo-prm-chips li {
  padding: 0.45rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
}
.seo-prm-section--muted .seo-prm-chips li {
  background: var(--bg);
}
.seo-prm-local-links {
  margin: 1.25rem 0 0;
  font-size: 0.92rem;
}
.seo-prm-local-links a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}
.seo-prm-local-links a:hover { text-decoration: underline; }

/* Testimonials slider */
.seo-prm-testimonials {
  overflow: hidden;
}
.seo-prm-testimonials__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.seo-prm-testimonials__nav {
  display: flex;
  gap: 0.5rem;
}
.seo-prm-testimonials__nav button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  color: var(--primary);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.seo-prm-testimonials__nav button:hover:not(:disabled) {
  background: var(--primary-tint-bg);
  border-color: var(--primary-tint-border);
}
.seo-prm-testimonials__nav button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.seo-prm-testimonials__track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.5rem;
  scrollbar-width: thin;
}
.seo-prm-testimonial {
  flex: 0 0 min(100%, 340px);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.35rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--seo-prm-radius);
  box-shadow: var(--seo-prm-shadow);
}
@media (min-width: 640px) {
  .seo-prm-testimonial { flex-basis: min(85%, 380px); }
}
.seo-prm-testimonial__stars {
  color: #f59e0b;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}
.seo-prm-testimonial__quote {
  margin: 0;
  flex: 1;
  font-size: 0.98rem;
  line-height: 1.62;
  color: var(--text);
}
.seo-prm-testimonial__person {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.seo-prm-testimonial__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--primary);
  background: var(--primary-tint-bg);
  border-radius: 50%;
}
.seo-prm-testimonial__name {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
}
.seo-prm-testimonial__role {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
}

/* FAQ */
.seo-prm-faq {
  max-width: 48rem;
  margin-inline: auto;
}
.seo-prm-faq .faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.seo-prm-faq .faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.seo-prm-faq .faq-item[open] {
  border-color: var(--primary-tint-border);
  box-shadow: var(--seo-prm-shadow);
}
.seo-prm-faq .faq-item summary {
  padding: 1rem 1.15rem;
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
}
.seo-prm-faq .faq-item summary::-webkit-details-marker { display: none; }
.seo-prm-faq .faq-item summary::after {
  content: "+";
  float: right;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--primary);
  transition: transform 0.2s;
}
.seo-prm-faq .faq-item[open] summary::after {
  content: "−";
}
.seo-prm-faq .faq-answer {
  padding: 0 1.15rem 1rem;
}
.seo-prm-faq .faq-answer p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.62;
  color: var(--muted);
}
.seo-prm-faq-foot {
  margin: 1.25rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}
.seo-prm-faq-foot a {
  color: var(--primary);
  font-weight: 600;
}

/* Local trust */
.seo-prm-trust-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 900px) {
  .seo-prm-trust-grid {
    grid-template-columns: 1fr 1.1fr;
    align-items: start;
  }
}
.seo-prm-trust-facts {
  display: grid;
  gap: 1rem;
}
.seo-prm-trust-fact {
  padding: 1rem 1.15rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
}
.seo-prm-section--muted .seo-prm-trust-fact {
  background: #fff;
}
.seo-prm-trust-fact dt {
  margin: 0 0 0.25rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.seo-prm-trust-fact dd {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text);
}
.seo-prm-trust-fact dd a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}
.seo-prm-trust-fact dd a:hover { text-decoration: underline; }
.seo-prm-map-wrap {
  border-radius: var(--seo-prm-radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--seo-prm-shadow);
}
.seo-prm-map-wrap iframe {
  display: block;
  width: 100%;
  min-height: 280px;
  border: 0;
}

/* CTA band */
.seo-prm-cta-band {
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
  background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary) 100%);
  color: #fff;
}
.seo-prm-cta-band__inner {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}
@media (min-width: 768px) {
  .seo-prm-cta-band__inner {
    grid-template-columns: 1fr auto;
    gap: 2.5rem;
  }
}
.seo-prm-cta-band h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}
.seo-prm-cta-band__lead {
  margin: 0 0 1rem;
  max-width: 32rem;
  font-size: 1rem;
  line-height: 1.6;
  color: rgb(255 255 255 / 0.88);
}
.seo-prm-cta-band__trust {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  font-size: 0.88rem;
  color: rgb(255 255 255 / 0.85);
}
.seo-prm-cta-band__trust li::before {
  content: "✓ ";
  color: var(--accent);
  font-weight: 700;
}
.seo-prm-cta-band__actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-width: min(100%, 260px);
}
.seo-prm-cta-band .btn.secondary {
  background: var(--accent);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 24px rgb(0 0 0 / 0.15);
}
.seo-prm-cta-band .btn.ghost {
  color: #fff;
  border-color: rgb(255 255 255 / 0.4);
}

/* Sticky mobile CTA + floating button */
.seo-prm-sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 35;
  display: none;
  padding: 0.65rem var(--seo-prm-pad-x);
  padding-bottom: max(0.65rem, env(safe-area-inset-bottom));
  background: rgb(255 255 255 / 0.96);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 32px rgb(2 26 51 / 0.08);
  backdrop-filter: blur(10px);
}
@media (max-width: 767px) {
  .seo-prm-sticky-bar.is-visible {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
  body:has(.seo-prm-sticky-bar.is-visible) {
    padding-bottom: calc(4.25rem + env(safe-area-inset-bottom, 0px));
  }
}
.seo-prm-sticky-bar .btn {
  width: 100%;
  justify-content: center;
  font-size: 0.88rem;
  padding: 0.7rem 0.5rem;
}

.seo-prm-fab {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 34;
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.15rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  background: var(--accent);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgb(58 170 53 / 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
@media (min-width: 768px) {
  .seo-prm-fab.is-visible { display: inline-flex; }
}
.seo-prm-fab:hover {
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 14px 32px rgb(58 170 53 / 0.45);
}
.seo-prm-fab svg {
  width: 1.1rem;
  height: 1.1rem;
}

/* Scroll reveal */
.seo-prm-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.seo-prm-reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .seo-prm-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .seo-prm-card:hover { transform: none; }
}

/* Mid-page CTA strip */
.seo-prm-mid-cta {
  padding: 1.15rem 1.25rem;
  background: var(--primary-tint-panel);
  border: 1px solid var(--primary-tint-border);
  border-radius: var(--seo-prm-radius);
}
.seo-prm-mid-cta__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.seo-prm-mid-cta p {
  margin: 0;
  flex: 1 1 16rem;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--text);
}
.seo-prm-mid-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Related links row */
.seo-prm-related {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.seo-prm-related a {
  padding: 0.4rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  background: var(--primary-tint-bg);
  border-radius: 999px;
  transition: background 0.15s;
}
.seo-prm-related a:hover {
  background: var(--primary-tint-border);
}

/* Hide legacy SEO blocks when premium shell is active */
.seo-lp-premium .service-hero:not(.seo-prm-hero),
.seo-lp-premium .seo-lp-conversion-strip,
.seo-lp-premium .service-layout,
.seo-lp-premium .seo-lp-social:not(.seo-prm-testimonials),
.seo-lp-premium .seo-lp-contact-cta:not(.seo-prm-trust-section),
.seo-lp-premium .seo-lp-map-section:not(.seo-prm-map-wrap),
.seo-lp-premium .seo-lp-bottom-cta:not(.seo-prm-cta-band) {
  display: none;
}

/* Footer: compact local links on SEO pages only */
.site-footer--seo-compact .footer-col--local .footer-links li:nth-child(n+3) {
  display: none;
}
