/* ============================================================
   PST REPAIR — MAIN STYLESHEET
   https://pst-repair.net
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,300&family=DM+Serif+Display:ital@0;1&display=swap');

/* ── CSS Custom Properties ── */
:root {
  --pst-black:       #0d0d0e;
  --pst-dark:        #141416;
  --pst-dark-mid:    #1e1e22;
  --pst-dark-card:   #242428;
  --pst-border:      #2e2e34;
  --pst-red:         #e8341a;
  --pst-red-dark:    #c4280f;
  --pst-red-glow:    rgba(232, 52, 26, 0.18);
  --pst-orange:      #f07a2a;
  --pst-amber:       #f5a623;
  --pst-white:       #f5f4f0;
  --pst-off-white:   #e8e6e0;
  --pst-gray:        #9a9a9f;
  --pst-gray-light:  #c8c7c3;
  --pst-font-display: 'Bebas Neue', sans-serif;
  --pst-font-serif:   'DM Serif Display', serif;
  --pst-font-body:    'DM Sans', sans-serif;
  --pst-radius:       6px;
  --pst-radius-lg:    14px;
  --pst-shadow:       0 4px 24px rgba(0,0,0,0.45);
  --pst-shadow-red:   0 8px 32px rgba(232,52,26,0.22);
  --pst-transition:   0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--pst-font-body);
  background-color: var(--pst-black);
  color: var(--pst-white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--pst-transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ── */
.pst-display {
  font-family: var(--pst-font-display);
  letter-spacing: 0.04em;
  line-height: 0.92;
  text-transform: uppercase;
}
.pst-serif { font-family: var(--pst-font-serif); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--pst-font-body);
  font-weight: 700;
  line-height: 1.2;
  color: var(--pst-white);
}

.pst-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pst-red);
  display: block;
  margin-bottom: 0.75rem;
}

.pst-section-title {
  font-family: var(--pst-font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 0.95;
}

.pst-body-lg { font-size: 1.125rem; line-height: 1.7; }
.pst-body-sm { font-size: 0.875rem; }
.pst-muted { color: var(--pst-gray); }

/* ── Container ── */
.pst-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.pst-container-wide {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Buttons ── */
.pst-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--pst-font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--pst-radius);
  transition: all var(--pst-transition);
  position: relative;
  overflow: hidden;
}
.pst-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.pst-btn:hover::before { transform: translateX(0); }

.pst-btn-primary {
  background: var(--pst-red);
  color: var(--pst-white);
  box-shadow: var(--pst-shadow-red);
}
.pst-btn-primary:hover {
  background: var(--pst-red-dark);
  transform: translateY(-2px);
  color: var(--pst-white);
}
.pst-btn-outline {
  border: 2px solid var(--pst-border);
  color: var(--pst-white);
}
.pst-btn-outline:hover {
  border-color: var(--pst-red);
  color: var(--pst-red);
  transform: translateY(-2px);
}
.pst-btn-ghost {
  color: var(--pst-red);
  padding-left: 0;
  font-size: 0.85rem;
}
.pst-btn-ghost i { transition: transform var(--pst-transition); }
.pst-btn-ghost:hover i { transform: translateX(5px); }
.pst-btn-ghost:hover { color: var(--pst-orange); }

/* ── Navigation ── */
.pst-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  transition: all 0.4s ease;
}
.pst-navbar.pst-scrolled {
  background: rgba(13,13,14,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--pst-border);
  height: 60px;
}
.pst-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
.pst-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--pst-font-display);
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  color: var(--pst-white);
}
.pst-logo-icon {
  width: 38px;
  height: 38px;
  background: var(--pst-red);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: white;
}
.pst-logo span { color: var(--pst-red); }

.pst-nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.pst-nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pst-gray-light);
  transition: color var(--pst-transition);
  position: relative;
}
.pst-nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--pst-red);
  transform: scaleX(0);
  transition: transform var(--pst-transition);
}
.pst-nav-link:hover, .pst-nav-link.active {
  color: var(--pst-white);
}
.pst-nav-link:hover::after, .pst-nav-link.active::after {
  transform: scaleX(1);
}
.pst-nav-cta {
  margin-left: 12px;
}
.pst-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.pst-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--pst-white);
  transition: all 0.3s ease;
}
.pst-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--pst-black);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.pst-mobile-menu.open { display: flex; }
.pst-mobile-menu .pst-nav-link {
  font-size: 1.4rem;
  color: var(--pst-white);
}

/* ── Hero Section ── */
.pst-hero-dynamic {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--pst-black);
}
.pst-hero-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1619642751034-765dfdf7c58e?w=1800&q=80');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.18;
}
.pst-hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,13,14,0.95) 0%, rgba(13,13,14,0.6) 50%, rgba(13,13,14,0.92) 100%);
}
.pst-hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
  width: 100%;
}
.pst-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(232,52,26,0.14);
  border: 1px solid rgba(232,52,26,0.3);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pst-orange);
  margin-bottom: 28px;
}
.pst-hero-tag i { font-size: 0.7rem; }

.pst-hero-heading {
  font-family: var(--pst-font-display);
  font-size: clamp(3.5rem, 10vw, 8.5rem);
  line-height: 0.9;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 28px;
  color: var(--pst-white);
}
.pst-hero-heading .pst-hl {
  color: var(--pst-red);
  display: block;
}

.pst-hero-sub {
  font-size: 1.15rem;
  color: var(--pst-gray-light);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 44px;
}
.pst-hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.pst-hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.pst-hero-stat-item {}
.pst-hero-stat-num {
  font-family: var(--pst-font-display);
  font-size: 2.4rem;
  letter-spacing: 0.04em;
  color: var(--pst-white);
  line-height: 1;
}
.pst-hero-stat-label {
  font-size: 0.78rem;
  color: var(--pst-gray);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}
.pst-hero-svg-decoration {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  max-width: 700px;
  z-index: 1;
  pointer-events: none;
}

/* ── Section Layouts ── */
.pst-section { padding: 100px 0; }
.pst-section-sm { padding: 60px 0; }
.pst-section-alt { background: var(--pst-dark); }
.pst-section-mid { background: var(--pst-dark-mid); }

.pst-section-header {
  margin-bottom: 64px;
}
.pst-section-header.pst-center { text-align: center; }
.pst-section-header.pst-center .pst-section-desc {
  margin: 0 auto;
}
.pst-section-desc {
  font-size: 1.05rem;
  color: var(--pst-gray);
  max-width: 580px;
  margin-top: 16px;
  line-height: 1.75;
}

/* ── Service Cards ── */
.pst-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.pst-service-card {
  background: var(--pst-dark-card);
  border: 1px solid var(--pst-border);
  border-radius: var(--pst-radius-lg);
  overflow: hidden;
  transition: all var(--pst-transition);
  position: relative;
}
.pst-service-card:hover {
  border-color: rgba(232,52,26,0.4);
  transform: translateY(-6px);
  box-shadow: var(--pst-shadow-red);
}
.pst-service-card-img {
  height: 200px;
  object-fit: cover;
  width: 100%;
  transition: transform 0.5s ease;
}
.pst-service-card:hover .pst-service-card-img {
  transform: scale(1.04);
}
.pst-service-card-img-wrap {
  overflow: hidden;
  position: relative;
}
.pst-service-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--pst-red);
  color: white;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}
.pst-service-card-body {
  padding: 28px;
}
.pst-service-card-icon {
  width: 48px;
  height: 48px;
  background: var(--pst-red-glow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--pst-red);
  margin-bottom: 18px;
}
.pst-service-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--pst-white);
}
.pst-service-card-desc {
  font-size: 0.92rem;
  color: var(--pst-gray);
  line-height: 1.65;
}

/* ── Selector Widget ── */
.pst-selector-widget {
  background: var(--pst-dark-card);
  border: 1px solid var(--pst-border);
  border-radius: var(--pst-radius-lg);
  overflow: hidden;
  margin-top: 40px;
}
.pst-selector-tabs {
  display: flex;
  border-bottom: 1px solid var(--pst-border);
  overflow-x: auto;
}
.pst-selector-tab {
  padding: 18px 28px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pst-gray);
  white-space: nowrap;
  transition: all var(--pst-transition);
  border-bottom: 3px solid transparent;
  cursor: pointer;
}
.pst-selector-tab:hover { color: var(--pst-white); }
.pst-selector-tab.pst-active {
  color: var(--pst-red);
  border-bottom-color: var(--pst-red);
  background: rgba(232,52,26,0.06);
}
.pst-selector-panel { padding: 40px; display: none; }
.pst-selector-panel.pst-active { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.pst-selector-panel-img {
  border-radius: var(--pst-radius);
  object-fit: cover;
  height: 280px;
  width: 100%;
}
.pst-selector-panel-info {}
.pst-selector-panel-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--pst-white);
}
.pst-selector-panel-text {
  color: var(--pst-gray);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.pst-selector-panel-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--pst-gray-light);
  margin-bottom: 8px;
}
.pst-selector-panel-list i { color: var(--pst-red); font-size: 0.7rem; }

/* ── Timeline ── */
.pst-timeline-section { padding: 100px 0; }
.pst-timeline-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 4px 1fr;
  gap: 0 32px;
  margin-top: 60px;
}
.pst-timeline-line {
  background: linear-gradient(to bottom, transparent, var(--pst-red), var(--pst-orange), transparent);
  border-radius: 2px;
  grid-row: 1 / -1;
}
.pst-timeline-entry {
  padding: 0 0 60px;
}
.pst-timeline-entry.pst-right { grid-column: 3; }
.pst-timeline-entry.pst-left { grid-column: 1; text-align: right; }
.pst-timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background: var(--pst-red);
  border-radius: 50%;
  border: 3px solid var(--pst-black);
  margin-top: 8px;
}
.pst-timeline-year {
  font-family: var(--pst-font-display);
  font-size: 1.6rem;
  color: var(--pst-red);
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.pst-timeline-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--pst-white);
}
.pst-timeline-text {
  font-size: 0.88rem;
  color: var(--pst-gray);
  line-height: 1.65;
}

/* ── Quiz ── */
.pst-quiz-wrapper {
  background: var(--pst-dark-card);
  border: 1px solid var(--pst-border);
  border-radius: var(--pst-radius-lg);
  padding: 48px;
  max-width: 760px;
  margin: 0 auto;
}
.pst-quiz-progress {
  display: flex;
  gap: 6px;
  margin-bottom: 36px;
}
.pst-quiz-progress-dot {
  flex: 1;
  height: 3px;
  background: var(--pst-border);
  border-radius: 2px;
  transition: background 0.4s ease;
}
.pst-quiz-progress-dot.done { background: var(--pst-red); }
.pst-quiz-progress-dot.current { background: var(--pst-orange); }

.pst-quiz-step { display: none; }
.pst-quiz-step.pst-active { display: block; }
.pst-quiz-question {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--pst-white);
  line-height: 1.4;
}
.pst-quiz-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.pst-quiz-option {
  padding: 18px 22px;
  background: var(--pst-dark-mid);
  border: 2px solid var(--pst-border);
  border-radius: var(--pst-radius);
  cursor: pointer;
  transition: all var(--pst-transition);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--pst-gray-light);
  text-align: left;
}
.pst-quiz-option:hover {
  border-color: var(--pst-red);
  background: var(--pst-red-glow);
  color: var(--pst-white);
  transform: translateY(-2px);
}
.pst-quiz-option.pst-selected {
  border-color: var(--pst-red);
  background: var(--pst-red-glow);
  color: var(--pst-white);
}
.pst-quiz-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
}
.pst-quiz-result {
  text-align: center;
  padding: 20px 0;
}
.pst-quiz-result-icon {
  width: 70px;
  height: 70px;
  background: var(--pst-red-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--pst-red);
  margin: 0 auto 24px;
}
.pst-quiz-result-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.pst-quiz-result-text {
  color: var(--pst-gray);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

/* ── Estimator ── */
.pst-estimator-card {
  background: var(--pst-dark-card);
  border: 1px solid var(--pst-border);
  border-radius: var(--pst-radius-lg);
  padding: 48px;
}
.pst-estimator-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.pst-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pst-form-label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pst-gray);
}
.pst-form-control {
  background: var(--pst-dark-mid);
  border: 1px solid var(--pst-border);
  border-radius: var(--pst-radius);
  padding: 13px 18px;
  font-family: var(--pst-font-body);
  font-size: 0.95rem;
  color: var(--pst-white);
  transition: border-color var(--pst-transition);
  width: 100%;
  outline: none;
}
.pst-form-control:focus {
  border-color: var(--pst-red);
}
.pst-form-control option { background: var(--pst-dark-mid); }

.pst-estimate-result {
  background: linear-gradient(135deg, var(--pst-dark-mid), var(--pst-dark-card));
  border: 1px solid rgba(232,52,26,0.3);
  border-radius: var(--pst-radius);
  padding: 28px;
  margin-top: 28px;
  display: none;
}
.pst-estimate-result.pst-show { display: block; }
.pst-estimate-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pst-gray);
  margin-bottom: 8px;
}
.pst-estimate-range {
  font-family: var(--pst-font-display);
  font-size: 2.8rem;
  letter-spacing: 0.04em;
  color: var(--pst-white);
  line-height: 1;
  margin-bottom: 8px;
}
.pst-estimate-note {
  font-size: 0.82rem;
  color: var(--pst-gray);
  line-height: 1.6;
}

/* ── Testimonials ── */
.pst-testimonials-slider-wrap {
  position: relative;
  overflow: hidden;
}
.pst-testimonials-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.pst-testimonial-card {
  min-width: 100%;
  padding: 0 8px;
}
.pst-testimonial-inner {
  background: var(--pst-dark-card);
  border: 1px solid var(--pst-border);
  border-radius: var(--pst-radius-lg);
  padding: 44px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: center;
}
.pst-testimonial-stars {
  display: flex;
  gap: 4px;
  color: var(--pst-amber);
  font-size: 0.9rem;
  margin-bottom: 20px;
}
.pst-testimonial-quote {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--pst-gray-light);
  font-style: italic;
  margin-bottom: 28px;
  font-family: var(--pst-font-serif);
}
.pst-testimonial-author { display: flex; align-items: center; gap: 14px; }
.pst-testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--pst-border);
}
.pst-testimonial-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--pst-white);
  margin-bottom: 2px;
}
.pst-testimonial-meta { font-size: 0.8rem; color: var(--pst-gray); }
.pst-testimonial-image {
  border-radius: var(--pst-radius);
  object-fit: cover;
  height: 240px;
  width: 100%;
}
.pst-slider-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  justify-content: center;
}
.pst-slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pst-dark-card);
  border: 1px solid var(--pst-border);
  color: var(--pst-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--pst-transition);
  font-size: 0.85rem;
}
.pst-slider-btn:hover {
  border-color: var(--pst-red);
  color: var(--pst-red);
  background: var(--pst-red-glow);
}
.pst-slider-dots {
  display: flex;
  gap: 8px;
}
.pst-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pst-border);
  cursor: pointer;
  transition: all var(--pst-transition);
}
.pst-slider-dot.active {
  background: var(--pst-red);
  width: 24px;
  border-radius: 4px;
}

/* ── Team ── */
.pst-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.pst-team-card {
  background: var(--pst-dark-card);
  border: 1px solid var(--pst-border);
  border-radius: var(--pst-radius-lg);
  overflow: hidden;
  transition: all var(--pst-transition);
}
.pst-team-card:hover {
  border-color: rgba(232,52,26,0.3);
  transform: translateY(-4px);
}
.pst-team-card-img {
  height: 280px;
  object-fit: cover;
  width: 100%;
  filter: grayscale(20%);
  transition: filter 0.4s ease;
}
.pst-team-card:hover .pst-team-card-img { filter: grayscale(0%); }
.pst-team-card-body { padding: 24px; }
.pst-team-card-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--pst-white);
}
.pst-team-card-role {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pst-red);
  font-weight: 600;
  margin-bottom: 12px;
}
.pst-team-card-bio { font-size: 0.88rem; color: var(--pst-gray); line-height: 1.6; }

/* ── Before/After ── */
.pst-before-after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  border-radius: var(--pst-radius-lg);
  overflow: hidden;
}
.pst-ba-side { position: relative; }
.pst-ba-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}
.pst-ba-label {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(13,13,14,0.85);
  border: 1px solid var(--pst-border);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pst-white);
}
.pst-ba-label.after { background: rgba(232,52,26,0.85); border-color: var(--pst-red); }

/* ── Blog Preview ── */
.pst-blog-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
}
.pst-blog-card {
  background: var(--pst-dark-card);
  border: 1px solid var(--pst-border);
  border-radius: var(--pst-radius-lg);
  overflow: hidden;
  transition: all var(--pst-transition);
}
.pst-blog-card:hover {
  border-color: rgba(232,52,26,0.3);
  transform: translateY(-4px);
}
.pst-blog-card-img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.pst-blog-card:hover .pst-blog-card-img { transform: scale(1.03); }
.pst-blog-card-img-wrap { overflow: hidden; }
.pst-blog-card-featured .pst-blog-card-img { height: 320px; }
.pst-blog-card-sm .pst-blog-card-img { height: 180px; }
.pst-blog-card-body { padding: 24px; }
.pst-blog-card-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pst-red);
  margin-bottom: 10px;
  display: block;
}
.pst-blog-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--pst-white);
  line-height: 1.35;
  margin-bottom: 12px;
}
.pst-blog-card-featured .pst-blog-card-title { font-size: 1.4rem; }
.pst-blog-card-excerpt {
  font-size: 0.88rem;
  color: var(--pst-gray);
  line-height: 1.65;
  margin-bottom: 18px;
}
.pst-blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--pst-gray);
}
.pst-blog-card-meta span { display: flex; align-items: center; gap: 6px; }

/* ── Stats Bar ── */
.pst-stats-bar {
  background: var(--pst-red);
  padding: 36px 0;
}
.pst-stats-bar-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.pst-stat-bar-item {
  text-align: center;
}
.pst-stat-bar-num {
  font-family: var(--pst-font-display);
  font-size: 2.6rem;
  letter-spacing: 0.04em;
  color: white;
  line-height: 1;
  display: block;
}
.pst-stat-bar-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-top: 6px;
}

/* ── CTA Section ── */
.pst-cta-section {
  background: linear-gradient(135deg, var(--pst-dark) 0%, rgba(232,52,26,0.08) 100%);
  border-top: 1px solid var(--pst-border);
  border-bottom: 1px solid var(--pst-border);
  padding: 90px 0;
  text-align: center;
}
.pst-cta-title {
  font-family: var(--pst-font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.pst-cta-text {
  font-size: 1.05rem;
  color: var(--pst-gray);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.pst-cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Cookie Banner ── */
.pst-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--pst-dark-card);
  border-top: 1px solid var(--pst-border);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}
.pst-cookie-banner.pst-show { transform: translateY(0); }
.pst-cookie-text {
  flex: 1;
  font-size: 0.88rem;
  color: var(--pst-gray);
  line-height: 1.6;
}
.pst-cookie-text a { color: var(--pst-red); text-decoration: underline; }
.pst-cookie-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.pst-cookie-btn-accept {
  padding: 10px 22px;
  background: var(--pst-red);
  color: white;
  border-radius: var(--pst-radius);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: all var(--pst-transition);
}
.pst-cookie-btn-accept:hover { background: var(--pst-red-dark); }
.pst-cookie-btn-decline {
  padding: 10px 22px;
  background: transparent;
  border: 1px solid var(--pst-border);
  color: var(--pst-gray);
  border-radius: var(--pst-radius);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--pst-transition);
}
.pst-cookie-btn-decline:hover { border-color: var(--pst-gray); color: var(--pst-white); }

/* ── Footer ── */
.pst-footer {
  background: var(--pst-dark);
  border-top: 1px solid var(--pst-border);
  padding: 80px 0 0;
}
.pst-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 60px;
}
.pst-footer-brand {}
.pst-footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--pst-font-display);
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  color: var(--pst-white);
  margin-bottom: 20px;
}
.pst-footer-logo span { color: var(--pst-red); }
.pst-footer-tagline {
  font-size: 0.9rem;
  color: var(--pst-gray);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 24px;
}
.pst-footer-socials {
  display: flex;
  gap: 12px;
}
.pst-footer-social {
  width: 38px;
  height: 38px;
  background: var(--pst-dark-card);
  border: 1px solid var(--pst-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--pst-gray);
  transition: all var(--pst-transition);
}
.pst-footer-social:hover {
  border-color: var(--pst-red);
  color: var(--pst-red);
  background: var(--pst-red-glow);
}
.pst-footer-col-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pst-white);
  margin-bottom: 20px;
}
.pst-footer-links { display: flex; flex-direction: column; gap: 10px; }
.pst-footer-link {
  font-size: 0.88rem;
  color: var(--pst-gray);
  transition: color var(--pst-transition);
}
.pst-footer-link:hover { color: var(--pst-red); }
.pst-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.pst-footer-contact-icon {
  width: 32px;
  height: 32px;
  background: var(--pst-red-glow);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--pst-red);
  flex-shrink: 0;
  margin-top: 2px;
}
.pst-footer-contact-text { font-size: 0.88rem; color: var(--pst-gray); line-height: 1.5; }
.pst-footer-contact-text strong { color: var(--pst-gray-light); display: block; font-size: 0.8rem; margin-bottom: 2px; }
.pst-footer-bottom {
  border-top: 1px solid var(--pst-border);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.pst-footer-copyright {
  font-size: 0.82rem;
  color: var(--pst-gray);
}
.pst-footer-legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.pst-footer-legal-link {
  font-size: 0.78rem;
  color: var(--pst-gray);
  transition: color var(--pst-transition);
}
.pst-footer-legal-link:hover { color: var(--pst-red); }

/* ── Interior Pages ── */
.pst-page-hero {
  padding: 140px 0 80px;
  background: var(--pst-dark);
  border-bottom: 1px solid var(--pst-border);
  position: relative;
  overflow: hidden;
}
.pst-page-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?w=1400&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.07;
}
.pst-page-hero-title {
  font-family: var(--pst-font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 18px;
}
.pst-page-hero-sub {
  font-size: 1.1rem;
  color: var(--pst-gray);
  max-width: 560px;
  line-height: 1.7;
}
.pst-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--pst-gray);
  margin-bottom: 24px;
}
.pst-breadcrumb a { color: var(--pst-gray); transition: color var(--pst-transition); }
.pst-breadcrumb a:hover { color: var(--pst-red); }
.pst-breadcrumb i { font-size: 0.65rem; }
.pst-breadcrumb span { color: var(--pst-gray-light); }

/* ── Services Page Detail ── */
.pst-service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 80px 0;
  border-bottom: 1px solid var(--pst-border);
}
.pst-service-detail:last-child { border-bottom: none; }
.pst-service-detail.pst-reverse { direction: rtl; }
.pst-service-detail.pst-reverse > * { direction: ltr; }
.pst-service-detail-img {
  border-radius: var(--pst-radius-lg);
  object-fit: cover;
  width: 100%;
  height: 380px;
}
.pst-service-detail-content {}
.pst-service-detail-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--pst-white);
}
.pst-service-detail-text {
  font-size: 0.97rem;
  color: var(--pst-gray);
  line-height: 1.8;
  margin-bottom: 24px;
}
.pst-service-checklist { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.pst-service-check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--pst-gray-light);
}
.pst-service-check-icon {
  width: 22px;
  height: 22px;
  background: var(--pst-red-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: var(--pst-red);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── Article Layout ── */
.pst-article-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  padding: 80px 0;
}
.pst-article-content {}
.pst-article-img-hero {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--pst-radius-lg);
  margin-bottom: 40px;
}
.pst-article-body { color: var(--pst-gray-light); font-size: 1.02rem; line-height: 1.85; }
.pst-article-body h2 {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--pst-white);
  margin: 48px 0 18px;
  padding-top: 20px;
  border-top: 1px solid var(--pst-border);
}
.pst-article-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--pst-white);
  margin: 32px 0 12px;
}
.pst-article-body p { margin-bottom: 20px; }
.pst-article-body ul, .pst-article-body ol {
  padding-left: 24px;
  margin-bottom: 24px;
}
.pst-article-body li { margin-bottom: 10px; }
.pst-article-body strong { color: var(--pst-white); font-weight: 600; }
.pst-article-body blockquote {
  border-left: 3px solid var(--pst-red);
  padding: 18px 24px;
  background: var(--pst-dark-card);
  border-radius: 0 var(--pst-radius) var(--pst-radius) 0;
  margin: 32px 0;
  font-style: italic;
  font-family: var(--pst-font-serif);
  font-size: 1.1rem;
  color: var(--pst-gray-light);
}
.pst-article-sidebar {}
.pst-sidebar-card {
  background: var(--pst-dark-card);
  border: 1px solid var(--pst-border);
  border-radius: var(--pst-radius-lg);
  padding: 28px;
  margin-bottom: 24px;
}
.pst-sidebar-title {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pst-white);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--pst-border);
}
.pst-sidebar-article {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--pst-border);
}
.pst-sidebar-article:last-child { border-bottom: none; padding-bottom: 0; }
.pst-sidebar-article-img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: var(--pst-radius);
  flex-shrink: 0;
}
.pst-sidebar-article-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--pst-gray-light);
  line-height: 1.4;
  transition: color var(--pst-transition);
}
.pst-sidebar-article:hover .pst-sidebar-article-title { color: var(--pst-red); }

/* ── Contact Form ── */
.pst-contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  padding: 80px 0;
}
.pst-contact-info {}
.pst-contact-info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--pst-border);
}
.pst-contact-info-item:first-child { padding-top: 0; }
.pst-contact-info-icon {
  width: 48px;
  height: 48px;
  background: var(--pst-red-glow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--pst-red);
  flex-shrink: 0;
}
.pst-contact-info-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pst-gray);
  margin-bottom: 4px;
}
.pst-contact-info-value {
  font-size: 1rem;
  color: var(--pst-white);
  font-weight: 500;
}
.pst-contact-info-value a:hover { color: var(--pst-red); }
.pst-hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 20px;
  margin-top: 8px;
}
.pst-hours-day { font-size: 0.85rem; color: var(--pst-gray); }
.pst-hours-time { font-size: 0.85rem; color: var(--pst-gray-light); }

.pst-contact-form-wrap {
  background: var(--pst-dark-card);
  border: 1px solid var(--pst-border);
  border-radius: var(--pst-radius-lg);
  padding: 44px;
}
.pst-form-error {
  font-size: 0.78rem;
  color: #f56565;
  margin-top: 5px;
  display: none;
}
.pst-form-group.has-error .pst-form-control { border-color: #f56565; }
.pst-form-group.has-error .pst-form-error { display: block; }
.pst-form-success {
  background: rgba(72, 187, 120, 0.12);
  border: 1px solid rgba(72, 187, 120, 0.3);
  border-radius: var(--pst-radius);
  padding: 20px;
  text-align: center;
  color: #68d391;
  display: none;
}
.pst-captcha-row {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--pst-dark-mid);
  border: 1px solid var(--pst-border);
  border-radius: var(--pst-radius);
  padding: 14px 18px;
}
.pst-captcha-question { font-size: 0.95rem; color: var(--pst-gray-light); }
.pst-captcha-input {
  width: 70px;
  background: var(--pst-dark-card);
  border: 1px solid var(--pst-border);
  border-radius: 4px;
  padding: 8px 12px;
  font-family: var(--pst-font-body);
  font-size: 1rem;
  color: var(--pst-white);
  text-align: center;
  outline: none;
}
.pst-captcha-input:focus { border-color: var(--pst-red); }

/* ── Map Embed ── */
.pst-map-wrap {
  border-radius: var(--pst-radius-lg);
  overflow: hidden;
  border: 1px solid var(--pst-border);
  height: 360px;
  margin-top: 40px;
}
.pst-map-wrap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(20%) invert(90%) contrast(90%); }

/* ── About Page ── */
.pst-about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 80px 0;
  align-items: center;
}
.pst-about-img-collage {
  position: relative;
  height: 500px;
}
.pst-about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--pst-radius-lg);
}
.pst-about-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--pst-radius-lg);
  border: 4px solid var(--pst-black);
}
.pst-about-story-text h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.pst-about-story-text p {
  font-size: 0.97rem;
  color: var(--pst-gray);
  line-height: 1.8;
  margin-bottom: 18px;
}

/* ── Values ── */
.pst-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pst-value-card {
  background: var(--pst-dark-card);
  border: 1px solid var(--pst-border);
  border-radius: var(--pst-radius-lg);
  padding: 36px 28px;
  transition: all var(--pst-transition);
}
.pst-value-card:hover {
  border-color: rgba(232,52,26,0.3);
  transform: translateY(-4px);
}
.pst-value-icon {
  width: 56px;
  height: 56px;
  background: var(--pst-red-glow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--pst-red);
  margin-bottom: 20px;
}
.pst-value-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--pst-white);
}
.pst-value-text {
  font-size: 0.9rem;
  color: var(--pst-gray);
  line-height: 1.7;
}

/* ── Legal Pages ── */
.pst-legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 0 100px;
  color: var(--pst-gray-light);
  line-height: 1.8;
  font-size: 0.97rem;
}
.pst-legal-content h2 {
  font-size: 1.4rem;
  color: var(--pst-white);
  margin: 40px 0 14px;
  padding-top: 16px;
  border-top: 1px solid var(--pst-border);
}
.pst-legal-content h3 {
  font-size: 1.1rem;
  color: var(--pst-off-white);
  margin: 28px 0 10px;
}
.pst-legal-content p { margin-bottom: 16px; }
.pst-legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 20px;
}
.pst-legal-content ul li { margin-bottom: 8px; }
.pst-legal-content a { color: var(--pst-red); text-decoration: underline; }
.pst-legal-meta {
  display: flex;
  gap: 24px;
  font-size: 0.82rem;
  color: var(--pst-gray);
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--pst-border);
}

/* ── Thank You ── */
.pst-thankyou-wrap {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
}
.pst-thankyou-box {
  text-align: center;
  max-width: 560px;
}
.pst-thankyou-icon {
  width: 100px;
  height: 100px;
  background: var(--pst-red-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--pst-red);
  margin: 0 auto 36px;
}
.pst-thankyou-title {
  font-family: var(--pst-font-display);
  font-size: 3.5rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.pst-thankyou-text {
  font-size: 1.05rem;
  color: var(--pst-gray);
  line-height: 1.75;
  margin-bottom: 36px;
}

/* ── Accordion ── */
.pst-accordion-item {
  border-bottom: 1px solid var(--pst-border);
}
.pst-accordion-trigger {
  width: 100%;
  text-align: left;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  font-weight: 600;
  color: var(--pst-white);
  cursor: pointer;
  transition: color var(--pst-transition);
}
.pst-accordion-trigger:hover { color: var(--pst-red); }
.pst-accordion-trigger i { transition: transform 0.3s ease; color: var(--pst-gray); }
.pst-accordion-item.pst-open .pst-accordion-trigger i { transform: rotate(180deg); color: var(--pst-red); }
.pst-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.pst-accordion-body-inner {
  padding-bottom: 22px;
  font-size: 0.93rem;
  color: var(--pst-gray);
  line-height: 1.75;
}

/* ── Blog Index Page ── */
.pst-blog-index-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}
.pst-blog-index-card {
  background: var(--pst-dark-card);
  border: 1px solid var(--pst-border);
  border-radius: var(--pst-radius-lg);
  overflow: hidden;
  transition: all var(--pst-transition);
  display: flex;
  flex-direction: column;
}
.pst-blog-index-card:hover {
  border-color: rgba(232,52,26,0.3);
  transform: translateY(-6px);
  box-shadow: var(--pst-shadow-red);
}
.pst-blog-index-card-img {
  height: 220px;
  object-fit: cover;
  width: 100%;
  transition: transform 0.4s ease;
}
.pst-blog-index-card:hover .pst-blog-index-card-img { transform: scale(1.04); }
.pst-blog-index-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pst-blog-index-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--pst-white);
  line-height: 1.4;
}
.pst-blog-index-card-excerpt {
  font-size: 0.9rem;
  color: var(--pst-gray);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .pst-blog-grid { grid-template-columns: 1fr 1fr; }
  .pst-blog-grid .pst-blog-card-sm:last-child { display: none; }
  .pst-footer-grid { grid-template-columns: 1fr 1fr; }
  .pst-selector-panel.pst-active { grid-template-columns: 1fr; }
  .pst-article-layout { grid-template-columns: 1fr; }
  .pst-article-sidebar { display: none; }
}

@media (max-width: 768px) {
  .pst-navbar { padding: 0 20px; }
  .pst-nav-links { display: none; }
  .pst-hamburger { display: flex; }
  .pst-hero-heading { font-size: clamp(2.8rem, 12vw, 5rem); }
  .pst-hero-svg-decoration { display: none; }
  .pst-services-grid { grid-template-columns: 1fr; }
  .pst-estimator-row { grid-template-columns: 1fr; }
  .pst-quiz-options { grid-template-columns: 1fr; }
  .pst-before-after-grid { grid-template-columns: 1fr; }
  .pst-blog-grid { grid-template-columns: 1fr; }
  .pst-values-grid { grid-template-columns: 1fr; }
  .pst-team-grid { grid-template-columns: 1fr 1fr; }
  .pst-testimonial-inner { grid-template-columns: 1fr; }
  .pst-timeline-wrap { grid-template-columns: 1fr; }
  .pst-timeline-line { display: none; }
  .pst-timeline-entry.pst-left, .pst-timeline-entry.pst-right { grid-column: 1; text-align: left; }
  .pst-footer-grid { grid-template-columns: 1fr; }
  .pst-container-wide { padding: 0 20px; }
  .pst-service-detail { grid-template-columns: 1fr; }
  .pst-service-detail.pst-reverse { direction: ltr; }
  .pst-contact-layout { grid-template-columns: 1fr; }
  .pst-about-story { grid-template-columns: 1fr; }
  .pst-cookie-banner { padding: 16px 20px; }
}

@media (max-width: 480px) {
  .pst-team-grid { grid-template-columns: 1fr; }
  .pst-hero-actions { flex-direction: column; align-items: flex-start; }
  .pst-quiz-wrapper { padding: 28px 20px; }
  .pst-estimator-card { padding: 28px 20px; }
  .pst-contact-form-wrap { padding: 28px 20px; }
}

/* =============================================================
   ARTICLE PAGE — читання прогрес, герой, контент, сайдбар
   ============================================================= */

/* ── Прогрес-бар читання ── */
.pst-read-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--pst-red), var(--pst-orange));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ── Герой статті ── */
.pst-article-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
  padding-top: 100px; /* відступ під navbar */
  overflow: hidden;
}
.pst-article-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.pst-article-hero:hover .pst-article-hero-bg {
  transform: scale(1);
}
.pst-article-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 13, 14, 0.96) 0%,
    rgba(13, 13, 14, 0.7) 45%,
    rgba(13, 13, 14, 0.35) 100%
  );
}
.pst-article-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

/* ── Категорія-тег ── */
.pst-article-category-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pst-red);
  background: var(--pst-red-glow);
  border: 1px solid rgba(232, 52, 26, 0.28);
  border-radius: 4px;
  padding: 4px 12px;
  margin-bottom: 16px;
}

/* ── Заголовок статті ── */
.pst-article-hero-title {
  font-family: var(--pst-font-body);
  font-size: clamp(1.85rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--pst-white);
  margin-bottom: 18px;
  max-width: 780px;
}

/* ── Мета-інформація (автор / дата / час) ── */
.pst-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.82rem;
  color: var(--pst-gray);
}
.pst-article-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.pst-article-meta i {
  color: var(--pst-red);
  font-size: 0.75rem;
}

/* ── Breadcrumb (override Bootstrap) ── */
.pst-breadcrumb-wrap {
  margin-bottom: 20px;
}
.pst-breadcrumb {
  background: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 0.8rem;
  color: var(--pst-gray);
}
.pst-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: '›';
  color: var(--pst-gray);
}
.pst-breadcrumb a {
  color: var(--pst-gray);
  transition: color var(--pst-transition);
}
.pst-breadcrumb a:hover { color: var(--pst-red); }
.pst-breadcrumb .active { color: var(--pst-gray-light); }

/* ── Основний layout статті (Bootstrap row) ── */
.pst-article-layout {
  padding-top: 60px;
  padding-bottom: 100px;
}

/* ── Тіло статті ── */
.pst-article-content {
  color: var(--pst-gray-light);
  font-size: 1.02rem;
  line-height: 1.85;
}

/* Лід-абзац */
.pst-article-lead {
  font-size: 1.2rem;
  line-height: 1.75;
  color: var(--pst-off-white);
  border-left: 3px solid var(--pst-red);
  padding-left: 20px;
  margin-bottom: 40px;
  font-weight: 400;
}

/* Заголовки всередині статті */
.pst-article-content h2 {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--pst-white);
  margin: 52px 0 18px;
  padding-top: 22px;
  border-top: 1px solid var(--pst-border);
  line-height: 1.25;
}
.pst-article-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--pst-white);
  margin: 36px 0 12px;
}
.pst-article-content p {
  margin-bottom: 20px;
}
.pst-article-content strong {
  color: var(--pst-white);
  font-weight: 600;
}
.pst-article-content a {
  color: var(--pst-red);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.pst-article-content a:hover {
  color: var(--pst-orange);
}

/* Зображення всередині статті */
.pst-article-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--pst-radius-lg);
  margin: 36px 0;
  display: block;
}

/* Список всередині статті */
.pst-article-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pst-article-list li {
  padding-left: 22px;
  position: relative;
  font-size: 0.97rem;
  color: var(--pst-gray-light);
  line-height: 1.7;
}
.pst-article-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pst-red);
}
.pst-article-list li strong {
  color: var(--pst-white);
  font-weight: 600;
}

/* CTA-блок у статті */
.pst-article-cta {
  background: var(--pst-dark-card);
  border: 1px solid var(--pst-border);
  border-left: 4px solid var(--pst-red);
  border-radius: var(--pst-radius-lg);
  padding: 36px 40px;
  margin-top: 56px;
}
.pst-article-cta h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--pst-white);
  margin-bottom: 10px;
}
.pst-article-cta p {
  font-size: 0.95rem;
  color: var(--pst-gray);
  margin-bottom: 22px;
}

/* ── Сайдбар статті ── */
.pst-article-sidebar {
  position: sticky;
  top: 100px; /* 72px navbar + 28px зазор */
  align-self: flex-start;
}

.pst-sidebar-widget {
  background: var(--pst-dark-card);
  border: 1px solid var(--pst-border);
  border-radius: var(--pst-radius-lg);
  padding: 28px;
}

.pst-sidebar-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pst-white);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--pst-border);
}

.pst-sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0;
  margin: 0;
}
.pst-sidebar-links li a {
  display: block;
  font-size: 0.88rem;
  color: var(--pst-gray);
  padding: 8px 0;
  border-bottom: 1px solid var(--pst-border);
  transition: color var(--pst-transition), padding-left var(--pst-transition);
  line-height: 1.45;
}
.pst-sidebar-links li:last-child a {
  border-bottom: none;
}
.pst-sidebar-links li a:hover {
  color: var(--pst-red);
  padding-left: 6px;
}

.pst-sidebar-contact {
  background: var(--pst-dark-card);
  border: 1px solid var(--pst-border);
  border-radius: var(--pst-radius-lg);
  padding: 24px 28px;
  font-size: 0.88rem;
  color: var(--pst-gray);
  line-height: 1.65;
}
.pst-sidebar-contact strong {
  color: var(--pst-white);
}

/* ── Адаптив для статті ── */
@media (max-width: 991px) {
  .pst-article-hero {
    min-height: 380px;
    padding-bottom: 44px;
  }
  .pst-article-hero-title {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }
  .pst-article-sidebar {
    display: none; /* приховується через Bootstrap d-none d-lg-block */
  }
  .pst-article-img {
    height: 260px;
  }
}
@media (max-width: 767px) {
  .pst-article-lead {
    font-size: 1.05rem;
  }
  .pst-article-content h2 {
    font-size: 1.35rem;
    margin-top: 38px;
  }
  .pst-article-content h3 {
    font-size: 1.1rem;
  }
  .pst-article-cta {
    padding: 24px 22px;
  }
  .pst-article-img {
    height: 200px;
    border-radius: var(--pst-radius);
    margin: 24px 0;
  }
}
.logo{
  max-width: 120px;
  object-fit: contain;
}

html{
  overflow-x: hidden;
}

/* ── About Page ── */
.pst-about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 80px 0;
  align-items: center;
}
.pst-about-img-collage {
  position: relative;
  height: 500px;
}
.pst-about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--pst-radius-lg);
}
.pst-about-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--pst-radius-lg);
  border: 4px solid var(--pst-black);
}
.pst-about-story-text h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.pst-about-story-text p {
  font-size: 0.97rem;
  color: var(--pst-gray);
  line-height: 1.8;
  margin-bottom: 18px;
}
 
/* ── Values ── */
.pst-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pst-value-card {
  background: var(--pst-dark-card);
  border: 1px solid var(--pst-border);
  border-radius: var(--pst-radius-lg);
  padding: 36px 28px;
  transition: all var(--pst-transition);
}
.pst-value-card:hover {
  border-color: rgba(232,52,26,0.3);
  transform: translateY(-4px);
}
.pst-value-icon {
  width: 56px;
  height: 56px;
  background: var(--pst-red-glow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--pst-red);
  margin-bottom: 20px;
}
.pst-value-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--pst-white);
}
.pst-value-text {
  font-size: 0.9rem;
  color: var(--pst-gray);
  line-height: 1.7;
}
 
/* ── Legal Pages ── */
.pst-legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 0 100px;
  color: var(--pst-gray-light);
  line-height: 1.8;
  font-size: 0.97rem;
}
.pst-legal-content h2 {
  font-size: 1.4rem;
  color: var(--pst-white);
  margin: 40px 0 14px;
  padding-top: 16px;
  border-top: 1px solid var(--pst-border);
}
.pst-legal-content h3 {
  font-size: 1.1rem;
  color: var(--pst-off-white);
  margin: 28px 0 10px;
}
.pst-legal-content p { margin-bottom: 16px; }
.pst-legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 20px;
}
.pst-legal-content ul li { margin-bottom: 8px; }
.pst-legal-content a { color: var(--pst-red); text-decoration: underline; }
.pst-legal-meta {
  display: flex;
  gap: 24px;
  font-size: 0.82rem;
  color: var(--pst-gray);
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--pst-border);
}
 
/* ── Thank You ── */
.pst-thankyou-wrap {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
}
.pst-thankyou-box {
  text-align: center;
  max-width: 560px;
}
.pst-thankyou-icon {
  width: 100px;
  height: 100px;
  background: var(--pst-red-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--pst-red);
  margin: 0 auto 36px;
}
.pst-thankyou-title {
  font-family: var(--pst-font-display);
  font-size: 3.5rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.pst-thankyou-text {
  font-size: 1.05rem;
  color: var(--pst-gray);
  line-height: 1.75;
  margin-bottom: 36px;
}
 
/* ── Accordion ── */
.pst-accordion-item {
  border-bottom: 1px solid var(--pst-border);
}
.pst-accordion-trigger {
  width: 100%;
  text-align: left;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  font-weight: 600;
  color: var(--pst-white);
  cursor: pointer;
  transition: color var(--pst-transition);
}
.pst-accordion-trigger:hover { color: var(--pst-red); }
.pst-accordion-trigger i { transition: transform 0.3s ease; color: var(--pst-gray); }
.pst-accordion-item.pst-open .pst-accordion-trigger i { transform: rotate(180deg); color: var(--pst-red); }
.pst-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.pst-accordion-body-inner {
  padding-bottom: 22px;
  font-size: 0.93rem;
  color: var(--pst-gray);
  line-height: 1.75;
}



/* ── Legal Pages ── */
.pst-legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 0 100px;
  color: var(--pst-gray-light);
  line-height: 1.8;
  font-size: 0.97rem;
}
.pst-legal-content h2 {
  font-size: 1.4rem;
  color: var(--pst-white);
  margin: 40px 0 14px;
  padding-top: 16px;
  border-top: 1px solid var(--pst-border);
}
.pst-legal-content h3 {
  font-size: 1.1rem;
  color: var(--pst-off-white);
  margin: 28px 0 10px;
}
.pst-legal-content p { margin-bottom: 16px; }
.pst-legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 20px;
}
.pst-legal-content ul li { margin-bottom: 8px; }
.pst-legal-content a { color: var(--pst-red); text-decoration: underline; }
.pst-legal-meta {
  display: flex;
  gap: 24px;
  font-size: 0.82rem;
  color: var(--pst-gray);
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--pst-border);
}
 
/* ── Thank You ── */
.pst-thankyou-wrap {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
}
.pst-thankyou-box {
  text-align: center;
  max-width: 560px;
}
.pst-thankyou-icon {
  width: 100px;
  height: 100px;
  background: var(--pst-red-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--pst-red);
  margin: 0 auto 36px;
}
.pst-thankyou-title {
  font-family: var(--pst-font-display);
  font-size: 3.5rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.pst-thankyou-text {
  font-size: 1.05rem;
  color: var(--pst-gray);
  line-height: 1.75;
  margin-bottom: 36px;
}



/* ── Contact Form ── */
.pst-contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  padding: 80px 0;
}
.pst-contact-info {}
.pst-contact-info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--pst-border);
}
.pst-contact-info-item:first-child { padding-top: 0; }
.pst-contact-info-icon {
  width: 48px;
  height: 48px;
  background: var(--pst-red-glow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--pst-red);
  flex-shrink: 0;
}
.pst-contact-info-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pst-gray);
  margin-bottom: 4px;
}
.pst-contact-info-value {
  font-size: 1rem;
  color: var(--pst-white);
  font-weight: 500;
}
.pst-contact-info-value a:hover { color: var(--pst-red); }
.pst-hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 20px;
  margin-top: 8px;
}
.pst-hours-day { font-size: 0.85rem; color: var(--pst-gray); }
.pst-hours-time { font-size: 0.85rem; color: var(--pst-gray-light); }
 
.pst-contact-form-wrap {
  background: var(--pst-dark-card);
  border: 1px solid var(--pst-border);
  border-radius: var(--pst-radius-lg);
  padding: 44px;
}
.pst-form-error {
  font-size: 0.78rem;
  color: #f56565;
  margin-top: 5px;
  display: none;
}
.pst-form-group.has-error .pst-form-control { border-color: #f56565; }
.pst-form-group.has-error .pst-form-error { display: block; }
.pst-form-success {
  background: rgba(72, 187, 120, 0.12);
  border: 1px solid rgba(72, 187, 120, 0.3);
  border-radius: var(--pst-radius);
  padding: 20px;
  text-align: center;
  color: #68d391;
  display: none;
}
.pst-captcha-row {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--pst-dark-mid);
  border: 1px solid var(--pst-border);
  border-radius: var(--pst-radius);
  padding: 14px 18px;
}
.pst-captcha-question { font-size: 0.95rem; color: var(--pst-gray-light); }
.pst-captcha-input {
  width: 70px;
  background: var(--pst-dark-card);
  border: 1px solid var(--pst-border);
  border-radius: 4px;
  padding: 8px 12px;
  font-family: var(--pst-font-body);
  font-size: 1rem;
  color: var(--pst-white);
  text-align: center;
  outline: none;
}
.pst-captcha-input:focus { border-color: var(--pst-red); }
 
/* ── Map Embed ── */
.pst-map-wrap {
  border-radius: var(--pst-radius-lg);
  overflow: hidden;
  border: 1px solid var(--pst-border);
  height: 360px;
  margin-top: 40px;
}
.pst-map-wrap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(20%) invert(90%) contrast(90%); }
 
/* =============================================================
   CONTACT PAGE — форма, info-block, map, captcha, btn variants
   ============================================================= */
 
/* ── Загальна секція контакту ── */
.pst-contact-section {
  background: var(--pst-black);
}
 
/* ── pst-form-input — уніфікований input/select/textarea ── */
.pst-form-input {
  display: block;
  width: 100%;
  background: var(--pst-dark-mid);
  border: 1px solid var(--pst-border);
  border-radius: var(--pst-radius);
  padding: 13px 18px;
  font-family: var(--pst-font-body);
  font-size: 0.95rem;
  color: var(--pst-white);
  outline: none;
  transition: border-color var(--pst-transition), box-shadow var(--pst-transition);
  -webkit-appearance: none;
  appearance: none;
}
.pst-form-input::placeholder {
  color: var(--pst-gray);
  opacity: 1;
}
.pst-form-input:focus {
  border-color: var(--pst-red);
  box-shadow: 0 0 0 3px var(--pst-red-glow);
}
.pst-form-input.is-invalid {
  border-color: #f56565;
}
.pst-form-input option {
  background: var(--pst-dark-mid);
  color: var(--pst-white);
}
 
/* select arrow */
.pst-form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239a9a9f' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}
.pst-form-select:focus {
  border-color: var(--pst-red);
  box-shadow: 0 0 0 3px var(--pst-red-glow);
}
 
/* textarea */
.pst-form-textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.65;
}
 
/* label span (asterisk) */
.pst-form-label span {
  color: var(--pst-red);
  font-style: normal;
}
 
/* error message */
.pst-form-error {
  font-size: 0.78rem;
  color: #f56565;
  margin-top: 5px;
  min-height: 18px;
  display: block;
}
 
/* ── Контактна форма (без wrap-картки) ── */
.pst-contact-form {
  display: flex;
  flex-direction: column;
  gap: 0; /* Bootstrap row g-3 керує gap */
}
 
/* ── Кнопка: повна ширина ── */
.pst-btn-full {
  width: 100%;
  justify-content: center;
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  position: relative;
}
.pst-btn-text {
  transition: opacity 0.2s ease;
}
.pst-btn-loader {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1rem;
}
 
/* ── Captcha wrap (нова структура, не row) ── */
.pst-captcha-wrap {
  background: var(--pst-dark-card);
  border: 1px solid var(--pst-border);
  border-radius: var(--pst-radius);
  padding: 18px 20px;
}
.pst-captcha-wrap .pst-form-label {
  display: block;
  margin-bottom: 10px;
}
.pst-captcha-q {
  font-family: var(--pst-font-display);
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: var(--pst-white);
  vertical-align: middle;
}
.pst-captcha-input {
  max-width: 140px;
}
 
/* ── Contact Info Block ── */
.pst-contact-info-block {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--pst-border);
  border-radius: var(--pst-radius-lg);
  overflow: hidden;
  background: var(--pst-dark-card);
}
.pst-contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 26px;
  border-bottom: 1px solid var(--pst-border);
  transition: background var(--pst-transition);
}
.pst-contact-info-item:last-child {
  border-bottom: none;
}
.pst-contact-info-item:hover {
  background: rgba(255,255,255,0.02);
}
.pst-contact-info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--pst-red-glow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--pst-red);
  margin-top: 2px;
}
/* h5 і p всередині info-item */
.pst-contact-info-item h5 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pst-gray);
  margin-bottom: 5px;
}
.pst-contact-info-item p {
  font-size: 0.95rem;
  color: var(--pst-gray-light);
  line-height: 1.6;
  margin: 0;
}
.pst-contact-info-item p a {
  color: var(--pst-gray-light);
  transition: color var(--pst-transition);
}
.pst-contact-info-item p a:hover {
  color: var(--pst-red);
}
 
/* ── Hours table ── */
.pst-hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 4px;
}
.pst-hours-table tr + tr td {
  padding-top: 5px;
}
.pst-hours-table td {
  font-size: 0.88rem;
  color: var(--pst-gray-light);
  vertical-align: top;
  padding-bottom: 3px;
}
.pst-hours-table td:first-child {
  color: var(--pst-gray);
  padding-right: 20px;
  white-space: nowrap;
}
 
/* ── Map embed ── */
.pst-map-embed {
  border-radius: var(--pst-radius-lg);
  overflow: hidden;
  border: 1px solid var(--pst-border);
  line-height: 0; /* прибирає зайвий відступ під iframe */
}
.pst-map-embed iframe {
  display: block;
  width: 100%;
  border: 0;
  filter: grayscale(25%) invert(88%) contrast(88%);
  border-radius: var(--pst-radius-lg);
}
 
/* ── Адаптив контактної сторінки ── */
@media (max-width: 991px) {
  .pst-contact-info-item {
    padding: 18px 20px;
  }
}
@media (max-width: 767px) {
  .pst-captcha-input { max-width: 100%; }
  .pst-contact-info-block { border-radius: var(--pst-radius); }
  .pst-map-embed iframe { height: 200px; }
  .pst-hours-table td:first-child { padding-right: 12px; }
}


/* ── Interior Hero (About, Contact, Services sub-pages) ── */
.pst-interior-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 64px;
  padding-top: 90px;
  overflow: hidden;
}
.pst-interior-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 7s ease;
}
.pst-interior-hero:hover .pst-interior-hero-bg { transform: scale(1); }
.pst-interior-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 13, 14, 0.96) 0%,
    rgba(13, 13, 14, 0.65) 50%,
    rgba(13, 13, 14, 0.3) 100%
  );
}
.pst-interior-hero-content {
  position: relative;
  z-index: 2;
}
.pst-interior-title {
  font-family: var(--pst-font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 0.92;
  color: var(--pst-white);
  margin-bottom: 18px;
}
.pst-interior-subtitle {
  font-size: 1.1rem;
  color: var(--pst-gray);
  max-width: 560px;
  line-height: 1.7;
}


.pst-legal-hero{
  padding-top: 120px!important;
}