.page-header {
  padding: 110px 20px 80px;
  background: radial-gradient(140% 120% at 15% 5%, #1a3158 0%, #0c1f3c 45%, #061127 100%);
  position: relative;
  overflow: hidden;
  color: var(--white);
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../hero-map-bg.png") center/cover no-repeat;
  background-color: rgba(12, 31, 60, 0.5);
  background-blend-mode: overlay;
  opacity: 0.12;
  pointer-events: none;
}
.page-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 70% at 12% 8%, rgba(255,255,255,.08), transparent 62%),
    radial-gradient(70% 70% at 82% 12%, rgba(242,163,59,.08), transparent 60%);
  pointer-events: none;
}
.page-header > * {
  position: relative;
  z-index: 1;
}
.header-grid {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 28px;
      align-items: center;
      max-width: var(--max-w);
      margin: 0 auto;
    }
    @media (max-width: 900px) {
      .header-grid {
        grid-template-columns: 1fr;
      }
    }
    .header-content {
      padding: 30px 30px 26px;
      background: rgba(7, 16, 32, 0.35);
      border-radius: 16px;
      box-shadow: 0 24px 60px rgba(4, 10, 20, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(10px);
      max-width: 760px;
    }
    .header-content .hero__headline {
      font-family: var(--font-display);
      font-size: clamp(2.4rem, 4vw, 3rem);
      color: var(--white);
      margin-bottom: 18px;
      font-weight: 800;
      line-height: 1.1;
    }
    .pricing-subhead {
      margin-bottom: 12px;
    }
    .pricing-intro {
      margin-bottom: 22px;
    }
    .header-image-placeholder {
      position: relative;
      height: 280px;
      border-radius: 12px;
      overflow: hidden;
      background: url("../pricing.png") center/cover no-repeat;
      box-shadow: 0 20px 44px rgba(4, 10, 20, 0.45);
      border: 1px solid rgba(255, 255, 255, 0.12);
      align-self: center;
    }
    .header-image-placeholder::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(6, 26, 60, 0.25), rgba(14, 90, 150, 0.2));
      pointer-events: none;
    }
    @media (max-width: 900px) {
      .header-image-placeholder {
        height: 220px;
        max-width: 520px;
        margin: 20px auto 0;
      }
    }

.pricing-grid {
  align-items: stretch;
  margin-top: 26px;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
    #pricing .section-title {
      margin-top: 28px;
    }
    #pricing .section-title + .section-lead {
      margin-top: 12px;
    }
    #pricing .pricing-grid + .section-title {
      margin-top: 48px;
    }
.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 26px;
  border-radius: 16px;
  background: rgba(7, 16, 32, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 32px rgba(4, 10, 20, 0.4);
  position: relative;
}
.pricing-card h3 {
  margin-bottom: 4px;
  color: var(--white);
  font-size: 1.1rem;
}
.pricing-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 8px;
}
.pricing-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}
.pricing-card p strong {
  color: var(--white);
}
.pricing-meta {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 8px 0 2px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(242, 163, 59, 0.55);
  background: linear-gradient(180deg, rgba(242, 163, 59, 0.2), rgba(242, 163, 59, 0.12));
  color: var(--white);
  font-weight: 800;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}
.pricing-toggle:hover,
.pricing-toggle:focus-visible {
  border-color: rgba(242, 163, 59, 0.85);
  background: linear-gradient(180deg, rgba(242, 163, 59, 0.28), rgba(242, 163, 59, 0.18));
  box-shadow: 0 12px 28px rgba(242, 163, 59, 0.18);
  transform: translateY(-1px);
}
.pricing-card.is-open .pricing-toggle {
  border-color: rgba(242, 163, 59, 0.9);
  background: linear-gradient(180deg, rgba(242, 163, 59, 0.34), rgba(242, 163, 59, 0.22));
}
.pricing-detail {
  display: none;
  margin-top: 8px;
}
.pricing-card.is-open .pricing-detail {
  display: block;
}
.pricing-price span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
}
.pricing-list {
  margin: 6px 0 16px;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}
.pricing-list li {
  margin-bottom: 8px;
}
.pricing-card .btn-primary {
  margin-top: auto;
  align-self: flex-start;
}
.pricing-cta {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
    .pricing-cta .btn-secondary {
      display: inline-block;
      padding: 12px 22px;
      border-radius: var(--radius);
      border: 1px solid rgba(255, 255, 255, 0.25);
      color: var(--white);
      font-weight: 600;
      transition: .25s;
      background: transparent;
    }
    .pricing-cta .btn-secondary:hover {
      transform: translateY(-1px);
      border-color: rgba(242, 163, 59, .6);
      color: var(--white);
    }
.pricing-card--featured {
  border-color: rgba(242, 163, 59, 0.45);
  box-shadow: 0 22px 50px rgba(4, 10, 20, 0.5);
  background: rgba(15, 28, 52, 0.7);
}

.pricing-group {
  margin-top: 56px;
}
.pricing-group .section-title {
  margin-bottom: 10px;
}
.pricing-group .section-lead {
  margin-bottom: 24px;
}
.pricing-tabs {
  margin: 24px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.pricing-tab {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(7, 16, 32, 0.4);
  color: rgba(255, 255, 255, 0.85);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
}
.pricing-tab.is-active {
  border-color: rgba(242, 163, 59, 0.7);
  color: var(--accent);
  background: rgba(242, 163, 59, 0.08);
}
.pricing-group.is-hidden {
  display: none;
}
.pricing-choose-list {
  max-width: 760px;
  margin: 0 auto 24px;
}

.post-purchase {
  margin-bottom: 40px;
  text-align: center;
}
.post-purchase-steps {
  margin-top: 18px;
  display: grid;
  gap: 12px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.post-purchase-step {
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 16, 32, 0.45);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

.pricing-guidance-form {
  margin-top: 6px;
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 12px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.pricing-guidance:not(.is-revealed) .pricing-guidance-form {
  display: none;
}

.pricing-guidance-field {
  display: grid;
  gap: 6px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

.pricing-guidance-field--full {
  grid-column: 1 / -1;
}

.pricing-guidance-form input,
.pricing-guidance-form select,
.pricing-guidance-form textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(7, 16, 32, 0.5);
  color: var(--white);
}

.pricing-guidance-form textarea {
  resize: vertical;
}

.pricing-guidance-form input::placeholder,
.pricing-guidance-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.65);
}

.pricing-guidance-form .btn-primary {
  grid-column: 1 / -1;
  justify-self: center;
  margin-top: 4px;
}

@media (max-width: 720px) {
  .pricing-guidance-form {
    grid-template-columns: 1fr;
  }
  .pricing-guidance-field--full,
  .pricing-guidance-form .btn-primary {
    grid-column: auto;
  }
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card {
    padding: 22px;
  }
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card {
    padding: 22px;
  }
}

    .execution-list {
      max-width: 620px;
      margin: 0 auto;
      padding-left: 18px;
      color: var(--muted);
      line-height: 1.7;
    }
    .execution-list li {
      margin-bottom: 8px;
    }
    .execution-wrap {
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
    }
    @media (max-width: 768px) {
      .execution-wrap {
        padding: 0;
      }
    }
    .execution-label {
      margin-top: 12px;
    }
    .execution-list--primary {
      list-style: none;
      padding-left: 0;
      margin: 18px auto 0;
      display: grid;
      gap: 12px;
      text-align: left;
    }
    .execution-list--primary li {
      position: relative;
      padding-left: 26px;
      margin-bottom: 0;
    }
    .execution-list--primary li::before {
  content: "\2713";
      position: absolute;
      left: 0;
      top: 0;
      color: var(--accent);
      font-weight: 800;
    }
    .execution-note {
      margin-top: 24px;
      color: #0c1f3c;
      text-align: center;
    }
    .no-do-list {
      max-width: 520px;
      text-align: left;
    }
    .boundaries-wrap {
      max-width: 780px;
      margin: 0 auto;
      text-align: center;
    }
    .boundaries-intro {
      margin-top: 10px;
      font-weight: 600;
    }
    .boundaries-list {
      margin: 18px auto 0;
      padding-left: 0;
      list-style: none;
    }
    .boundaries-list li {
      position: relative;
      padding-left: 24px;
      margin-bottom: 12px;
      color: var(--muted);
    }
    .boundaries-list li::before {
      content: "\2014";
      position: absolute;
      left: 0;
      top: 0;
      color: var(--accent);
      font-weight: 800;
    }
    .boundaries-close {
      margin-top: 16px;
      font-weight: 700;
      color: #0c1f3c;
    }

    .faq-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: var(--grid-gap);
      margin-top: var(--gap-lead-content);
    }
    .faq-item {
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: var(--radius);
      padding: 18px 20px;
      background: rgba(7, 16, 32, 0.55);
      box-shadow: 0 18px 40px rgba(4, 10, 20, 0.45);
    }
    .faq-item summary {
      font-weight: 700;
      cursor: pointer;
      color: var(--white);
    }
    .faq-item p {
      margin-top: 12px;
      color: rgba(255, 255, 255, 0.78);
      line-height: 1.6;
    }
    body {
      background: #0c1f3c;
    }
    .section {
      background: #0c1f3c;
    }
    .section-label {
      color: var(--accent);
    }
    .section-title,
    .section-title.center {
      color: var(--white);
    }
    .section-lead {
      color: rgba(255, 255, 255, 0.82);
    }
    .pricing-card {
      background: rgba(7, 16, 32, 0.55);
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: 0 18px 40px rgba(4, 10, 20, 0.45);
    }
    .pricing-card h3 {
      color: var(--white);
    }
    
  .pricing-group {
      margin-top: 30px;
    }
    .pricing-group .pricing-grid {
      margin-top: 24px;
    }
