*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0
}

html {
	scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased
}

body {
	background: var(--bg);
	color: var(--text);
	font-family: 'DM Sans', sans-serif;
	font-size: 16px;
	line-height: 1.65;
	overflow-x: hidden
}

.nav.scrolled {
	box-shadow: 0 2px 20px rgba(11, 35, 112, .1)
}

.nav-logo {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 1.55rem;
	font-weight: 800;
	color: var(--navy);
	text-decoration: none;
	letter-spacing: .02em
}

.nav-logo span {
	color: var(--red)
}

.nav-links {
	display: flex;
	align-items: center;
	list-style: none
}

.nav-links a {
	color: var(--muted);
	font-size: .83rem;
	font-weight: 500;
	text-decoration: none;
	padding: .4rem .7rem;
	border-radius: 6px;
	transition: color .2s, background .2s
}

.nav-links a:hover, .nav-links a.active {
	color: var(--navy);
	background: rgba(11, 35, 112, .05)
}

.nav-links a.active {
	font-weight: 600
}

.btn-login {
	border: 1px solid var(--navy);
	color: var(--navy);
	background: transparent;
	padding: .4rem 1.1rem;
	border-radius: 8px;
	font-size: .83rem;
	font-weight: 600;
	text-decoration: none;
	transition: all .2s
}

.btn-login:hover {
	background: var(--navy);
	color: white
}

.nav-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	flex-direction: column;
	gap: 5px;
	padding: .25rem
}

.nav-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--navy);
	border-radius: 2px
}

.mobile-menu {
	display: none;
	position: fixed;
	top: 64px;
	left: 0;
	right: 0;
	background: white;
	border-bottom: 1px solid var(--border);
	padding: 1rem 5%;
	z-index: 999
}

.mobile-menu.open {
	display: block
}

.mobile-menu a {
	display: block;
	padding: .7rem 0;
	color: var(--text);
	text-decoration: none;
	font-weight: 500;
	border-bottom: 1px solid var(--border)
}

.mobile-menu a:last-child {
	border-bottom: none
}

.hero-band {
	background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy2) 100%);
	color: white;
	padding: 5rem 5% 4rem;
	margin-top: 64px;
	position: relative;
	overflow: hidden
}

.hero-band::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 60% 70% at 30% 60%, rgba(230, 57, 70, .1) 0%, transparent 60%)
}

.hero-band h1 {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: clamp(2.5rem, 6vw, 3.8rem);
	font-weight: 800;
	line-height: 1.04;
	letter-spacing: -.02em;
	max-width: 600px;
	position: relative;
	z-index: 1
}

.hero-band h1 span {
	color: #FF8C94
}

.search-wrap {
	position: relative;
	max-width: 480px;
	margin-top: 1.5rem;
	z-index: 1
}

.search-wrap input {
	width: 100%;
	padding: .85rem 1.1rem .85rem 3rem;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, .2);
	background: rgba(255, 255, 255, .1);
	color: white;
	font-family: 'DM Sans', sans-serif;
	font-size: .95rem;
	outline: none;
	transition: all .25s
}

.search-wrap input::placeholder {
	color: rgba(255, 255, 255, .5)
}

.search-wrap input:focus {
	background: rgba(255, 255, 255, .15);
	border-color: rgba(255, 255, 255, .4)
}

.search-wrap .search-ico {
	position: absolute;
	left: 1rem;
	top: 50%;
	transform: translateY(-50%);
	color: rgba(255, 255, 255, .6);
	font-size: 1rem
}

.faq-layout {
	max-width: 1200px;
	margin: 0 auto;
	padding: 4rem 5%;
	display: grid;
	grid-template-columns:240px 1fr;
	gap: 3rem;
	align-items: start
}

@media (max-width: 860px) {
	.faq-layout {
		grid-template-columns:1fr;
		padding: 3rem 1.25rem;
		gap: 2rem
	}
}

.sidebar {
	position: sticky;
	top: 84px
}

.sidebar-label {
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: .85rem
}

.cat-btn {
	display: flex;
	align-items: center;
	gap: .65rem;
	width: 100%;
	background: none;
	border: none;
	padding: .7rem .9rem;
	border-radius: 9px;
	cursor: pointer;
	text-align: left;
	font-family: 'DM Sans', sans-serif;
	font-size: .9rem;
	font-weight: 500;
	color: var(--muted);
	transition: all .2s;
	margin-bottom: .25rem
}

.cat-btn:hover {
	color: var(--navy);
	background: rgba(11, 35, 112, .05)
}

.cat-btn.active {
	background: var(--navy);
	color: white;
	font-weight: 600
}

.cat-btn .cat-ico {
	width: 30px;
	height: 30px;
	border-radius: 7px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: .95rem;
	background: rgba(255, 255, 255, .15);
	flex-shrink: 0
}

.cat-btn:not(.active) .cat-ico {
	background: rgba(11, 35, 112, .07)
}

.sidebar-help {
	margin-top: 1.5rem;
	padding: 1.25rem;
	background: white;
	border: 1px solid var(--border);
	border-radius: 12px;
	border-left: 3px solid var(--red)
}

.sidebar-help h4 {
	font-size: .9rem;
	font-weight: 700;
	color: var(--text);
	margin-bottom: .35rem
}

.sidebar-help p {
	font-size: .82rem;
	color: var(--muted);
	line-height: 1.55;
	margin-bottom: .75rem
}

.sidebar-help a {
	color: var(--red);
	text-decoration: none;
	font-size: .85rem;
	font-weight: 600
}

.sidebar-help a:hover {
	text-decoration: underline
}

.faq-main h2 {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 1.8rem;
	font-weight: 800;
	color: var(--navy);
	margin-bottom: 1.25rem;
	border-bottom: 2px solid var(--border);
	padding-bottom: .75rem
}

.faq-group {
	display: none
}

.faq-group.active {
	display: block
}

.faq-item {
	background: white;
	border: 1px solid var(--border);
	border-radius: 12px;
	margin-bottom: .75rem;
	overflow: hidden;
	transition: border-color .2s, box-shadow .2s
}

.faq-item.open {
	border-color: rgba(11, 35, 112, .2);
	box-shadow: 0 4px 16px rgba(11, 35, 112, .08)
}

.faq-q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.1rem 1.25rem;
	cursor: pointer;
	user-select: none;
	background: white;
	transition: background .2s
}

.faq-q:hover {
	background: rgba(11, 35, 112, .02)
}

.faq-q h3 {
	font-size: .97rem;
	font-weight: 700;
	color: var(--navy);
	flex: 1;
	line-height: 1.4
}

.faq-toggle {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	border: 1px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--muted);
	font-size: 1rem;
	flex-shrink: 0;
	transition: all .3s;
	line-height: 1
}

.faq-item.open .faq-toggle {
	background: var(--navy);
	color: white;
	border-color: var(--navy);
	transform: rotate(45deg)
}

.faq-a {
	max-height: 0;
	overflow: hidden;
	transition: max-height .4s ease, padding .3s ease
}

.faq-item.open .faq-a {
	max-height: 500px
}

.faq-a-inner {
	font-size: .93rem;
	color: var(--muted);
	line-height: 1.7;
	border-top: 1px solid var(--border);
	padding: 1rem 1.25rem 1.25rem;
}

.faq-a-inner p {
	margin-bottom: .65rem
}

.faq-a-inner p:last-child {
	margin-bottom: 0
}

.cta-band {
	background: linear-gradient(135deg, var(--navy-dark), var(--navy));
	padding: 4rem 5%;
	text-align: center;
	position: relative;
	overflow: hidden;
	margin-top: 0
}

.cta-band::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(230, 57, 70, .1) 0%, transparent 65%)
}

.cta-band h2 {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: clamp(1.6rem, 4vw, 2.5rem);
	font-weight: 800;
	letter-spacing: -.02em;
	color: white;
	position: relative;
	z-index: 1
}

.cta-band p {
	color: rgba(255, 255, 255, .7);
	max-width: 460px;
	margin: .65rem auto 1.75rem;
	position: relative;
	z-index: 1;
	font-size: .95rem
}

.cta-row {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
	position: relative;
	z-index: 1
}

.btn-primary:hover {
	background: var(--red2);
	transform: translateY(-2px)
}

.btn-outline:hover {
	background: rgba(255, 255, 255, .1);
	border-color: white
}

footer {
	background: var(--navy-dark);
	color: rgba(255, 255, 255, .55);
	padding: 2.5rem 5%
}

.footer-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.25rem
}

.footer-logo {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 1.8rem;
	font-weight: 800;
	color: white;
	text-decoration: none;
	letter-spacing: .02em
}

.footer-logo span {
	color: #FF8C94
}

.footer-links {
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap;
	justify-content: center
}

.footer-links a {
	color: rgba(255, 255, 255, .45);
	text-decoration: none;
	font-size: .83rem;
	transition: color .2s
}

.footer-links a:hover {
	color: white
}

.footer-copy {
	font-size: .78rem;
	color: rgba(255, 255, 255, .3);
	text-align: center
}

.scroll-top.show {
	opacity: 1;
	transform: scale(1);
	pointer-events: all
}

.no-results {
	text-align: center;
	padding: 3rem;
	color: var(--muted);
	font-size: .97rem
}

@media (max-width: 900px) {
	.nav-links, .btn-login {
		display: none
	}

	.nav-toggle {
		display: flex
	}
}
