*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0
}

:root {
	--navy: #0B2370;
	--navy2: #1A3A9F;
	--navy3: #0D1F5C;
	--navy-dark: #071545;
	--red: #E63946;
	--red2: #C1121F;
	--white: #fff;
	--bg: #F5F7FC;
	--text: #0D1F42;
	--muted: #64748B;
	--border: #DDE3F0
}

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;
	transition: all .3s
}

.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: 5.5rem 5% 4rem;
	margin-top: 64px;
	position: relative;
	overflow: hidden;
	text-align: center
}

.hero-band::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 60% 80% at 50% 30%, rgba(230, 57, 70, .12) 0%, transparent 65%)
}

.hero-band h1 {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: clamp(2.4rem, 6vw, 4rem);
	font-weight: 800;
	line-height: 1.04;
	letter-spacing: -.02em;
	max-width: 760px;
	margin: 0 auto;
	position: relative;
	z-index: 1
}

.hero-band h1 span {
	color: #FF8C94
}

.hero-band p {
	color: rgba(255, 255, 255, .72);
	font-size: 1.05rem;
	max-width: 560px;
	margin: .9rem auto 0;
	position: relative;
	z-index: 1
}

.benefits-section {
	background: white;
	padding: 5rem 5%
}

.inner {
	max-width: 1200px;
	margin: 0 auto
}

.section-title {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: clamp(1.8rem, 4vw, 2.6rem);
	font-weight: 800;
	color: var(--text);
	line-height: 1.08;
	letter-spacing: -.02em
}

.section-title span {
	color: var(--red)
}

.section-sub {
	color: var(--muted);
	margin-top: .65rem;
	font-size: .97rem;
	max-width: 540px;
	margin-left: auto;
	margin-right: auto
}

.text-center {
	text-align: center
}

.head-block {
	margin-bottom: 3rem
}

.ben-grid {
	display: grid;
	grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.25rem
}

.ben-card {
	border: 1px solid var(--border);
	border-radius: 14px;
	padding: 1.6rem;
	background: var(--bg);
	display: flex;
	gap: 1rem;
	align-items: flex-start;
	transition: all .25s
}

.ben-card:hover {
	background: white;
	border-color: rgba(11, 35, 112, .2);
	box-shadow: 0 6px 24px rgba(11, 35, 112, .1);
	transform: translateY(-3px)
}

.ben-icon {
	width: 52px;
	height: 52px;
	border-radius: 13px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	flex-shrink: 0;
	background: rgba(11, 35, 112, .07)
}

.ben-icon.red {
	background: rgba(230, 57, 70, .08)
}

.ben-card h3 {
	font-size: .98rem;
	font-weight: 700;
	color: var(--text);
	margin-bottom: .3rem
}

.ben-card p {
	font-size: .88rem;
	color: var(--muted);
	line-height: 1.6
}

.cta-band {
	background: linear-gradient(135deg, var(--navy-dark), var(--navy));
	padding: 4.5rem 5%;
	text-align: center;
	position: relative;
	overflow: hidden
}

.cta-band::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(230, 57, 70, .1) 0%, transparent 60%)
}

.cta-band h2 {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: clamp(1.8rem, 4vw, 2.8rem);
	font-weight: 800;
	letter-spacing: -.02em;
	line-height: 1.1;
	color: white;
	position: relative;
	z-index: 1;
	max-width: 600px;
	margin: 0 auto
}

.cta-band p {
	color: rgba(255, 255, 255, .7);
	max-width: 480px;
	margin: .75rem auto 2rem;
	position: relative;
	z-index: 1
}

.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);
	box-shadow: 0 6px 20px rgba(230, 57, 70, .35)
}

.btn-outline:hover {
	background: rgba(255, 255, 255, .1);
	border-color: white
}

.func-section {
	background: var(--bg);
	padding: 5rem 5%
}

.func-grid {
	display: grid;
	grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.1rem;
	margin-top: 2.5rem
}

.func-card {
	background: white;
	border: 1px solid var(--border);
	border-radius: 14px;
	padding: 1.5rem;
	display: flex;
	gap: 1rem;
	align-items: flex-start;
	transition: all .25s;
	cursor: default
}

.func-card:hover {
	border-color: rgba(11, 35, 112, .18);
	box-shadow: 0 6px 24px rgba(11, 35, 112, .1);
	transform: translateY(-2px)
}

.func-icon {
	width: 48px;
	height: 48px;
	border-radius: 11px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
	flex-shrink: 0;
	background: rgba(230, 57, 70, .07)
}

.func-card h4 {
	font-size: .96rem;
	font-weight: 700;
	color: var(--text);
	margin-bottom: .3rem
}

.func-card p {
	font-size: .86rem;
	color: var(--muted);
	line-height: 1.58
}

.compare-section {
	background: white;
	padding: 5rem 5%
}

.compare-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 2.5rem
}

.compare-table th {
	background: var(--navy);
	color: white;
	padding: 1rem 1.25rem;
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 1rem;
	font-weight: 700;
	text-align: left
}

.compare-table th:first-child {
	border-radius: 10px 0 0 0
}

.compare-table th:last-child {
	border-radius: 0 10px 0 0
}

.compare-table td {
	padding: .9rem 1.25rem;
	font-size: .9rem;
	border-bottom: 1px solid var(--border)
}

.compare-table tr:last-child td {
	border-bottom: none
}

.compare-table tr:nth-child(even) td {
	background: var(--bg)
}

.check {
	color: #00b87c;
	font-size: 1.1rem
}

.cross {
	color: #ccc;
	font-size: 1.1rem
}

.compare-table td:first-child {
	font-weight: 600;
	color: var(--text)
}

@media (max-width: 600px) {
	.compare-table {
		font-size: .8rem
	}

	.compare-table td, .compare-table th {
		padding: .7rem .75rem
	}
}

.reveal {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity .6s ease, transform .6s ease
}

.reveal.up {
	opacity: 1;
	transform: translateY(0)
}

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 {
	box-shadow: 0 4px 16px rgba(11, 35, 112, .3)
}

.scroll-top.show {
	opacity: 1;
	transform: scale(1);
	pointer-events: all
}

@media (max-width: 900px) {
	.nav-links, .btn-login {
		display: none
	}

	.nav-toggle {
		display: flex
	}
}

@media (max-width: 600px) {
	.benefits-section, .func-section, .compare-section {
		padding: 3.5rem 1.25rem
	}

	.hero-band {
		padding: 4.5rem 1.25rem 3rem
	}
}
