/* ============================================================
   Prairie Valley Tech — Service Page Shared Styles
   Used by all /services/*.html pages
   ============================================================ */

/* ── TOWN TAGS ── */
.pvt-towns { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.pvt-town-tag {
  background: #f7f5ef;
  border: 1px solid #d4d0c6;
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  color: #5a5a54;
  font-weight: 500;
}
a.pvt-town-tag {
  text-decoration: none;
  color: inherit;
  transition: background 0.2s, border-color 0.2s;
}
a.pvt-town-tag:hover {
  background: #d4f0e4;
  border-color: #1D9E75;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'DM Sans', sans-serif;
  color: #2a2a24;
  background: #eae8e0;
  width: 100%;
}

/* ── NAV ── */
nav.pvt-nav {
  background: #1a3a2a;
  border-bottom: 1px solid rgba(45,184,124,0.15);
  padding: 0 48px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}
.pvt-nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.pvt-nav-mark {
  font-family: 'DM Serif Display', serif;
  font-size: 15px;
  font-weight: 700;
  color: white;
  letter-spacing: 4px;
  border: 1px solid rgba(45,184,124,0.5);
  padding: 5px 11px;
  border-radius: 4px;
}
.pvt-nav-brand {
  font-family: 'DM Serif Display', serif;
  font-size: 19px;
  color: rgba(255,255,255,0.9);
}
.pvt-nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.pvt-nav-link {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.pvt-nav-link:hover { color: #2DB87C; }
.pvt-nav-sep { color: rgba(255,255,255,0.2); font-size: 14px; }
.pvt-nav-cta {
  background: #2DB87C;
  color: white;
  border: none;
  padding: 9px 20px;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  margin-left: 8px;
}
.pvt-nav-cta:hover { background: #1A8653; }
.pvt-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.pvt-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: all 0.25s ease;
}
.pvt-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.pvt-hamburger.open span:nth-child(2) { opacity: 0; }
.pvt-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.pvt-mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: #1a3a2a;
  border-top: 1px solid rgba(45,184,124,0.2);
  padding: 20px 24px;
  flex-direction: column;
  gap: 4px;
  z-index: 99;
}
.pvt-mobile-menu.open { display: flex; }
.pvt-mobile-menu a {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s;
}
.pvt-mobile-menu a:last-child { border-bottom: none; }
.pvt-mobile-menu a:hover { color: #2DB87C; }

/* ── BREADCRUMB ── */
.pvt-breadcrumb {
  background: #f0ede6;
  border-bottom: 1px solid #dedad2;
  padding: 10px 48px;
  font-size: 12px;
  color: #888780;
}
.pvt-breadcrumb a {
  color: #1D9E75;
  text-decoration: none;
}
.pvt-breadcrumb a:hover { text-decoration: underline; }
.pvt-breadcrumb span { margin: 0 6px; }

/* ── PAGE HERO ── */
.pvt-svc-hero {
  background: #1a3a2a;
  padding: 64px 48px 56px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}
.pvt-svc-hero-wrap {
  background: #1a3a2a;
}
.pvt-svc-icon {
  width: 52px;
  height: 52px;
  background: rgba(45,184,124,0.15);
  border: 1px solid rgba(45,184,124,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.pvt-svc-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #2DB87C;
  margin-bottom: 12px;
}
.pvt-svc-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 42px;
  line-height: 1.15;
  color: white;
  margin-bottom: 16px;
  max-width: 680px;
}
.pvt-svc-hero h1 em {
  font-style: italic;
  color: #5DCAA5;
}
.pvt-svc-hero-lede {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.75);
  max-width: 640px;
  margin-bottom: 32px;
}
.pvt-svc-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.pvt-btn-primary {
  background: #2DB87C;
  color: white;
  padding: 13px 28px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
  display: inline-block;
}
.pvt-btn-primary:hover { background: #1A8653; }
.pvt-btn-ghost {
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 13px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}
.pvt-btn-ghost:hover { border-color: #2DB87C; color: #5DCAA5; }

/* ── CONTENT WRAPPER ── */
.pvt-svc-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

/* ── SECTION LABEL / TITLE ── */
.pvt-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #1D9E75;
  margin-bottom: 10px;
}
.pvt-section-title {
  font-family: 'DM Serif Display', serif;
  font-size: 30px;
  line-height: 1.2;
  color: #1a1a18;
  margin-bottom: 8px;
}
.pvt-section-sub {
  font-size: 15px;
  color: #6b6b65;
  line-height: 1.6;
  max-width: 640px;
  margin-bottom: 32px;
}

/* ── FEATURE GRID ── */
.pvt-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.pvt-feature-item {
  background: white;
  border: 1px solid #e4e1da;
  border-radius: 10px;
  padding: 20px 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.pvt-feature-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}
.pvt-feature-item h4 {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a18;
  margin-bottom: 4px;
}
.pvt-feature-item p {
  font-size: 13px;
  color: #6b6b65;
  line-height: 1.5;
}

/* ── PROCESS STEPS ── */
.pvt-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.pvt-steps::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: linear-gradient(to bottom, #2DB87C, rgba(45,184,124,0.1));
}
.pvt-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 0 0 32px;
  position: relative;
}
.pvt-step:last-child { padding-bottom: 0; }
.pvt-step-num {
  width: 42px;
  height: 42px;
  background: #1a3a2a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  color: #2DB87C;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.pvt-step-body h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a18;
  margin-bottom: 6px;
  padding-top: 8px;
}
.pvt-step-body p {
  font-size: 14px;
  color: #6b6b65;
  line-height: 1.6;
}

/* ── SCREENSHOT / EXAMPLE ── */
.pvt-example-block {
  background: white;
  border: 1px solid #e4e1da;
  border-radius: 12px;
  overflow: hidden;
}
.pvt-example-header {
  background: #1a3a2a;
  padding: 12px 20px;
  display: flex;
  gap: 7px;
  align-items: center;
}
.pvt-example-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}
.pvt-example-header-text {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-left: 6px;
  font-family: monospace;
}
.pvt-screenshot-slot {
  background: #f0ede6;
  border: 2px dashed #b8d4c8;
  border-radius: 0;
  padding: 56px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.pvt-screenshot-slot .slot-icon { font-size: 32px; opacity: 0.4; }
.pvt-screenshot-slot .slot-label {
  font-size: 13px;
  font-weight: 600;
  color: #1a3a2a;
  opacity: 0.5;
}
.pvt-screenshot-slot .slot-hint {
  font-size: 12px;
  color: #888780;
}
.pvt-example-img {
  width: 100%;
  display: block;
  border-radius: 0;
}
.pvt-example-caption {
  padding: 16px 20px;
  border-top: 1px solid #e4e1da;
  font-size: 13px;
  color: #6b6b65;
  line-height: 1.5;
}
.pvt-example-caption strong {
  color: #1a1a18;
  font-weight: 600;
}

/* ── STAT ROW (social proof numbers) ── */
.pvt-stat-row {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.pvt-stat {
  flex: 1;
  min-width: 120px;
  background: white;
  border: 1px solid #e4e1da;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}
.pvt-stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  color: #1a3a2a;
  line-height: 1;
  margin-bottom: 6px;
}
.pvt-stat-num span { color: #2DB87C; }
.pvt-stat-label {
  font-size: 12px;
  color: #888780;
  line-height: 1.4;
}

/* ── TESTIMONIAL / CALLOUT ── */
.pvt-callout {
  background: #e8f7f1;
  border-left: 4px solid #2DB87C;
  border-radius: 0 10px 10px 0;
  padding: 20px 24px;
}
.pvt-callout p {
  font-size: 15px;
  color: #1a3a2a;
  line-height: 1.65;
  font-style: italic;
}
.pvt-callout-attr {
  font-size: 13px;
  color: #1D9E75;
  font-weight: 600;
  font-style: normal;
  margin-top: 8px;
}

/* ── PRICING CALLOUT ── */
.pvt-pricing-callout {
  background: #1a3a2a;
  border-radius: 12px;
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.pvt-pricing-callout-text h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: white;
  margin-bottom: 8px;
}
.pvt-pricing-callout-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
  max-width: 480px;
}
.pvt-pricing-callout-text p strong {
  color: #5DCAA5;
}

/* ── FAQ ── */
.pvt-faq {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid #e4e1da;
  border-radius: 12px;
  overflow: hidden;
}
.pvt-faq-item {
  border-bottom: 1px solid #e4e1da;
  background: white;
}
.pvt-faq-item:last-child { border-bottom: none; }
.pvt-faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a18;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.15s;
}
.pvt-faq-q:hover { background: #f8f6f2; }
.pvt-faq-chevron {
  width: 18px;
  height: 18px;
  color: #1D9E75;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.pvt-faq-item.open .pvt-faq-chevron { transform: rotate(180deg); }
.pvt-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.pvt-faq-item.open .pvt-faq-a { max-height: 400px; }
.pvt-faq-a-inner {
  padding: 0 22px 18px;
  font-size: 14px;
  color: #6b6b65;
  line-height: 1.65;
  border-top: 1px solid #f0ede6;
  padding-top: 14px;
}
.pvt-faq-a-inner a { color: #1D9E75; }

/* ── CTA STRIP ── */
.pvt-svc-cta {
  background: #1a3a2a;
  padding: 64px 48px;
  text-align: center;
}
.pvt-svc-cta h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 34px;
  color: white;
  margin-bottom: 12px;
}
.pvt-svc-cta p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.pvt-svc-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FOOTER ── */
footer.pvt-footer {
  background: #111f16;
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.pvt-footer-logo { font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 500; color: white; }
.pvt-footer-logo span { color: #5DCAA5; }
.pvt-footer-copy { font-size: 12px; color: #888780; }
.pvt-footer-domain { font-size: 13px; color: #5DCAA5; }

/* ── RESPONSIVE ── */
@media (max-width: 720px) {
  nav.pvt-nav { padding: 0 20px; height: 60px; }
  .pvt-nav-brand { display: block; font-size: 22px; }
  .pvt-nav-links { display: none; }
  .pvt-hamburger { display: flex; }

  .pvt-breadcrumb { padding: 12px 20px; font-size: 15px; }
  .pvt-svc-hero { padding: 48px 20px 40px; }
  .pvt-svc-hero h1 { font-size: 30px; }
  .pvt-svc-hero-lede { font-size: 15px; }
  .pvt-svc-content { padding: 40px 20px; gap: 48px; }
  .pvt-feature-grid { grid-template-columns: 1fr; }
  .pvt-pricing-callout { flex-direction: column; }
  .pvt-stat-row { gap: 12px; }
  .pvt-svc-cta { padding: 48px 20px; }
  footer.pvt-footer { flex-direction: column; gap: 8px; text-align: center; padding: 24px; }
}

/* ── ALSO-FROM SERVICES BAR ── */
.pvt-also-section {
  background: #f0ede5;
  border-top: 1px solid #d8d4c8;
  padding: 32px 48px;
}
.pvt-also-inner { max-width: 860px; margin: 0 auto; }
.pvt-also-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #888880;
  margin-bottom: 12px;
}
@media (max-width: 720px) {
  .pvt-also-section { padding: 24px 20px; }
}

/* FAQ toggle script helper */
.pvt-faq-js-off .pvt-faq-a { max-height: none; }
