.rs-page-v2 {
	background:
		radial-gradient(circle at 18% 0%, rgba(57, 123, 255, 0.06), transparent 22%),
		radial-gradient(circle at 82% 18%, rgba(52, 198, 255, 0.05), transparent 18%),
		#fff;
	color: #16233d;
}

.rs-page-v2 a {
	text-decoration: none;
}

.rs-page-v2 .hy-header {
	background: rgba(255, 255, 255, 0.97);
	box-shadow: 0 1px 0 rgba(255,255,255,0.7), 0 8px 24px rgba(32, 92, 197, 0.04);
}

.rs-page-v2 .hy-header-inner {
	height: 70px;
	grid-template-columns: 190px minmax(0, 1fr) 190px;
	gap: 18px;
}

.rs-page-v2 .hy-header a {
	color: #243249;
}

.rs-page-v2 .hy-header .hy-primary,
.rs-page-v2 .hy-header .hy-primary:visited {
	color: #fff;
}

.rs-page-v2 .hy-nav {
	gap: 8px;
}

.rs-page-v2 .hy-nav a {
	padding: 8px 12px;
	border-radius: 8px;
	font-size: 14px;
	line-height: 20px;
}

.rs-page-v2 .hy-nav a.active {
	color: var(--hy-blue);
	font-weight: 800;
}

.rs-page-v2 .hy-header-actions {
	gap: 12px;
}

.rs-page-v2 .hy-search-btn,
.rs-page-v2 .hy-phone,
.rs-page-v2 .hy-login {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	height: 30px;
	padding: 0 10px;
	border-radius: 8px;
	font-size: 13px;
	color: #31425f;
}

.rs-page-v2 .hy-search-btn {
	width: 34px;
	justify-content: center;
	padding: 0;
	background: transparent;
}

.rs-page-v2 .hy-phone {
	padding: 0 8px;
	font-weight: 700;
	color: #26344c;
}

.rs-page-v2 .hy-login {
	padding: 0 8px;
}

.rs-page-v2 .hy-logo-mark {
	width: 48px;
	height: 48px;
}

.rs-page-v2 .hy-logo-wordmark {
	width: 132px;
}

.rs-subnav {
	position: relative;
	z-index: 4;
	background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(250,252,255,0.96));
	border-bottom: 1px solid #e4edf9;
	box-shadow: 0 1px 0 rgba(255,255,255,0.7);
	backdrop-filter: blur(14px);
}

.rs-subnav-inner {
	display: flex;
	align-items: center;
	gap: 8px;
	height: 38px;
	overflow-x: auto;
	scrollbar-width: none;
}

.rs-subnav-inner::-webkit-scrollbar {
	display: none;
}

.rs-subnav a {
	position: relative;
	flex: 0 0 auto;
	padding: 0 9px;
	color: #4a5b78;
	font-size: 12px;
	line-height: 38px;
	white-space: nowrap;
}

.rs-subnav a.active {
	color: var(--hy-blue);
	font-weight: 800;
}

.rs-subnav a.active::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 18px;
	height: 3px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--hy-blue), var(--hy-cyan));
	transform: translateX(-50%);
}

.rs-hero {
	position: relative;
	overflow: hidden;
	padding: 52px 0 42px;
	background:
		radial-gradient(circle at 28% 12%, rgba(44, 117, 255, .08), transparent 24%),
		linear-gradient(180deg, #f7fbff 0, #ffffff 100%);
	border-bottom: 1px solid #e6effb;
}

.rs-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(255,255,255,0.72), rgba(255,255,255,0)),
		radial-gradient(circle at 78% 28%, rgba(89, 152, 255, .1), transparent 26%);
	pointer-events: none;
}

.rs-hero-inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
	gap: 38px;
	align-items: center;
}

.rs-hero-copy h1 {
	margin: 0 0 14px;
	font-size: clamp(30px, 3.05vw, 40px);
	line-height: 1.08;
	letter-spacing: -0.02em;
	color: #153164;
	font-weight: 900;
}

.rs-hero-copy h1 span,
.rs-hero-copy h1 em {
	color: var(--hy-blue);
	font-style: normal;
}

.rs-hero-copy > p {
	max-width: 620px;
	margin: 0;
	color: #5c6880;
	font-size: 16px;
	line-height: 1.9;
}

.rs-search {
	display: grid;
	grid-template-columns: 28px minmax(0, 1fr) 76px;
	align-items: center;
	height: 52px;
	margin-top: 20px;
	padding: 6px 6px 6px 16px;
	border-radius: 16px;
	background: rgba(255,255,255,0.98);
	border: 1px solid #d9e6fb;
	box-shadow: 0 10px 30px rgba(32, 92, 197, 0.09);
	transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}

.rs-search:focus-within {
	border-color: rgba(45, 110, 240, 0.28);
	box-shadow: 0 16px 34px rgba(32, 92, 197, 0.13);
	transform: translateY(-1px);
}

.rs-search-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	color: #9aa7be;
}

.rs-search input {
	width: 100%;
	height: 100%;
	border: 0;
	outline: none;
	background: transparent;
	color: #274166;
	font-size: 15px;
}

.rs-search input::placeholder {
	color: #a5b0c4;
}

.rs-search button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	border: 0;
	border-radius: 10px;
	background: linear-gradient(180deg, #3f84ff, #2566f5);
	color: #fff;
	font-size: 15px;
	font-weight: 800;
	cursor: pointer;
	box-shadow: 0 10px 20px rgba(28, 98, 226, 0.24);
}

.rs-hot {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin-top: 16px;
	font-size: 14px;
}

.rs-hot strong {
	color: #203253;
	font-weight: 800;
}

.rs-hot a {
	display: inline-flex;
	align-items: center;
	height: 28px;
	padding: 0 10px;
	border-radius: 8px;
	background: rgba(65, 129, 255, .09);
	color: #2b6ef8;
	font-weight: 700;
	transition: background .2s ease, transform .2s ease, color .2s ease;
}

.rs-hot a:hover {
	background: rgba(65, 129, 255, .14);
	transform: translateY(-1px);
}

.rs-hero-visual {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 190px;
	gap: 18px;
	align-items: center;
}

.rs-hero-art {
	position: relative;
	height: 300px;
	border-radius: 30px;
	background:
		radial-gradient(circle at 55% 48%, rgba(101, 160, 255, .16), transparent 42%),
		linear-gradient(180deg, rgba(255,255,255,0.9), rgba(234,244,255,0.92));
	box-shadow: inset 0 0 0 1px rgba(123, 165, 255, .08);
}

.rs-hero-art::before {
	content: "";
	position: absolute;
	inset: 26px 50px 22px 66px;
	background:
		radial-gradient(circle at 50% 56%, rgba(255,255,255,0.95) 0 40%, rgba(229,241,255,0.56) 61%, transparent 78%);
	filter: blur(1px);
}

.rs-pedestal {
	position: absolute;
	left: 50%;
	bottom: 24px;
	width: 260px;
	height: 84px;
	border-radius: 50%;
	transform: translateX(-50%);
	background:
		radial-gradient(ellipse at center, rgba(255,255,255,0.95), rgba(208,226,255,0.82));
	box-shadow: inset 0 -10px 22px rgba(79, 138, 255, 0.08), 0 20px 30px rgba(65, 122, 242, 0.07);
	animation: rs-float 6s ease-in-out infinite;
}

.rs-box {
	position: absolute;
	left: 50%;
	bottom: 66px;
	width: 170px;
	height: 144px;
	transform: translateX(-50%);
	border-radius: 18px 18px 20px 20px;
	background: linear-gradient(180deg, #4d87ff, #2c67df);
	box-shadow: 0 22px 30px rgba(56, 104, 211, 0.24);
	animation: rs-float 6s ease-in-out infinite;
}

.rs-box::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: linear-gradient(145deg, rgba(255,255,255,0.28), transparent 35%);
}

.rs-box::after {
	content: "";
	position: absolute;
	right: 18px;
	top: 52px;
	width: 34px;
	height: 24px;
	border-radius: 10px;
	background: rgba(255,255,255,0.3);
	box-shadow: inset 0 2px 4px rgba(255,255,255,0.18);
}

.rs-box-cloud {
	position: absolute;
	right: 18px;
	bottom: 32px;
	width: 34px;
	height: 24px;
	border-radius: 16px;
	background: rgba(255,255,255,0.3);
}

.rs-box-cloud::before,
.rs-box-cloud::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	background: inherit;
}

.rs-box-cloud::before {
	left: 3px;
	top: -7px;
	width: 20px;
	height: 20px;
}

.rs-box-cloud::after {
	left: 12px;
	top: -10px;
	width: 14px;
	height: 14px;
}

.rs-docs {
	position: absolute;
	left: 50%;
	top: -38px;
	width: 146px;
	height: 112px;
	transform: translateX(-50%);
	animation: rs-lift 6s ease-in-out infinite;
}

.rs-docs i {
	position: absolute;
	left: 50%;
	top: 0;
	width: 108px;
	height: 146px;
	border-radius: 14px;
	background:
		linear-gradient(180deg, rgba(255,255,255,0.98), rgba(235,243,255,0.94));
	border: 1px solid rgba(120, 163, 255, 0.34);
	box-shadow: 0 12px 24px rgba(61, 104, 203, 0.12);
	transform-origin: center bottom;
}

.rs-docs i:nth-child(1) {
	transform: translateX(-50%) rotate(-14deg) translateY(-6px);
	opacity: .84;
}

.rs-docs i:nth-child(2) {
	transform: translateX(-50%) rotate(-6deg) translateY(-2px);
	opacity: .94;
}

.rs-docs i:nth-child(3) {
	transform: translateX(-50%) rotate(4deg);
}

.rs-docs i::before {
	content: "";
	position: absolute;
	left: 18px;
	top: 18px;
	width: 54px;
	height: 10px;
	border-radius: 999px;
	background: rgba(70, 126, 255, 0.18);
	box-shadow: 0 18px 0 rgba(70, 126, 255, 0.12), 0 36px 0 rgba(70, 126, 255, 0.08);
}

.rs-docs i::after {
	content: "";
	position: absolute;
	right: 14px;
	bottom: 16px;
	width: 28px;
	height: 24px;
	border-radius: 8px;
	background:
		linear-gradient(135deg, rgba(63,132,255,.26), rgba(63,132,255,0.05));
}

.rs-float {
	position: absolute;
	border-radius: 18px;
	background: rgba(255,255,255,0.82);
	border: 1px solid rgba(111, 155, 255, 0.26);
	box-shadow: 0 14px 24px rgba(61, 104, 203, 0.08);
	filter: blur(.1px);
	animation: rs-drift 7s ease-in-out infinite;
}

.rs-float-a {
	left: 22px;
	top: 94px;
	width: 28px;
	height: 28px;
	transform: rotate(14deg);
}

.rs-float-b {
	left: 46px;
	bottom: 38px;
	width: 32px;
	height: 18px;
	transform: rotate(-18deg);
	animation-delay: -1.2s;
}

.rs-float-c {
	right: 46px;
	top: 72px;
	width: 38px;
	height: 38px;
	border-radius: 12px;
	transform: rotate(10deg);
	animation-delay: -2.2s;
}

.rs-float-d {
	right: 20px;
	bottom: 32px;
	width: 26px;
	height: 14px;
	transform: rotate(16deg);
	animation-delay: -3.1s;
}

.rs-hero-bullets {
	display: grid;
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.rs-hero-bullets li {
	display: grid;
	grid-template-columns: 38px minmax(0, 1fr);
	gap: 12px;
	align-items: center;
	padding: 10px 12px;
	border-radius: 14px;
	background: rgba(255,255,255,0.82);
	border: 1px solid rgba(222, 233, 249, 0.96);
	box-shadow: 0 10px 20px rgba(88, 124, 178, 0.06);
	backdrop-filter: blur(10px);
}

.rs-bullet-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	color: #fff;
	background: linear-gradient(180deg, #5d92ff, #2e6ef0);
	box-shadow: 0 10px 18px rgba(45, 110, 240, 0.18);
}

.rs-hero-bullets b {
	display: block;
	margin-bottom: 2px;
	color: #2d55b9;
	font-size: 15px;
	line-height: 1.3;
}

.rs-hero-bullets em {
	display: block;
	color: #7f8ca7;
	font-size: 13px;
	font-style: normal;
	line-height: 1.4;
}

.rs-section {
	padding: 42px 0 18px;
}

.rs-section-head {
	position: relative;
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 22px;
}

.rs-section-head h2 {
	margin: 0;
	color: #16233d;
	font-size: 24px;
	line-height: 1.25;
	font-weight: 900;
}

.rs-section-head p {
	margin: 0;
	color: #98a3b7;
	font-size: 14px;
	line-height: 1.4;
	font-weight: 700;
}

.rs-head-link {
	margin-left: auto;
	color: #2f6ef1;
	font-size: 14px;
	font-weight: 800;
}

.rs-head-link i {
	margin-left: 4px;
}

.rs-intent-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.rs-intent-card,
.rs-topic-card,
.rs-article-card,
.rs-resource-card,
.rs-faq-item {
	border: 1px solid #dbe7fb;
	box-shadow: 0 10px 26px rgba(75, 117, 193, 0.09);
	transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.rs-intent-card {
	display: flex;
	flex-direction: column;
	min-height: 180px;
	padding: 20px 22px 18px;
	border-radius: 14px;
	background:
		linear-gradient(180deg, rgba(255,255,255,0.98), rgba(250,253,255,0.96)),
		radial-gradient(circle at 100% 0%, rgba(63, 132, 255, 0.07), transparent 30%);
}

.rs-intent-card {
	display: grid;
	grid-template-columns: 38px minmax(0, 1fr);
	grid-template-rows: auto 1fr auto;
	column-gap: 14px;
	align-items: start;
}

.rs-intent-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 10px;
	color: #fff;
	font-size: 16px;
	background: linear-gradient(180deg, #3f84ff, #2767ef);
	box-shadow: 0 10px 20px rgba(55, 117, 242, 0.18);
}

.rs-intent-card h3 {
	align-self: center;
	margin: 0;
	font-size: 16px;
	line-height: 1.35;
	color: #0f2a57;
	font-weight: 900;
}

.rs-intent-card p {
	grid-column: 1 / -1;
	min-height: 64px;
	margin: 14px 0 0;
	color: #66738a;
	font-size: 13px;
	line-height: 1.75;
}

.rs-intent-card a {
	grid-column: 1 / -1;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: auto;
	padding-top: 14px;
	font-size: 13px;
	font-weight: 800;
}

.rs-intent-card a i {
	display: inline-grid;
	place-items: center;
	width: 26px;
	height: 26px;
	margin-left: auto;
	border-radius: 9px;
	background: #eef6ff;
}

.rs-intent-card:hover,
.rs-topic-card:hover,
.rs-article-card:hover,
.rs-resource-card:hover,
.rs-faq-item:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 36px rgba(75, 117, 193, 0.14);
	border-color: rgba(63, 132, 255, 0.18);
}

.rs-intent-card.is-blue a { color: #2e6ef0; }
.rs-intent-card.is-teal a { color: #0db3b8; }
.rs-intent-card.is-orange a { color: #e28a48; }
.rs-intent-card.is-purple a { color: #7a5cff; }
.rs-intent-card.is-red a { color: #ff5b6d; }
.rs-intent-card.is-indigo a { color: #1877f2; }

.rs-intent-card.is-blue .rs-intent-icon { background: linear-gradient(180deg, #3f84ff, #2767ef); }
.rs-intent-card.is-teal .rs-intent-icon { background: linear-gradient(180deg, #19b9b1, #0f9b9d); }
.rs-intent-card.is-orange .rs-intent-icon { background: linear-gradient(180deg, #ff9b4d, #f06d35); }
.rs-intent-card.is-purple .rs-intent-icon { background: linear-gradient(180deg, #8d6bff, #6c49ea); }
.rs-intent-card.is-red .rs-intent-icon { background: linear-gradient(180deg, #ff7b76, #ea4f53); }
.rs-intent-card.is-indigo .rs-intent-icon { background: linear-gradient(180deg, #4b8cff, #1f63f3); }

.rs-topic-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.rs-topic-grid-featured {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rs-topic-card {
	display: grid;
	grid-template-columns: 38px minmax(0, 1fr);
	grid-template-rows: auto 1fr auto;
	column-gap: 14px;
	min-height: 180px;
	padding: 20px 22px 18px;
	border-radius: 14px;
	background:
		linear-gradient(180deg, rgba(255,255,255,0.98), rgba(252,253,255,0.97)),
		radial-gradient(circle at 100% 0%, rgba(63, 132, 255, 0.05), transparent 32%);
}

.rs-topic-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 10px;
	color: #fff;
	font-size: 16px;
}

.rs-topic-icon.is-blue { background: linear-gradient(180deg, #3f84ff, #2767ef); }
.rs-topic-icon.is-green { background: linear-gradient(180deg, #41c18d, #1aa56c); }
.rs-topic-icon.is-purple { background: linear-gradient(180deg, #8d6bff, #6c49ea); }
.rs-topic-icon.is-orange { background: linear-gradient(180deg, #ff9b4d, #f06d35); }
.rs-topic-icon.is-teal { background: linear-gradient(180deg, #36c5c0, #15a2a5); }

.rs-topic-card h3 {
	align-self: center;
	margin: 0;
	font-size: 16px;
	line-height: 1.42;
	font-weight: 900;
	color: #0f2a57;
}

.rs-topic-card p {
	grid-column: 1 / -1;
	margin: 14px 0 0;
	color: #68778f;
	font-size: 13px;
	line-height: 1.75;
}

.rs-topic-points {
	grid-column: 1 / -1;
	display: grid;
	gap: 8px;
	margin: 14px 0 0;
	padding: 14px 14px 14px 30px;
	border-radius: 12px;
	background: #f7fbff;
	border: 1px solid #e2edfb;
	color: #52617a;
	font-size: 13px;
	line-height: 1.65;
}

.rs-topic-points li {
	padding-left: 2px;
}

.rs-topic-card a {
	grid-column: 1 / -1;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: auto;
	padding-top: 14px;
	color: #2e6ef0;
	font-size: 13px;
	font-weight: 800;
}

.rs-topic-card a i {
	display: inline-grid;
	place-items: center;
	width: 34px;
	height: 34px;
	margin-left: 4px;
	border-radius: 11px;
	background: #eef6ff;
	color: #0f68ff;
}

.rs-article-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.rs-article-card {
	min-height: 172px;
	padding: 18px 20px;
	border-radius: 14px;
	background:
		linear-gradient(180deg, rgba(255,255,255,0.98), rgba(252,253,255,0.96));
}

.rs-card-head {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 14px;
}

.rs-card-title {
	display: flex;
	align-items: center;
	gap: 8px;
}

.rs-card-title i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 6px;
	color: #fff;
	font-size: 12px;
	background: linear-gradient(180deg, #3f84ff, #2767ef);
}

.rs-card-title strong {
	color: #0f2a57;
	font-size: 14px;
	font-weight: 900;
}

.rs-card-head > a {
	margin-left: auto;
	color: #9da8bb;
	font-size: 12px;
	font-weight: 700;
}

.rs-article-card ul {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.rs-article-card li a {
	display: grid;
	grid-template-columns: 12px minmax(0, 1fr) 44px;
	column-gap: 8px;
	align-items: center;
	min-height: 22px;
	color: #45556f;
	font-size: 12px;
	line-height: 22px;
	transition: color .18s ease, transform .18s ease;
}

.rs-article-card li a::before {
	content: "";
	justify-self: center;
	align-self: center;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: linear-gradient(180deg, #3f84ff, #2767ef);
}

.rs-article-card li a span {
	grid-column: 2 / 3;
	color: #0f2a57;
	font-weight: 400;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 22px;
}

.rs-article-card li a:hover {
	color: var(--hy-blue);
	transform: translateX(2px);
}

.rs-article-card li a em {
	grid-column: 3 / 4;
	color: #a0a9ba;
	font-style: normal;
	font-size: 12px;
	line-height: 22px;
	text-align: right;
}

.rs-resource-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.rs-resource-card {
	position: relative;
	display: flex;
	align-items: center;
	gap: 14px;
	min-height: 118px;
	padding: 20px 22px;
	border-radius: 14px;
	background:
		linear-gradient(180deg, rgba(255,255,255,0.98), rgba(253,254,255,0.96));
	color: inherit;
}

.rs-file-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 10px;
	font-size: 22px;
}

.rs-resource-card.is-green .rs-file-icon { color: #27b36a; background: rgba(39, 179, 106, 0.1); }
.rs-resource-card.is-blue .rs-file-icon { color: #3f84ff; background: rgba(63, 132, 255, 0.1); }
.rs-resource-card.is-red .rs-file-icon { color: #ff6b5b; background: rgba(255, 107, 91, 0.1); }

.rs-resource-card strong,
.rs-resource-card em {
	display: block;
}

.rs-resource-card strong {
	margin-bottom: 6px;
	color: #16233d;
	font-size: 14px;
	line-height: 1.35;
	font-weight: 900;
}

.rs-resource-card em {
	color: #8a96aa;
	font-size: 13px;
	font-style: normal;
}

.rs-download {
	margin-left: auto;
	align-self: flex-end;
	color: #2e6ef0;
	font-size: 16px;
}

.rs-faq-section {
	padding-bottom: 34px;
}

.rs-faq-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px 18px;
}

.rs-faq-item {
	overflow: hidden;
	border-radius: 12px;
	background: linear-gradient(180deg, #fff, #fbfdff);
}

.rs-faq-item summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	min-height: 48px;
	padding: 0 18px;
	list-style: none;
	color: #45556f;
	font-size: 13px;
	font-weight: 800;
	cursor: pointer;
	transition: color .2s ease, background .2s ease;
}

.rs-faq-item summary:hover {
	color: var(--hy-blue);
	background: rgba(63, 132, 255, 0.03);
}

.rs-faq-item summary::-webkit-details-marker {
	display: none;
}

.rs-faq-item summary::before {
	content: "";
	width: 3px;
	height: 14px;
	border-radius: 999px;
	background: linear-gradient(180deg, #3f84ff, #2767ef);
	margin-right: 8px;
	flex: 0 0 auto;
}

.rs-faq-item summary::after {
	content: "\f078";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	color: #95a0b2;
	font-size: 12px;
	margin-left: auto;
}

.rs-faq-item[open] summary::after {
	content: "\f077";
}

.rs-faq-item div {
	padding: 0 18px 18px 32px;
	color: #6e7b91;
	font-size: 13px;
	line-height: 1.7;
}

.rs-cta {
	padding: 30px 0 48px;
}

.rs-cta-inner {
	display: grid;
	grid-template-columns: 118px minmax(0, 1fr) auto;
	gap: 16px;
	align-items: center;
	min-height: 86px;
	padding: 16px 20px 16px 12px;
	border-radius: 14px;
	background: linear-gradient(90deg, #2d69f1 0%, #316ef4 40%, #2f63e9 100%);
	box-shadow: 0 18px 34px rgba(37, 101, 231, 0.22);
	color: #fff;
	position: relative;
	overflow: hidden;
}

.rs-cta-inner::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 12% 18%, rgba(255,255,255,0.2), transparent 18%),
		radial-gradient(circle at 84% 24%, rgba(255,255,255,0.14), transparent 16%),
		linear-gradient(90deg, rgba(255,255,255,0.06), transparent 36%, rgba(255,255,255,0.05));
	pointer-events: none;
}

.rs-cta-figure {
	position: relative;
	width: 100px;
	height: 64px;
	margin-left: 8px;
}

.rs-cta-head {
	position: absolute;
	left: 34px;
	top: 0;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255,255,255,0.88);
	box-shadow: 0 0 0 8px rgba(255,255,255,0.08);
}

.rs-cta-head::before,
.rs-cta-head::after {
	content: "";
	position: absolute;
	background: rgba(47, 105, 241, 0.18);
	border-radius: 999px;
}

.rs-cta-head::before {
	left: -14px;
	top: 8px;
	width: 16px;
	height: 28px;
}

.rs-cta-head::after {
	right: -14px;
	top: 8px;
	width: 16px;
	height: 28px;
}

.rs-cta-body {
	position: absolute;
	left: 4px;
	bottom: 0;
	width: 92px;
	height: 54px;
}

.rs-cta-body span {
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 76px;
	height: 42px;
	transform: translateX(-50%);
	border-radius: 16px 16px 10px 10px;
	background: rgba(255,255,255,0.22);
}

.rs-cta-body span:nth-child(2) {
	bottom: 7px;
	width: 58px;
	height: 42px;
	background: rgba(255,255,255,0.32);
}

.rs-cta-body span:nth-child(3) {
	left: 12px;
	right: auto;
	bottom: 8px;
	width: 70px;
	height: 28px;
	background: rgba(255,255,255,0.14);
}

.rs-cta-copy h2 {
	margin: 0 0 6px;
	color: #fff;
	font-size: 20px;
	line-height: 1.25;
	font-weight: 900;
}

.rs-cta-copy p {
	margin: 0;
	color: rgba(255,255,255,0.88);
	font-size: 13px;
	line-height: 1.8;
}

.rs-cta-actions {
	display: flex;
	gap: 14px;
	padding-right: 4px;
	position: relative;
	z-index: 1;
}

.rs-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	height: 40px;
	padding: 0 18px;
	border-radius: 8px;
	background: #fff;
	color: #2f6ef1;
	font-size: 14px;
	font-weight: 800;
	box-shadow: 0 10px 20px rgba(0,0,0,0.08);
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
	position: relative;
	z-index: 1;
}

.rs-cta-btn.is-outline {
	background: rgba(255,255,255,0.1);
	color: #fff;
	border: 1px solid rgba(255,255,255,0.22);
	box-shadow: none;
}

.rs-cta-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 14px 24px rgba(0,0,0,0.12);
}

.rs-cta-btn.is-outline:hover {
	background: rgba(255,255,255,0.16);
}

@keyframes rs-float {
	0%, 100% { transform: translateX(-50%) translateY(0); }
	50% { transform: translateX(-50%) translateY(-6px); }
}

@keyframes rs-lift {
	0%, 100% { transform: translateX(-50%) translateY(0); }
	50% { transform: translateX(-50%) translateY(-3px); }
}

@keyframes rs-drift {
	0%, 100% { transform: translateY(0) rotate(0.001deg); }
	50% { transform: translateY(-6px) rotate(0.001deg); }
}

.rs-main {
	padding-bottom: 16px;
}

@media (max-width: 1180px) {
	.rs-hero-inner,
	.rs-hero-visual {
		grid-template-columns: 1fr;
	}

	.rs-hero-visual {
		gap: 16px;
	}

	.rs-intent-grid,
	.rs-topic-grid,
	.rs-resource-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.rs-topic-grid-featured {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.rs-article-grid,
	.rs-faq-grid {
		grid-template-columns: 1fr;
	}

	.rs-cta-inner {
		grid-template-columns: 118px minmax(0, 1fr);
	}

	.rs-cta-actions {
		grid-column: 1 / -1;
	}
}

@media (max-width: 900px) {
	.rs-hero-copy h1 {
		font-size: clamp(30px, 3.05vw, 40px);
	}

	.rs-intent-grid,
	.rs-topic-grid,
	.rs-resource-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.rs-section-head {
		flex-wrap: wrap;
	}

	.rs-head-link {
		margin-left: 0;
	}
}

@media (max-width: 640px) {
	.rs-hero {
		padding-top: 22px;
	}

	.rs-hero-copy h1 {
		font-size: clamp(30px, 3.05vw, 40px);
	}

	.rs-search {
		grid-template-columns: 24px minmax(0, 1fr);
		height: auto;
		padding: 10px 12px;
	}

	.rs-search button {
		grid-column: 1 / -1;
		margin-top: 8px;
		height: 40px;
	}

	.rs-intent-grid,
	.rs-topic-grid,
	.rs-resource-grid,
	.rs-article-grid,
	.rs-faq-grid {
		grid-template-columns: 1fr;
	}

	.rs-cta-inner {
		grid-template-columns: 1fr;
	}

	.rs-cta-figure {
		margin-left: 0;
	}

	.rs-cta-actions {
		flex-direction: column;
	}
}
