/* =========================================
   REMOTE CCTV MONITORING PAGE
   ========================================= */

.remote-hero {
  padding-bottom: 18px;
}

.remote-hero .hero-copy {
  max-width: 760px;
}

.remote-hero .hero-copy h1 {
  max-width: 11ch;
}

.remote-hero-cards .remote-card {
  min-height: 220px;
}

/* =========================================
   REMOTE SERVICES
   ========================================= */

.remote-services {
  padding: 0 0 30px;
}

.remote-services-heading {
  max-width: 720px;
  margin-bottom: 18px;
}

.remote-services-heading h2 {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
}

.remote-services-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.98rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pricing-card {
  padding: 22px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(23, 23, 23, 0.98) 0%, rgba(15, 15, 15, 1) 100%);
  border: 1px solid rgba(199, 161, 90, 0.14);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 10px;
  scroll-margin-top: 110px;
  transition: border-color 0.2s ease;
  min-height: 100%;
}

.pricing-card:hover {
  border-color: rgba(199, 161, 90, 0.3);
}

.pricing-tag {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(199, 161, 90, 0.08);
  border: 1px solid rgba(199, 161, 90, 0.18);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pricing-card h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.15;
  color: #fff;
}

.price {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.1;
  font-weight: 700;
  color: var(--gold-light);
}

.pricing-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
  font-size: 0.94rem;
  min-height: 96px;
}

.service-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.55;
}

.service-list li {
  position: relative;
  padding-left: 18px;
}

.service-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-light);
  font-weight: 700;
}

/* =========================================
   REMOTE BENEFITS STRIP
   ========================================= */

.remote-benefits {
  padding: 0 0 30px;
}

.remote-benefits-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid rgba(199, 161, 90, 0.14);
  background:
    linear-gradient(180deg, rgba(22, 22, 22, 0.98) 0%, rgba(13, 13, 13, 1) 100%);
  box-shadow: var(--shadow-soft);
}

.remote-benefits-strip > div:first-child {
  max-width: 720px;
}

.section-label {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid rgba(199, 161, 90, 0.2);
  background: rgba(199, 161, 90, 0.06);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.remote-benefits-strip h2 {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
}

.remote-benefits-strip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.98rem;
}

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 980px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-copy {
    min-height: auto;
  }

  .remote-benefits-strip {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .remote-hero-cards .remote-card {
    min-height: 205px;
  }

  .pricing-card,
  .remote-benefits-strip {
    padding: 20px;
  }

  .remote-benefits-strip .btn {
    width: 100%;
  }
}