*, *::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;
	--bg2: #EEF1F8;
	--text: #0D1F42;
	--muted: #64748B;
	--border: #DDE3F0;
	--sh: 0 2px 16px rgba(11, 35, 112, .08);
	--sh2: 0 8px 32px rgba(11, 35, 112, .14);
}

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;
	white-space: nowrap
}

.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 {
	/* min-height: 100 svh; */
	display: flex;
	align-items: center;
	margin-top: 64px;
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy2) 100%);
}

.hero-bg-img {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: url('https://images.unsplash.com/photo-1573165850883-9b0e18c44bd2?w=1400&q=80&auto=format') center/cover no-repeat;
	opacity: .18;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(90deg, rgba(7, 21, 69, .95) 0%, rgba(11, 35, 112, .8) 50%, rgba(11, 35, 112, .4) 100%);
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 1200px;
	margin: 0 auto;
	padding: 5rem 5%;
	display: grid;
	grid-template-columns:1fr 1fr;
	gap: 4rem;
	align-items: center;
	width: 100%;
}

.hero h1 {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: clamp(2.8rem, 6vw, 4.4rem);
	font-weight: 800;
	color: white;
	line-height: 1.02;
	letter-spacing: -.02em;
}

.hero h1 span {
	color: #FF8C94
}

.hero-sub {
	color: rgba(255, 255, 255, .75);
	font-size: 1.1rem;
	margin-top: 1.25rem;
	max-width: 480px;
	line-height: 1.65
}

.hero-actions {
	display: flex;
	gap: .85rem;
	flex-wrap: wrap;
	margin-top: 2rem
}

.btn-primary:hover {
	background: var(--red2);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(230, 57, 70, .35)
}

.btn-secondary:hover {
	background: rgba(255, 255, 255, .1);
	border-color: white
}

.hero-stats {
	display: flex;
	gap: 2rem;
	margin-top: 2.5rem
}

.hero-stat span {
	display: block;
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 2.2rem;
	font-weight: 800;
	color: white;
	line-height: 1
}

.hero-stat p {
	font-size: .8rem;
	color: rgba(255, 255, 255, .55);
	margin-top: .2rem
}

.hero-right {
	position: relative
}

.hero-mockup {
	background: rgba(255, 255, 255, .06);
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 16px;
	padding: 1.5rem;
	backdrop-filter: blur(8px);
}

.mockup-bar {
	display: flex;
	align-items: center;
	gap: .5rem;
	margin-bottom: 1rem
}

.mockup-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%
}

.mockup-screen {
	background: rgba(255, 255, 255, .08);
	border-radius: 10px;
	padding: 1.25rem;
	min-height: 280px
}

.mockup-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: .6rem .75rem;
	border-radius: 8px;
	background: rgba(255, 255, 255, .05);
	margin-bottom: .5rem
}

.mockup-row:hover {
	background: rgba(255, 255, 255, .1)
}

.mockup-badge {
	background: rgba(0, 200, 140, .2);
	color: #00c88c;
	font-size: .7rem;
	font-weight: 700;
	padding: .2rem .55rem;
	border-radius: 999px
}

.mockup-badge.pending {
	background: rgba(255, 180, 0, .18);
	color: #FFB400
}

.mockup-label {
	font-size: .82rem;
	color: rgba(255, 255, 255, .7)
}

.mockup-name {
	font-size: .88rem;
	font-weight: 600;
	color: rgba(255, 255, 255, .9)
}

.benefits {
	background: white;
	padding: 4.5rem 5%
}

.benefits-inner {
	max-width: 1200px;
	margin: 0 auto
}

.benefits-head {
	text-align: center;
	margin-bottom: 2.5rem
}

.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: .75rem;
	font-size: .97rem;
	max-width: 540px;
	margin-left: auto;
	margin-right: auto
}

.benefits-grid {
	display: grid;
	grid-template-columns:repeat(auto-fit, minmax(230px, 1fr));
	gap: 1.25rem
}

.ben-card {
	border: 1px solid var(--border);
	border-radius: 14px;
	padding: 1.6rem;
	background: var(--bg);
	transition: all .25s;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: .85rem;
}

.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: 50px;
	height: 50px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
	background: rgba(11, 35, 112, .07);
	flex-shrink: 0
}

.ben-card h3 {
	font-size: 1rem;
	font-weight: 700;
	color: var(--text)
}

.ben-card p {
	font-size: .88rem;
	color: var(--muted);
	line-height: 1.6
}

.marquee-wrap {
	background: var(--navy);
	padding: .9rem 0;
	overflow: hidden;
	position: relative
}

.marquee-wrap::before, .marquee-wrap::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 80px;
	z-index: 1
}

.marquee-wrap::before {
	left: 0;
	background: linear-gradient(to right, var(--navy), transparent)
}

.marquee-wrap::after {
	right: 0;
	background: linear-gradient(to left, var(--navy), transparent)
}

.marquee-track {
	display: flex;
	gap: 3rem;
	animation: marquee 20s linear infinite;
	width: max-content
}

.marquee-item {
	color: rgba(255, 255, 255, .65);
	font-size: .82rem;
	font-weight: 600;
	letter-spacing: .06em;
	text-transform: uppercase;
	white-space: nowrap;
	display: flex;
	align-items: center;
	gap: .75rem
}

.marquee-item::before {
	content: '●';
	color: var(--red);
	font-size: .5rem
}

@keyframes marquee {
	from {
		transform: translateX(0)
	}
	to {
		transform: translateX(-50%)
	}
}

.steps-section {
	background: var(--bg);
	padding: 5rem 5%
}

.steps-inner {
	max-width: 1200px;
	margin: 0 auto
}

.steps-banner {
	background: linear-gradient(135deg, var(--navy-dark), var(--navy));
	border-radius: 20px;
	padding: 2.5rem;
	text-align: center;
	color: white;
	margin-bottom: 3.5rem;
	position: relative;
	overflow: hidden;
}

.steps-banner::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(230, 57, 70, .12) 0%, transparent 70%)
}

.steps-banner h2 {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: clamp(1.8rem, 4vw, 2.6rem);
	font-weight: 800;
	letter-spacing: -.02em;
	position: relative;
	z-index: 1
}

.steps-banner h2 span {
	color: #FF8C94
}

.steps-grid {
	display: grid;
	grid-template-columns:1fr 1fr;
	gap: 2rem;
	align-items: start
}

@media (max-width: 860px) {
	.steps-grid {
		grid-template-columns:1fr
	}
}

.step-list {
	display: flex;
	flex-direction: column;
	gap: 1rem
}

.step-item {
	display: flex;
	gap: 1.1rem;
	align-items: flex-start;
	padding: 1.25rem;
	border-radius: 12px;
	background: white;
	border: 1px solid var(--border);
	transition: border-color .2s
}

.step-item:hover {
	border-color: rgba(11, 35, 112, .2)
}

.step-num {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: var(--navy);
	color: white;
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 1.1rem;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.step-body h4 {
	font-size: .97rem;
	font-weight: 700;
	color: var(--text);
	margin-bottom: .25rem
}

.step-body p {
	font-size: .87rem;
	color: var(--muted);
	line-height: 1.55
}

.ideal-card {
	background: white;
	border: 1px solid var(--border);
	border-radius: 14px;
	padding: 2rem;
	box-shadow: 0 4px 20px rgba(11, 35, 112, .08)
}

.ideal-card-head {
	display: flex;
	align-items: center;
	gap: .85rem;
	margin-bottom: 1.5rem
}

.ideal-icon {
	width: 46px;
	height: 46px;
	background: var(--red);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem
}

.ideal-card-head h3 {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--navy)
}

.ideal-card-head h3 span {
	color: var(--red)
}

.ideal-card p {
	color: var(--muted);
	font-size: .9rem;
	margin-bottom: 1.25rem;
	line-height: 1.6
}

.ideal-list {
	display: flex;
	flex-direction: column;
	gap: .6rem;
	margin-bottom: 1.5rem
}

.ideal-item {
	display: flex;
	align-items: center;
	gap: .7rem;
	font-size: .9rem;
	font-weight: 500;
	color: var(--text)
}

.ideal-item::before {
	content: '●';
	color: var(--red);
	font-size: .55rem
}

.btn-navy {
	width: 100%;
	justify-content: center
}

.btn-navy:hover {
	background: var(--red2);
	transform: translateY(-1px)
}

.trial-section {
	background: var(--navy-dark);
	padding: 5rem 5%;
	position: relative;
	overflow: hidden
}

.trial-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 60% 70% at 30% 50%, rgba(230, 57, 70, .12) 0%, transparent 60%)
}

.trial-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns:1fr 1fr;
	gap: 4rem;
	align-items: center;
	position: relative;
	z-index: 1
}

@media (max-width: 860px) {
	.trial-inner {
		grid-template-columns:1fr;
		gap: 2rem
	}
}

.trial-left h2 {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 800;
	color: white;
	line-height: 1.08;
	letter-spacing: -.02em
}

.trial-left h2 span {
	color: #FF8C94
}

.trial-left p {
	color: rgba(255, 255, 255, .65);
	margin-top: .85rem;
	font-size: 1rem;
	line-height: 1.65
}

.trial-perks {
	display: flex;
	flex-direction: column;
	gap: .65rem;
	margin-top: 1.5rem
}

.trial-perk {
	display: flex;
	align-items: center;
	gap: .65rem;
	color: rgba(255, 255, 255, .8);
	font-size: .93rem
}

.perk-check {
	width: 20px;
	height: 20px;
	background: rgba(0, 200, 140, .2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: .65rem;
	color: #00c88c;
	flex-shrink: 0
}

.trial-left .btn-primary {
	margin-top: 2rem
}

.trial-right {
	background: rgba(255, 255, 255, .06);
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 16px;
	padding: 2rem
}

.trial-right h3 {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 1.3rem;
	font-weight: 800;
	color: white;
	margin-bottom: 1.25rem;
	display: flex;
	align-items: center;
	gap: .5rem
}

.trial-feature {
	display: flex;
	align-items: flex-start;
	gap: .85rem;
	padding: .85rem;
	border-radius: 10px;
	background: rgba(255, 255, 255, .04);
	margin-bottom: .5rem;
	border: 1px solid rgba(255, 255, 255, .06)
}

.trial-feature-icon {
	font-size: 1.1rem;
	margin-top: .05rem
}

.trial-feature h4 {
	font-size: .88rem;
	font-weight: 600;
	color: white;
	margin-bottom: .2rem
}

.trial-feature p {
	font-size: .8rem;
	color: rgba(255, 255, 255, .5);
	line-height: 1.5
}

.reveal {
	opacity: 0;
	transform: translateY(24px);
	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.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: 700px) {
	.hero-content {
		grid-template-columns:1fr
	}

	.hero-right {
		display: none
	}

	.hero-stats {
		gap: 1.25rem
	}
}

@media (max-width: 600px) {
	.benefits {
		padding: 3rem 1.25rem
	}

	.steps-section {
		padding: 3.5rem 1.25rem
	}

	.trial-section {
		padding: 3.5rem 1.25rem
	}
}

#hero-one {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	background: rgba(255, 255, 255, .1);
	border: 1px solid rgba(255, 255, 255, .2);
	color: rgba(255, 255, 255, .85);
	font-size: .75rem;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	padding: .3rem .9rem;
	border-radius: 999px;
	margin-bottom: 1.5rem
}
