/* stakeout.css — Stakeout Service page specific styles */

.so-hero {
  position: relative;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  min-height: min(520px, 70vh);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: #0f1419;
}

.so-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
}

.so-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 15, 35, 0.88) 0%, rgba(10, 15, 35, 0.45) 55%, rgba(10, 15, 35, 0.12) 100%);
}

.so-hero-content {
  position: relative;
  z-index: 2;
  padding: 56px 72px;
  color: #fff;
  max-width: 760px;
}

.so-hero-title {
  font-size: clamp(36px, 4.5vw, 62px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-color: rgba(255, 255, 255, 0.4);
  margin-bottom: 10px;
}

.so-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  padding: 72px;
}

.so-what-provide h2 {
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 32px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--accent-blue);
}

.so-provide-item h3 {
  font-size: 20px;
  font-weight: 400;
  color: var(--accent-blue);
  margin-bottom: 8px;
}

.so-provide-item p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

.so-pricing h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--accent-blue);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.so-pricing p,
.so-pricing li {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
}

.so-pricing ul {
  padding-left: 18px;
  margin: 8px 0;
}

.so-pricing strong {
  font-weight: 700;
}

.so-side-section {
  margin-top: 44px;
  width: 100%;
}

.so-side-heading {
  font-size: 28px;
  font-weight: 300;
  color: var(--accent-blue);
  margin-bottom: 18px;
  line-height: 1.2;
}

.so-side-heading::after {
  content: '';
  display: block;
  width: 52px;
  height: 3px;
  background: var(--accent-blue);
  margin-top: 12px;
}

.so-bullet-list {
  list-style: disc;
  margin: 0;
  padding: 0 0 0 22px;
}

.so-bullet-list li {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2px;
}

.so-bullet-list li strong {
  color: var(--text-body);
  font-weight: 600;
}

.so-notes-box {
  margin-top: 44px;
  width: 100%;
  background: var(--bg-warm);
  padding: 28px 32px;
  border-radius: 8px;
  box-sizing: border-box;
}

.so-notes-heading {
  font-size: 20px;
  font-weight: 400;
  color: var(--accent-blue);
  margin-bottom: 14px;
  line-height: 1.3;
}

.so-notes-box .so-bullet-list {
  margin-bottom: 0;
}

/* ── Package cards ── */
.so-packages {
  background: var(--bg-white);
  padding: 56px 72px 72px;
  border-top: 1px solid var(--border);
}

.so-packages-heading {
  font-size: 38px;
  font-weight: 300;
  color: var(--accent-blue);
  margin-bottom: 36px;
  line-height: 1.15;
}

.so-packages-heading::after {
  content: '';
  display: block;
  width: 52px;
  height: 3px;
  background: var(--accent-blue);
  margin-top: 12px;
}

.so-package-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.so-package-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  transition: border-color 0.2s;
}

.so-package-card:hover {
  border-color: var(--accent-blue);
}

.so-package-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 14px;
}

.so-package-icon-wrap {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.so-package-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.so-package-price {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--accent-blue);
  line-height: 1.2;
  text-align: right;
  flex-shrink: 0;
  padding-top: 2px;
}

.so-package-name {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
  line-height: 1.3;
}

.so-package-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0 0 16px;
  flex: 1 1 auto;
}

.so-package-card .so-package-btn.pay-btn {
  margin-top: auto;
  font-size: 13px;
}

.so-coverage {
  padding: 56px 72px;
  border-top: 1px solid var(--border);
}

.so-coverage h2 {
  font-size: 28px;
  font-weight: 300;
  color: var(--accent-blue);
  margin-bottom: 16px;
}

@media (max-width: 960px) {
  .so-hero-content {
    padding: 40px 28px;
  }

  .so-two-col {
    grid-template-columns: 1fr;
    padding: 40px 28px;
  }

  .so-packages {
    padding: 40px 28px 48px;
  }

  .so-package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .so-coverage {
    padding: 40px 28px;
  }
}

@media (max-width: 768px) {
  .so-hero {
    min-height: 320px;
  }

  .so-hero-content {
    padding: 28px 20px 36px;
  }

  .so-hero-title {
    font-size: clamp(26px, 6vw, 40px);
  }

  .so-two-col {
    padding: 40px 20px;
    gap: 40px;
  }

  .so-what-provide h2 {
    font-size: 28px;
  }

  .so-provide-item h3 {
    font-size: 18px;
  }

  .so-pricing {
    padding: 24px;
    background: var(--bg-warm);
    border-radius: 8px;
  }

  .so-notes-box {
    padding: 22px 24px;
  }

  .so-side-heading {
    font-size: 22px;
  }

  .so-bullet-list li {
    font-size: 13px;
  }

  .so-packages {
    padding: 36px 20px 44px;
  }

  .so-packages-heading {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .so-package-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .so-package-card {
    padding: 18px 16px 16px;
  }

  .so-coverage {
    padding: 36px 20px;
  }
}
