/* NOTION SYSTEMS */
section#notion {
	background: var(--notion-tint);
	padding-top: 3rem;
	padding-bottom: 3rem;
	border-left: 3px solid var(--nb);
}

.sec-badge.nb {
	color: var(--nb);
	border-color: var(--nb);
	background: var(--nb-bg);
}

#notion .addons {
	background: var(--nb-bg);
	border: 0.5px solid rgba(37, 99, 235, 0.15);
	border-top: 3px solid var(--nb);
	margin-bottom: 2rem;
	padding: 1.5rem;
}

#notion .faq-section-header {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--nb);
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

#notion .addon {
	border-left: 3px solid var(--nb);
	cursor: pointer;
}

#notion .addon-ico {
	background: var(--nb-bg);
}

#notion .addon-name span {
	color: var(--nb);
	font-weight: 400;
	font-size: 12px;
}

.notion-accordion {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	margin-bottom: 2.5rem;
}

.notion-acc-item {
	border: 0.5px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: border-color 0.2s, background-color 0.2s;
	background: var(--bg);
}

.notion-acc-item:hover {
	border-color: var(--nb);
	background-color: var(--nb-bg);
}

.notion-acc-btn {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	padding: 1rem 1.25rem;
	background: transparent;
	border: none;
	cursor: pointer;
	font-size: 15px;
	font-weight: 500;
	font-family: var(--sans);
	color: var(--ink);
	text-align: left;
	transition: background 0.2s;
	border-left: 3px solid var(--nb);
	border-radius: 10px;
}

.notion-acc-btn em {
	font-style: italic;
	color: var(--mute);
	font-size: 14px;
}

.notion-acc-ico {
	font-size: 1.2rem;
	color: var(--nb);
	flex-shrink: 0;
	transition: transform 0.25s ease;
}

.notion-acc-item.open .notion-acc-ico {
	transform: rotate(45deg);
}

.notion-acc-body {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease;
}

#notion .pcard {
	background: var(--bg);
	border-left: 3px solid var(--nb);
}

#notion .pbadge {
	background: linear-gradient(135deg, var(--nb), var(--nb-dark));
}

#notion .pprice {
	background: linear-gradient(135deg, var(--nb), var(--nb-dark));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.pf-ck-notion {
	color: var(--nb);
	font-weight: 600;
	flex-shrink: 0;
}

#notion .pbtn {
	background: linear-gradient(135deg, var(--nb), var(--nb-dark));
	color: #fff;
	border-color: transparent;
}

/* FAQs */
#notion .faq-item {
	background: var(--bg) !important;
	border-left: 3px solid var(--nb) !important;
}

#notion .faq-ico {
	color: var(--nb) !important;
}

#notion .faq-item:hover {
	border-color: var(--nb) !important;
	border-left: 3px solid var(--nb) !important;
	background: var(--nb-bg) !important;
	background-color: var(--nb-bg) !important;
}

#notion .faq-item:hover .faq-q {
	color: #ffffff !important;
}

#notion .faq-item:hover .faq-ico {
	color: #ffffff !important;
}

#notion .faq-item.open:not(:hover) {
	background: var(--bg) !important;
	background-color: var(--bg) !important;
	border-color: var(--nb) !important;
	border-left: 3px solid var(--nb) !important;
}

#notion .faq-item.open:not(:hover) .faq-q {
	color: var(--ink) !important;
}

#notion .faq-item.open:not(:hover) .faq-ico {
	color: var(--nb) !important;
}

/* Card pulse trigger */
@keyframes cardPulseNb {
	0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.65); }
	70% { box-shadow: 0 0 0 16px rgba(37, 99, 235, 0); }
	100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

.card-highlight-nb {
	animation: cardPulseNb 1s ease;
	border-color: var(--nb) !important;
}

/* Templates grid & cards */
.tmpl-phase {
	margin-bottom: 2rem;
}

.tmpl-simple-label {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 0.85rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.tmpl-simple-label span {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	display: inline-block;
}

.tgrid {
	display: grid !important;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
	gap: 1rem !important;
	margin-bottom: 1.5rem !important;
}

@media (max-width: 640px) {
	.tgrid { grid-template-columns: 1fr !important; }
}

.tc {
	border: 0.5px solid var(--border);
	border-radius: var(--radius-lg);
	transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	cursor: pointer;
	width: 100%;
	padding: 1.5rem;
	min-height: 260px;
}

.tc:hover {
	border-color: var(--border2);
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.tc.live-card {
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.badge-live {
	background: white;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	margin-bottom: 1rem;
	font-size: 20px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.badge-free {
	display: inline-block;
	font-size: 11px;
	font-weight: 500;
	padding: 3px 9px;
	border-radius: var(--radius-md);
	background: var(--green-bg);
	color: var(--green);
}

.badge-paid {
	display: inline-block;
	font-size: 11px;
	font-weight: 500;
	padding: 3px 9px;
	border-radius: var(--radius-md);
	background: var(--nb-bg);
	color: var(--nb);
}

.tc h4 {
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--ink);
}

.tc p {
	font-size: 13px;
	color: var(--mute);
	line-height: 1.6;
	flex: 1;
}

.tc-foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 0.4rem;
	margin-top: auto;
}

.tc-lks {
	display: flex;
	gap: 0.6rem;
}

.tc-a {
	font-size: 12px;
	color: var(--nb);
	text-decoration: none;
	border-bottom: 0.5px solid rgba(37, 99, 235, 0.3);
}

.tc-a:hover {
	opacity: 0.7;
}

/* Accordion & FAQ dividers */
#notion .notion-acc-btn {
	border-bottom: none !important;
	outline: none !important;
	box-shadow: none !important;
}

#notion .notion-acc-body {
	border-top: 1px solid rgba(37, 99, 235, 0.2) !important;
}

#notion .faq-item.open .faq-a {
	border-top: 1px solid rgba(37, 99, 235, 0.2) !important;
}