/* ─── SubMenu page ─────────────────────────────────── */
.sp-hero{
	max-width: 1200px;
	margin: 0 auto;
	padding: 72px 60px 36px;
}
.sp-breadcrumb{
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	color: var(--m);
	margin-bottom: 12px;
}
.sp-breadcrumb a{ color: var(--m); text-decoration: none; }
.sp-breadcrumb a:hover{ color: var(--t); }
.sp-breadcrumb-sep{ opacity: .35; }
.sp-page-title{
	font-size: clamp(26px, 3.5vw, 42px);
	font-weight: 800;
	letter-spacing: -.03em;
}
.sp-divider{ border: none; border-top: 1px solid var(--b1); }

.sp-layout{
	max-width: 1200px;
	margin: 0 auto;
	padding: 48px 60px 120px;
	display: grid;
	grid-template-columns: 230px 1fr;
	gap: 52px;
	align-items: start;
}

/* ─── Sidebar ──────────────────────────────────────── */
.sp-sidebar{
	position: sticky;
	top: 92px;
}
.sp-sidebar-label{
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .09em;
	text-transform: uppercase;
	color: var(--m);
	padding: 0 0 10px;
	border-bottom: 1px solid var(--b1);
	margin-bottom: 6px;
}
.sp-nav{ display: flex; flex-direction: column; gap: 1px; }

.sp-nav a{
	display: block;
	padding: 9px 12px;
	border-radius: 7px;
	font-size: 14px;
	font-weight: 400;
	color: var(--mid);
	text-decoration: none;
	cursor: pointer;
	transition: color .15s, background .15s;
	border-left: 2px solid transparent;
}
.sp-nav a:hover{ color: var(--t); background: var(--s2); }

.sp-nav a.active{
	color: var(--t);
	font-weight: 600;
	background: none;
	border-left-color: var(--pk);
	border-radius: 0 7px 7px 0;
	padding-left: 10px;
}
.sp-nav hr{ border: none; border-top: 1px solid var(--b1); margin: 6px 0; }
.sp-nav a.sp-section{
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--m);
	padding: 8px 12px 4px;
	cursor: default;
	pointer-events: none;
}
.sp-nav a.sp-section:hover{ background: none; }
.sp-nav a.sp-sub{ padding-left: 20px; font-size: 13.5px; }
.sp-nav a.sp-sub.active{ padding-left: 18px; }

/* ─── Content panels ───────────────────────────────── */
.sp-panel{ display: none; }
.sp-panel.visible{ display: block; }

.sp-panel h1{
	font-size: clamp(22px, 2.6vw, 36px);
	font-weight: 800;
	letter-spacing: -.03em;
	line-height: 1.15;
	margin-bottom: 20px;
}
.sp-panel h2{
	font-size: clamp(17px, 1.8vw, 22px);
	font-weight: 700;
	letter-spacing: -.02em;
	margin: 40px 0 12px;
}
.sp-panel h3{ font-size: 16px; font-weight: 600; margin: 24px 0 8px; }
.sp-panel p{
	font-size: 15.5px;
	line-height: 1.85;
	color: var(--mid);
	margin-bottom: 16px;
}
.sp-panel ul, .sp-panel ol{
	padding-left: 20px;
	margin-bottom: 16px;
}
.sp-panel li{
	font-size: 15.5px;
	line-height: 1.75;
	color: var(--mid);
	margin-bottom: 5px;
}
.sp-panel strong{ color: var(--t); font-weight: 600; }
.sp-panel a.text-link{
	color: var(--pk);
	text-decoration: underline;
	text-decoration-color: rgba(212,23,143,.25);
	text-underline-offset: 3px;
}
.sp-panel a.text-link:hover{ text-decoration-color: var(--pk); }

/* Cards */
.sp-cards{
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
	gap: 12px;
	margin: 20px 0 32px;
}
.sp-card{
	background: var(--s1);
	border: 1px solid var(--b1);
	border-radius: 12px;
	padding: 18px;
	transition: border-color .2s, box-shadow .2s;
}
.sp-card:hover{
	border-color: rgba(212,23,143,.2);
	box-shadow: 0 4px 16px rgba(212,23,143,.05);
}
.sp-card-title{ font-size: 14px; font-weight: 600; color: var(--t); margin-bottom: 5px; }
.sp-card-body{ font-size: 13px; color: var(--m); line-height: 1.55; }

/* CTA */
.sp-cta{
	margin-top: 44px;
	padding: 24px 28px;
	background: var(--s1);
	border: 1px solid var(--b1);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}
.sp-cta-text{ font-size: 16px; font-weight: 700; color: var(--t); }
.sp-cta-sub{ font-size: 13px; color: var(--m); margin-top: 3px; }
.btn-sm{
	display: inline-block;
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	text-decoration: none;
	background: linear-gradient(135deg, var(--pk), var(--cy));
	padding: 12px 28px;
	border-radius: 100px;
	white-space: nowrap;
	transition: opacity .15s, transform .15s;
}
.btn-sm:hover{ opacity: .87; transform: translateY(-1px); }

/* Mobile */
@media (max-width: 860px){
	.sp-hero{ padding: 56px 24px 28px; }
	.sp-layout{ grid-template-columns: 1fr; gap: 0; padding: 0 24px 80px; }
	.sp-sidebar{ position: static; padding-bottom: 28px; border-bottom: 1px solid var(--b1); margin-bottom: 32px; }
	.sp-nav{ flex-direction: row; flex-wrap: wrap; gap: 4px; }
	.sp-nav a{ font-size: 13px; padding: 6px 12px; border-left: none; border-radius: 8px; }
	.sp-nav a.active{ border-left: none; border-bottom: 2px solid var(--pk); border-radius: 8px 8px 0 0; padding-left: 12px; }
	.sp-nav a.sp-section{ display: none; }
	.sp-nav hr{ display: none; }
	.sp-cta{ flex-direction: column; align-items: flex-start; }
}
@media (max-width: 500px){
	.sp-cards{ grid-template-columns: 1fr; }
}