/* =========================================
   Subpage Styling — OpenClose Consulting
   Reuses tokens from ../css/style.css
========================================= */
.sub-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 160px 24px 100px;
}
.sub-nav {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 1180px;
  z-index: 1000;
}
.sub-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(12, 9, 7, 0.8);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  padding: 12px 22px;
}
.sub-nav-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.05;
}
.sub-nav-logo .wm {
  font-weight: 800;
  font-size: 18px;
  color: var(--text);
}
.sub-nav-logo .sl {
  font-size: 11px;
  color: var(--accent-orange);
  font-weight: 600;
}
.sub-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-2));
  padding: 9px 18px;
  border-radius: 12px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.sub-back:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px var(--orange-glow);
}
.sub-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.05;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}
.sub-hero .lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 0 8px;
}
.sub-kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-bottom: 14px;
}
.sub-content h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin: 48px 0 16px;
  letter-spacing: -0.01em;
}
.sub-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 28px 0 10px;
}
.sub-content p {
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0 0 16px;
  font-size: 1.02rem;
}
.sub-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.sub-content ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}
.sub-content ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent-orange);
  font-weight: 800;
}
.sub-content a {
  color: var(--accent-orange);
  text-decoration: none;
}
.sub-content a:hover { text-decoration: underline; }
.sub-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  margin: 20px 0;
}
.sub-cta-box {
  background: linear-gradient(135deg, rgba(255,138,61,0.14), rgba(255,107,26,0.08));
  border: 1px solid rgba(255,138,61,0.3);
  border-radius: 22px;
  padding: 36px;
  text-align: center;
  margin: 56px 0 0;
}
.sub-cta-box h2 { margin-top: 0; }
.sub-cta-btn {
  display: inline-block;
  margin-top: 12px;
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-2));
  color: #fff;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 14px;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.sub-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px var(--orange-glow);
}
.sub-footer {
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 40px 24px;
  color: var(--text-subtle);
  font-size: 14px;
}
.sub-footer a { color: var(--text-muted); text-decoration: none; }
.sub-footer a:hover { color: var(--accent-orange); }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.faq-item h3 { margin: 0 0 8px; color: var(--text); }
.faq-item p { margin: 0; }
@media (max-width: 600px) {
  .sub-wrap { padding-top: 130px; }
  .sub-nav-logo .sl { display: none; }
}
