:root {
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	background: radial-gradient(circle at 15% 20%, rgba(0, 102, 255, 0.22), transparent 32%), radial-gradient(circle at 85% 10%, rgba(0, 170, 255, 0.17), transparent 30%), linear-gradient(135deg, #03050a 0%, #08111f 45%, #03050a 100%);
	color: var(--white);
	overflow-x: hidden;
}

body::before {
	content: "";
	position: fixed;
	pointer-events: none;
	background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
	background-size: 44px 44px;
	mask-image: linear-gradient(to bottom, black, transparent 80%);
	z-index: -2;
}

.noise {
	position: fixed;
	pointer-events: none;
	opacity: .06;
	z-index: -1;
	background-image: ;
}

.orb {
	position: fixed;
	width: 420px;
	height: 420px;
	border-radius: 999px;
	background: radial-gradient(circle, rgba(0, 170, 255, 0.28), transparent 67%);
	filter: blur(18px);
	pointer-events: none;
	transform: translate(-50%, -50%);
	z-index: -1;
	transition: .08s linear;
}

header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	background: rgba(5, 7, 13, 0.72);
	border-bottom: 1px solid var(--line);
}

nav {
	max-width: 1180px;
	margin: 0 auto;
	padding: 18px 22px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.logo {
	display: flex;
	align-items: center;
	gap: 12px;
	font-weight: 900;
	letter-spacing: .5px;
	text-decoration: none;
	color: var(--white);
}

.logo-mark {
	width: 38px;
	height: 38px;
	display: grid;
	border: 1px solid rgba(0, 170, 255, 0.7);
	border-radius: 14px;
	background: linear-gradient(135deg, rgba(0, 170, 255, 0.22), rgba(255, 255, 255, 0.05));
	box-shadow: var(--glow);
	animation: pulse 3s infinite ease-in-out;
}

.logo span:last-child {
	background: linear-gradient(90deg, #fff, #73d7ff);
	-webkit-background-clip: text;
	color: transparent;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 22px;
}

.nav-links a {
	color: var(--gray);
	text-decoration: none;
	font-size: .95rem;
	transition: color 0.2s, text-shadow .2s;
}

.nav-links a:hover {
	color: var(--white);
	text-shadow: 0 0 16px rgba(0, 170, 255, 0.9);
}

.nav-button,
    .primary-button,
    .secondary-button {
	border: 1px solid rgba(0, 170, 255, 0.55);
	background: linear-gradient(135deg, rgba(0, 170, 255, 0.18), rgba(0, 102, 255, 0.07));
	color: var(--white);
	padding: 11px 18px;
	border-radius: 999px;
	text-decoration: none;
	font-weight: 700;
	transition: transform 0.2s, box-shadow 0.2s, background .2s;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.nav-button:hover,
    .primary-button:hover,
    .secondary-button:hover {
	transform: translateY(-2px);
	box-shadow: var(--glow);
	background: linear-gradient(135deg, rgba(0, 170, 255, 0.3), rgba(0, 102, 255, 0.16));
}

.section {
	max-width: 1180px;
	margin: 0 auto;
	padding: 110px 22px;
}

.hero {
	min-height: 100vh;
	display: grid;
	grid-template-columns: 1.08fr 0.92fr;
	align-items: center;
	gap: 48px;
	padding-top: 140px;
}

.badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 13px;
	border: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.055);
	border-radius: 999px;
	color: #cbd6e5;
	font-size: .9rem;
	margin-bottom: 22px;
	animation: fadeUp .8s both;
}

.badge-dot {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: var(--blue);
	box-shadow: 0 0 12px var(--blue);
}

h1 {
	font-size: clamp(3rem, 7vw, 6.6rem);
	line-height: .95;
	letter-spacing: -4px;
	margin-bottom: 26px;
	animation: fadeUp .9s .1s both;
}

.gradient-text {
	background: linear-gradient(90deg, #ffffff 0%, #86ddff 43%, #0077ff 100%);
	-webkit-background-clip: text;
	color: transparent;
}

.hero p {
	color: #c0c9d6;
	font-size: clamp(1.05rem, 2vw, 1.25rem);
	line-height: 1.75;
	max-width: 650px;
	margin-bottom: 30px;
	animation: fadeUp .9s .2s both;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	animation: fadeUp .9s .3s both;
}

.secondary-button {
	border-color: var(--line);
	background: rgba(255, 255, 255, 0.055);
}

.hero-card {
	position: relative;
	min-height: 490px;
	border: 1px solid var(--line);
	border-radius: 32px;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
	box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
	overflow: hidden;
	animation: float 5.5s infinite ease-in-out;
}

.hero-card::before {
	content: "";
	position: absolute;
	background: conic-gradient(from 180deg, transparent, rgba(0, 170, 255, 0.7), transparent 32%);
	animation: rotate 8s linear infinite;
	z-index: 0;
}

.hero-card-inner {
	position: absolute;
	border-radius: 31px;
	background: rgba(5, 7, 13, 0.93);
	z-index: 1;
	padding: 26px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.terminal {
	border: 1px solid var(--line);
	border-radius: 22px;
	background: rgba(0, 0, 0, 0.42);
	overflow: hidden;
}

.terminal-top {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 14px;
	border-bottom: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.045);
}

.dot {
	width: 10px;
	height: 10px;
	border-radius: 999px;
	background: #536072;
}

.dot.blue {
	background: var(--blue);
	box-shadow: 0 0 10px var(--blue);
}

.terminal-body {
	padding: 20px;
	font-family: "SFMono-Regular", Consolas, monospace;
	font-size: .95rem;
	color: #b8e9ff;
	line-height: 1.7;
	min-height: 185px;
}

.typing::after {
	content: "_";
	animation: blink .75s infinite;
}

.status-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
	margin-top: 22px;
}

.status {
	padding: 18px;
	border: 1px solid var(--line);
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.055);
}

.status strong {
	display: block;
	font-size: 1.7rem;
	margin-bottom: 5px;
	color: #fff;
}

.status span {
	color: var(--gray);
	font-size: .9rem;
}

.section-title {
	max-width: 760px;
	margin-bottom: 42px;
}

.eyebrow {
	color: var(--blue);
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-size: .8rem;
	margin-bottom: 14px;
}

h2 {
	font-size: clamp(2.1rem, 4vw, 4rem);
	line-height: 1.05;
	letter-spacing: -2px;
	margin-bottom: 16px;
}

.section-title p {
	color: #b9c4d2;
	line-height: 1.75;
	font-size: 1.05rem;
}

.cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.card {
	position: relative;
	padding: 26px;
	border: 1px solid var(--line);
	border-radius: 28px;
	background: var(--card);
	overflow: hidden;
	transform-style: preserve-3d;
	transition: transform 0.2s, border-color 0.2s, background .2s;
}

.card::before {
	content: "";
	position: absolute;
	background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(0, 170, 255, 0.19), transparent 34%);
	opacity: 0;
	transition: opacity .25s;
}

.card:hover {
	border-color: rgba(0, 170, 255, 0.55);
	background: rgba(255, 255, 255, 0.1);
	transform: translateY(-8px) rotateX(1deg) rotateY(-1deg);
}

.card:hover::before {
	opacity: 1;
}

.icon {
	width: 48px;
	height: 48px;
	display: grid;
	margin-bottom: 22px;
	border-radius: 17px;
	background: rgba(0, 170, 255, 0.14);
	border: 1px solid rgba(0, 170, 255, 0.3);
	box-shadow: 0 0 22px rgba(0, 170, 255, 0.18);
	font-size: 1.45rem;
}

.card h3 {
	font-size: 1.35rem;
	margin-bottom: 12px;
	position: relative;
}

.card p {
	color: #bdc7d5;
	line-height: 1.7;
	position: relative;
}

.process {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 34px;
	align-items: start;
}

.steps {
	display: grid;
	gap: 16px;
}

.step {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 18px;
	padding: 22px;
	border: 1px solid var(--line);
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.055);
	transition: transform 0.2s, border-color .2s;
}

.step:hover {
	transform: translateX(8px);
	border-color: rgba(0, 170, 255, 0.55);
}

.step-number {
	width: 38px;
	height: 38px;
	display: grid;
	border-radius: 14px;
	background: rgba(0, 170, 255, 0.14);
	color: var(--blue);
	font-weight: 900;
	border: 1px solid rgba(0, 170, 255, 0.34);
}

.step h3 {
	margin-bottom: 7px;
}

.step p {
	color: #b9c4d2;
	line-height: 1.6;
}

.scan-box {
	position: sticky;
	top: 120px;
	border: 1px solid var(--line);
	border-radius: 30px;
	background: rgba(255, 255, 255, 0.06);
	min-height: 420px;
	overflow: hidden;
	display: grid;
}

.radar {
	width: min(330px, 80vw);
	aspect-ratio: 1;
	border-radius: 999px;
	border: 1px solid rgba(0, 170, 255, 0.35);
	background: radial-gradient(circle, rgba(0, 170, 255, 0.18) 0 2px, transparent 3px), repeating-radial-gradient(circle, transparent 0 42px, rgba(0, 170, 255, 0.18) 43px 44px), linear-gradient(90deg, transparent 49.5%, rgba(0, 170, 255, 0.25) 50%, transparent 50.5%), linear-gradient(transparent 49.5%, rgba(0, 170, 255, 0.25) 50%, transparent 50.5%);
	position: relative;
	box-shadow: inset 0 0 36px rgba(0, 170, 255, 0.16), 0 0 45px rgba(0, 170, 255, 0.13);
}

.radar::before {
	content: "";
	position: absolute;
	width: 50%;
	height: 50%;
	transform-origin: 0 0;
	background: linear-gradient(45deg, rgba(0, 170, 255, 0.55), transparent 65%);
	border-top-left-radius: 100%;
	animation: sweep 3s linear infinite;
}

.radar::after {
	content: "PRIVATE SECTOR SHIELD";
	position: absolute;
	left: 50%;
	bottom: -46px;
	transform: translateX(-50%);
	color: var(--gray);
	letter-spacing: 2px;
	font-size: .76rem;
	white-space: nowrap;
}

.testimonial {
	border: 1px solid var(--line);
	border-radius: 30px;
	background: linear-gradient(135deg, rgba(0, 170, 255, 0.12), rgba(255, 255, 255, 0.05));
	padding: 34px;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 28px;
	align-items: center;
}

.testimonial p {
	color: #d3dbe7;
	font-size: clamp(1.2rem, 2.2vw, 1.7rem);
	line-height: 1.5;
	margin-bottom: 14px;
}

.testimonial span {
	color: var(--gray);
}

.shield-button {
	width: 96px;
	height: 96px;
	border-radius: 28px;
	border: 1px solid rgba(0, 170, 255, 0.45);
	background: rgba(0, 170, 255, 0.1);
	color: #fff;
	font-size: 2.5rem;
	cursor: pointer;
	transition: transform 0.2s, box-shadow .2s;
}

.shield-button:hover {
	transform: rotate(-8deg) scale(1.08);
	box-shadow: var(--glow);
}

.contact {
	text-align: center;
	padding-bottom: 80px;
}

.contact-box {
	border: 1px solid var(--line);
	border-radius: 34px;
	background: linear-gradient(135deg, rgba(0, 170, 255, 0.18), rgba(255, 255, 255, 0.05)), rgba(255, 255, 255, 0.04);
	padding: clamp(34px, 6vw, 70px);
	overflow: hidden;
	position: relative;
}

.contact-box::before {
	content: "";
	position: absolute;
	width: 360px;
	height: 360px;
	border-radius: 999px;
	right: -120px;
	top: -120px;
	background: radial-gradient(circle, rgba(0, 170, 255, 0.28), transparent 70%);
}

.contact-box h2,
    .contact-box p,
    .contact-box a {
	position: relative;
}

.contact-box p {
	max-width: 700px;
	margin: 0 auto 28px;
	color: #c2ccda;
	line-height: 1.7;
	font-size: 1.08rem;
}

footer {
	border-top: 1px solid var(--line);
	color: var(--gray);
	padding: 28px 22px;
	text-align: center;
	background: rgba(0, 0, 0, 0.2);
}

.reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.75s, transform .75s;
}

.reveal.visible {
	opacity: 1;
	transform: translateY(0);
}

.matrix-rain {
	position: fixed;
	pointer-events: none;
	z-index: 99;
	opacity: 0;
	transition: opacity .3s;
}

.matrix-rain.active {
	opacity: 1;
}

.toast {
	position: fixed;
	left: 50%;
	bottom: 28px;
	transform: translateX(-50%) translateY(20px);
	opacity: 0;
	z-index: 100;
	background: rgba(5, 7, 13, 0.9);
	border: 1px solid rgba(0, 170, 255, 0.5);
	color: #fff;
	padding: 14px 18px;
	border-radius: 999px;
	box-shadow: var(--glow);
	transition: opacity 0.25s, transform .25s;
	text-align: center;
}

.toast.show {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}

.security-level {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 45;
	width: min(280px, calc(100vw - 44px));
	border: 1px solid var(--line);
	border-radius: 22px;
	background: rgba(5, 7, 13, 0.74);
	padding: 16px;
	box-shadow: 0 20px 55px rgba(0, 0, 0, 0.28);
}

.security-level-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	color: #d7e4f5;
	font-weight: 800;
	font-size: .86rem;
	margin-bottom: 10px;
}

.security-level-value {
	color: var(--blue);
	text-shadow: 0 0 12px rgba(0, 170, 255, 0.85);
}

.security-bar {
	height: 9px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.security-bar-fill {
	width: 24%;
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, var(--blue-dark), var(--blue), #ffffff);
	box-shadow: 0 0 20px rgba(0, 170, 255, 0.8);
	transition: width .5s ease;
}

.security-level small {
	display: block;
	margin-top: 9px;
	color: var(--gray);
	line-height: 1.4;
}

.mini-console {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) scale(0.95);
	width: min(720px, calc(100vw - 30px));
	max-height: min(520px, calc(100vh - 30px));
	z-index: 120;
	border: 1px solid rgba(0, 170, 255, 0.5);
	border-radius: 24px;
	overflow: hidden;
	background: rgba(3, 5, 10, 0.94);
	box-shadow: 0 0 70px rgba(0, 170, 255, 0.3), 0 30px 120px rgba(0, 0, 0, 0.75);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.22s, transform .22s;
}

.mini-console.open {
	opacity: 1;
	pointer-events: auto;
	transform: translate(-50%, -50%) scale(1);
}

.mini-console-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 16px;
	border-bottom: 1px solid var(--line);
	color: #d8e7f8;
	font-weight: 900;
	letter-spacing: .4px;
	background: rgba(255, 255, 255, 0.045);
}

.mini-console-close {
	border: 1px solid var(--line);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.06);
	color: var(--white);
	padding: 7px 11px;
	cursor: pointer;
}

.mini-console-body {
	padding: 18px;
	font-family: "SFMono-Regular", Consolas, monospace;
	color: #b8e9ff;
	line-height: 1.75;
	font-size: .95rem;
}

.mini-console-body strong {
	color: #fff;
}

.glitch-active h1,
    .glitch-active .logo span:last-child {
	animation: glitch .8s steps(2, end) 3;
}

.sentinel-drone {
	position: fixed;
	width: 14px;
	height: 14px;
	border-radius: 999px;
	background: var(--blue);
	box-shadow: 0 0 18px var(--blue), 0 0 45px rgba(0, 170, 255, 0.65);
	z-index: 80;
	pointer-events: none;
	opacity: 0;
}

.sentinel-drone.fly {
	animation: droneFlight 4.8s ease-in-out forwards;
}

.security-check {
	border: 1px solid var(--line);
	border-radius: 34px;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
	padding: clamp(24px, 4vw, 42px);
	box-shadow: 0 28px 85px rgba(0, 0, 0, 0.22);
	overflow: hidden;
	position: relative;
}

.security-check::before {
	content: "";
	position: absolute;
	width: 380px;
	height: 380px;
	right: -180px;
	top: -190px;
	border-radius: 999px;
	background: radial-gradient(circle, rgba(0, 170, 255, 0.24), transparent 70%);
	pointer-events: none;
}

.check-grid {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 0.8fr;
	gap: 26px;
	align-items: start;
}

.check-questions {
	display: grid;
	gap: 13px;
}

.check-item {
	display: flex;
	align-items: center;
	gap: 13px;
	padding: 15px;
	border: 1px solid var(--line);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.045);
	cursor: pointer;
	transition: border-color 0.2s, background 0.2s, transform .2s;
}

.check-item:hover {
	border-color: rgba(0, 170, 255, 0.5);
	background: rgba(0, 170, 255, 0.07);
	transform: translateX(4px);
}

.check-item input {
	accent-color: var(--blue);
	width: 18px;
	height: 18px;
}

.check-item span {
	color: #d4dfec;
	line-height: 1.45;
}

.check-result {
	border: 1px solid rgba(0, 170, 255, 0.25);
	border-radius: 26px;
	background: rgba(0, 0, 0, 0.26);
	padding: 24px;
	position: sticky;
	top: 120px;
}

.score-ring {
	width: 180px;
	height: 180px;
	border-radius: 999px;
	margin: 0 auto 20px;
	display: grid;
	background: conic-gradient(var(--blue) 0deg, rgba(255, 255, 255, 0.09) 0deg);
	box-shadow: inset 0 0 28px rgba(0, 0, 0, 0.42), 0 0 35px rgba(0, 170, 255, 0.16);
	transition: background .45s ease;
}

.score-ring-inner {
	width: 132px;
	height: 132px;
	border-radius: inherit;
	background: rgba(5, 7, 13, 0.92);
	display: grid;
	border: 1px solid var(--line);
	font-size: 2.1rem;
	font-weight: 900;
	color: #fff;
}

.check-result h3 {
	margin-bottom: 10px;
	font-size: 1.4rem;
}

.check-result p {
	color: #b9c4d2;
	line-height: 1.65;
	margin-bottom: 18px;
}

.console-output {
	min-height: 190px;
	max-height: 270px;
	overflow: auto;
	padding-right: 6px;
	margin-bottom: 14px;
}

.console-line {
	color: #b8e9ff;
	word-break: break-word;
}

.console-input-row {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	gap: 8px;
	border-top: 1px solid var(--line);
	padding-top: 14px;
}

.console-input-row span {
	color: var(--blue);
	font-weight: 900;
}

.console-input {
	width: 100%;
	border: 1px solid rgba(0, 170, 255, 0.28);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.055);
	color: #fff;
	padding: 10px 12px;
	outline: none;
	font-family: inherit;
}

.console-input:focus {
	border-color: rgba(0, 170, 255, 0.75);
	box-shadow: 0 0 18px rgba(0, 170, 255, 0.18);
}

.panic-overlay {
	position: fixed;
	z-index: 140;
	display: grid;
	pointer-events: none;
	opacity: 0;
	background: radial-gradient(circle, rgba(255, 40, 40, 0.18), rgba(3, 5, 10, 0.86) 60%);
	transition: opacity .25s ease;
}

.panic-overlay.active {
	opacity: 1;
}

.panic-card {
	width: min(620px, calc(100vw - 34px));
	border: 1px solid rgba(255, 80, 80, 0.65);
	border-radius: 28px;
	padding: 28px;
	background: rgba(8, 8, 12, 0.9);
	box-shadow: 0 0 80px rgba(255, 40, 40, 0.24);
	text-align: center;
}

.panic-card strong {
	display: block;
	color: #fff;
	font-size: clamp(2rem, 5vw, 4rem);
	letter-spacing: -2px;
	margin-bottom: 12px;
	text-shadow: 0 0 22px rgba(255, 60, 60, 0.55);
}

.panic-card span {
	color: #ffd7d7;
	font-family: "SFMono-Regular", Consolas, monospace;
}

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(24px);
	}
	
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

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

@keyframes pulse {
	0%, 100% {
		box-shadow: 0 0 18px rgba(0, 170, 255, 0.35);
	}
	
	50% {
		box-shadow: 0 0 34px rgba(0, 170, 255, 0.8);
	}
}

@keyframes rotate {
	to {
		transform: rotate(360deg);
	}
}

@keyframes blink {
	50% {
		opacity: 0;
	}
}

@keyframes sweep {
	to {
		transform: rotate(360deg);
	}
}

@keyframes glitch {
	0% {
		transform: translate(0);
		filter: hue-rotate(0);
	}
	
	20% {
		transform: translate(-2px, 1px);
		filter: hue-rotate(25deg);
	}
	
	40% {
		transform: translate(3px, -1px);
		filter: hue-rotate(-20deg);
	}
	
	60% {
		transform: translate(-1px, 2px);
		filter: hue-rotate(35deg);
	}
	
	80% {
		transform: translate(2px, -2px);
		filter: hue-rotate(-15deg);
	}
	
	100% {
		transform: translate(0);
		filter: hue-rotate(0);
	}
}

@keyframes droneFlight {
	0% {
		opacity: 0;
		left: 8%;
		top: 85%;
		transform: scale(0.5);
	}
	
	10% {
		opacity: 1;
	}
	
	30% {
		left: 32%;
		top: 22%;
		transform: scale(1.2);
	}
	
	55% {
		left: 76%;
		top: 34%;
		transform: scale(0.9);
	}
	
	78% {
		left: 52%;
		top: 68%;
		transform: scale(1.35);
	}
	
	100% {
		opacity: 0;
		left: 92%;
		top: 12%;
		transform: scale(0.4);
	}
}

@media (max-width: 900px) {
	.check-grid {
		grid-template-columns: 1fr;
	}
	
	.check-result {
		position: relative;
		top: 0;
	}
	
	.nav-links {
		display: none;
	}
	
	.hero,
	      .process {
		grid-template-columns: 1fr;
	}
	
	.hero-card {
		min-height: 430px;
	}
	
	.cards {
		grid-template-columns: 1fr;
	}
	
	.testimonial {
		grid-template-columns: 1fr;
	}
	
	h1 {
		letter-spacing: -2px;
	}
}

@media (prefers-reduced-motion: reduce) {
	*, ::before, ::after {
		animation: none !important;
		scroll-behavior: auto !important;
		transition: none !important;
	}
}