:root {
	--navy: #0f2235;
	--navy-lt: #183048;
	--teal: #1a7a80;
	--teal-lt: #22a0a8;
	--sage: #3a7d58;
	--sage-lt: #4ea872;
	--amber: #c87820;
	--amber-lt: #e09030;
	--sun: #ffd580;
	--lavender: #7b6fa8;
	--coral: #d4604a;
	--cream: #fefcf7;
	--warm: #f8f3eb;
	--sand: #eee8dc;
	--sky: #eaf5f6;
	--mint: #eaf5ee;
	--body: #2c3e50;
	--muted: #6b7f8f;
	--white: #ffffff;
	--serif: 'Lora', Georgia, serif;
	--sans: 'Nunito', system-ui, sans-serif;
	--mono: 'Source Code Pro', monospace;
	--e: cubic-bezier(0.22, 0.61, 0.36, 1);
	--spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── NAV ── */
nav {
	background: rgba(254, 252, 247, 0.95);
	border-bottom: 1px solid rgba(26, 122, 128, 0.15);
}

.nav-logo {
	color: var(--navy);
} 

.nav-links a {
	color: var(--body);
}

.nav-links a:hover {
	color: var(--teal);
}

.nav-cta {
	background: var(--teal);
	box-shadow: 0 4px 18px rgba(26, 122, 128, 0.3);
}

.nav-cta:hover {
	background: var(--teal-lt) !important;
}

header {
	overflow: hidden;
}

/* ── HERO ── */
#home {
  background: linear-gradient(
    160deg,
    var(--warm) 0%,
    var(--sky) 55%,
    var(--mint) 100%
  );
}

.hero {
	min-height: calc(100vh - 170px);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	position: relative;
}

.hero::before {
	content: '';
	position: absolute;
	top: -100px;
	right: -100px;
	width: 560px;
	height: 560px;
	border-radius: 50%;
	background: radial-gradient(
		circle,
		rgba(26, 122, 128, 0.08) 0%,
		transparent 70%
	);
	pointer-events: none;
}

.hero::after {
	content: '';
	position: absolute;
	bottom: -60px;
	left: 8%;
	width: 400px;
	height: 400px;
	border-radius: 50%;
	background: radial-gradient(
		circle,
		rgba(58, 125, 88, 0.07) 0%,
		transparent 70%
	);
	pointer-events: none;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(26, 122, 128, 0.1);
	border: 1px solid rgba(26, 122, 128, 0.2);
	border-radius: 100px;
	padding: 7px clamp(0.625rem, calc(0.517rem + 0.541vw), 1rem);
	margin-bottom: 28px;
}

.badge-dot {
	min-width: 8px;
	min-height: 8px;
	border-radius: 50%;
	background: var(--teal);
	animation: blink 2.5s ease infinite;
}

@keyframes blink {
	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.3;
	}
}

.badge-text {
	font-size: 13px;
	font-weight: 600;
	color: var(--teal);
	letter-spacing: 0.03em;
}

.hero-h1 {
	font-size: clamp(34px, 3.8vw, 56px);
	color: var(--navy);
	line-height: 1.12;
	margin-bottom: 22px;
	animation: slideUp 0.8s var(--e) both;
}

.hero-h1 em {
	color: var(--teal);
	font-style: italic;
}

.hero-sub {
	font-size: clamp(14px, calc(12.847px + 0.36vw), 18px);
	font-weight: 400;
	color: var(--body);
	line-height: 1.78;
	max-width: 490px;
	margin-bottom: 40px;
	animation: slideUp 0.8s 0.1s var(--e) both;
}

.hero-sub strong {
	color: var(--navy);
	font-weight: 700;
}

.hero-btns {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	animation: slideUp 0.8s 0.2s var(--e) both;
}

.btn-teal {
	background: var(--teal);
	color: var(--white);
	font-weight: 700;
	font-size: clamp(14px, calc(13.423px + 0.18vw), 16px);
	border-radius: 100px;
	box-shadow: 0 6px 24px rgba(26, 122, 128, 0.3);
	transition:
		transform 0.2s var(--spring),
		box-shadow 0.2s;
}

.btn-teal:hover {
	transform: translateY(-2px) scale(1.02);
	box-shadow: 0 10px 32px rgba(26, 122, 128, 0.4);
}

.btn-outline {
	background: transparent;
	color: var(--teal);
	border: 2px solid var(--teal);
	font-weight: 600;
	font-size: clamp(14px, calc(13.423px + 0.18vw), 16px);
	border-radius: 100px;
	transition:
		background 0.2s,
		color 0.2s;
}

.btn-outline:hover {
	background: var(--teal);
	color: var(--white);
}

.hero-right {
	position: relative;
	z-index: 2;
	animation: slideUp 0.8s 0.15s var(--e) both;
}

.reassure-cards {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 16px;
}

.rc,
.info-card,
.sign-card,
.aud-card,
.uc-card,
.faq-item {
	opacity: 0;
	transform: translateY(20px);
}

.rc.fade-in-up,
.info-card.fade-in-up,
.sign-card.fade-in-up,
.aud-card.fade-in-up,
.uc-card.fade-in-up,
.faq-item.fade-in-up {
	opacity: 1;
	transform: translateY(0);
	transition: 0.6s ease;
}

.hp,
.ci-item {
	opacity: 0;
	transform: translateX(-100%);
}

.hp.fade-in-slide-right,
.ci-item.fade-in-slide-right {
	opacity: 1;
	transform: translateX(0);
	transition: 0.6s ease;
}

.tech-visual,
#senior-bh-form {
	opacity: 0;
}
.tech-visual.fade-in,
#senior-bh-form.fade-in {
	opacity: 1;
	transition: 0.6s ease;
}

.rc {
	background: var(--white);
	border-radius: 18px;
	padding: clamp(15px, calc(12.117px + 0.901vw), 25px);
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
	display: flex;
	align-items: flex-start;
	gap: 18px;
	transition: transform 0.25s var(--spring);
}

.rc:hover {
	transform: translateX(6px);
}

.rc-icon {
	font-size: clamp(24px, calc(22.27px + 0.541vw), 30px);
	flex-shrink: 0;
	margin-top: 2px;
}

.rc-title {
	font-size: 15px;
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 5px;
}

.rc-body {
	font-size: 14px;
	color: var(--muted);
	line-height: 1.65;
}

.rc-body strong {
	color: var(--teal);
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(24px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ── SHARED ── */
.eyebrow {
	font-weight: 500;
	margin-bottom: 12px;
}

.sh {
	font-size: clamp(26px, 3vw, 44px);
	color: var(--navy);
	line-height: 1.15;
	margin-bottom: 16px;
	font-weight: 700;
}

.sh em {
	color: var(--teal);
	font-style: italic;
}

.sintro {
	font-size: clamp(14px, calc(12.847px + 0.36vw), 18px);
	color: var(--body);
	line-height: 1.85;
	max-width: 680px;
	margin-bottom: 52px;
}

/* ── STATS BAND ── */
.stats-band {
	background: var(--teal);
	padding: var(--vertical-padding) 0;
}

.stats-inner {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.stat {
	text-align: center;
	padding: 0 28px;
	border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.stat:last-child {
	border-right: none;
}

.stat-n {
	font-size: clamp(30px, calc(24.234px + 1.802vw), 50px);
	color: var(--sun);
	line-height: 1;
	margin-bottom: 10px;
}

.stat-l {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.82);
	line-height: 1.5;
}

.stat-s {
	font-family: var(--mono);
	font-size: 11px;
	color: rgba(255, 255, 255, 0.4);
	margin-top: 6px;
	letter-spacing: 0.1em;
}

/* ── TWO-COL SECTION ── */
.why {
  background:var(--white);
  padding: var(--vertical-padding) 0;
}
.two {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
}

.prose {
	font-size: clamp(14px, calc(13.423px + 0.18vw), 16px);
	color: var(--body);
	line-height: 1.85;
}

.prose:not(:last-of-type) {
	margin-bottom: 20px;
}

.prose strong {
	color: var(--navy);
}

.info-card {
	background: var(--sky);
	border-radius: 14px;
	padding: clamp(0.938rem, calc(0.811rem + 0.631vw), 1.375rem)
		clamp(0.938rem, calc(0.757rem + 0.901vw), 1.563rem);
	border-left: 4px solid var(--teal);
}

.info-card:not(:last-of-type) {
	margin-bottom: 14px;
}

.info-card h4 {
	font-size: 15px;
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 8px;
}

.info-card p {
	font-size: 14px;
	color: var(--body);
	line-height: 1.7;
}

.sage-card {
	background: var(--mint);
	border-left: 4px solid var(--sage);
}

.sage-card h4 {
	font-size: 15px;
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 8px;
}

.sage-card p {
	font-size: 14px;
	color: var(--body);
	line-height: 1.7;
}

/* ── SIGNS ── */
.signs {
	background: var(--sky);
  padding: var(--vertical-padding) 0;
}

.signs-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.sign-card {
	background: var(--white);
	border-radius: 16px;
	padding: clamp(15px, calc(12.117px + 0.901vw), 25px);
	text-align: center;
	box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
	transition:
		transform 0.25s var(--spring),
		box-shadow 0.25s;
}

.sign-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 34px rgba(0, 0, 0, 0.1);
}

.sign-icon {
	font-size: clamp(28px, calc(25.694px + 0.721vw), 36px);
	margin-bottom: 12px;
}

.sign-cat {
	font-family: var(--mono);
	font-size: 10px;
	font-weight: 500;
	color: var(--teal);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.sign-card h4 {
	font-size: 15px;
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 10px;
}

.sign-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 7px;
}

.sign-list li {
	font-size: 14px;
	color: var(--body);
	line-height: 1.5;
}

.sign-list li::before {
	content: '· ';
	color: var(--teal);
	font-weight: 700;
}

.red-flags {
	margin-top: 48px;
	background: linear-gradient(135deg, #fff0ee, #ffe4df);
	border-radius: 16px;
	border-left: clamp(3px, calc(2.135px + 0.27vw), 6px) solid var(--coral);
	padding: clamp(15px, calc(7.793px + 2.252vw), 40px);
}

.rf-head {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
}

.rf-icon {
	font-size: clamp(22px, calc(20.27px + 0.541vw), 28px);
}

.rf-head h3 {
	font-size: clamp(16px, calc(14.27px + 0.541vw), 22px);
	color: var(--coral);
}

.rf-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}

.rf-item {
	background: rgba(212, 96, 74, 0.09);
	border-radius: 8px;
	padding: 10px;
	font-size: 14px;
	color: var(--coral);
	font-weight: 600;
}

/* ── AUDIENCE ── */
.audiences {
	background: var(--warm);
  padding: var(--vertical-padding) 0;
}

.aud-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.aud-card {
	background: var(--white);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 4px 22px rgba(0, 0, 0, 0.07);
	transition:
		transform 0.25s var(--spring),
		box-shadow 0.25s;
}

.aud-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 14px 38px rgba(0, 0, 0, 0.12);
}

.ac-top {
	padding: clamp(20px, calc(17.694px + 0.721vw), 28px);
	text-align: center;
}

.ac-icon {
	font-size: clamp(30px, calc(28.559px + 0.45vw), 35px);
	margin-bottom: 14px;
}

.ac-title {
	font-size: clamp(16px, calc(15.423px + 0.18vw), 18px);
	color: var(--navy);
	margin-bottom: 6px;
}

.ac-who {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.ac-bottom {
	padding: clamp(15px, calc(13.559px + 0.45vw), 20px);
	border-top: 1px solid var(--sand);
}

.ac-bottom p {
	font-size: 14px;
	color: var(--body);
	line-height: 1.75;
}

.ac-bottom strong {
	color: var(--teal);
}

.aud-card:nth-child(1) .ac-top {
	background: linear-gradient(160deg, #eaf5f6, #c5e5e8);
}

.aud-card:nth-child(1) .ac-who {
	color: var(--teal);
}

.aud-card:nth-child(2) .ac-top {
	background: linear-gradient(160deg, #eaf5ee, #c5e5cf);
}

.aud-card:nth-child(2) .ac-who {
	color: var(--sage);
}

.aud-card:nth-child(3) .ac-top {
	background: linear-gradient(160deg, #f8f3e8, #f0e4c0);
}

.aud-card:nth-child(3) .ac-who {
	color: var(--amber);
}

/* ── HOW IT WORKS ── */
.how {
	background: var(--navy);
  padding: var(--vertical-padding) 0;
}

.how .eyebrow {
	color: var(--teal-lt);
}

.how .sh {
	color: var(--white);
}

.how .sintro {
	color: rgba(255, 255, 255, 0.65);
	margin-bottom: 44px;
}

.how-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: center;
}

.how-points {
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.hp {
	display: flex;
	gap: 18px;
	align-items: flex-start;
}

.hp-icon {
	width: clamp(35px, calc(31.252px + 1.171vw), 48px);
	height: clamp(35px, calc(31.252px + 1.171vw), 48px);
	border-radius: 12px;
	flex-shrink: 0;
	background: rgba(255, 255, 255, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: clamp(18px, calc(16.847px + 0.36vw), 22px);
	border: 1px solid rgba(255, 255, 255, 0.12);
}

.hp-title {
	font-size: 16px;
	font-weight: 800;
	color: var(--white);
	margin-bottom: 5px;
}

.hp-body {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.72;
}

.hp-body strong {
	color: var(--teal-lt);
	font-weight: 600;
}

.tech-visual {
	background: linear-gradient(
		160deg,
		rgba(26, 52, 80, 0.9),
		rgba(26, 122, 128, 0.18)
	);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 22px;
	padding: clamp(15px, calc(6.64px + 2.613vw), 44px);
	position: relative;
	overflow: hidden;
}

.tech-visual::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(
		ellipse 80% 60% at 70% 30%,
		rgba(26, 122, 128, 0.2) 0%,
		transparent 65%
	);
}

.eye-wrap {
	width: clamp(100px, calc(88.468px + 3.604vw), 140px);
	height: clamp(100px, calc(88.468px + 3.604vw), 140px);
	border-radius: 50%;
	border: 2px solid rgba(26, 122, 128, 0.45);
	margin: 0 auto 28px;
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.03);
}

.er1 {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	border: 1px solid rgba(26, 122, 128, 0.25);
}

.er2 {
	position: absolute;
	inset: 16px;
	border-radius: 50%;
	border: 1px solid rgba(58, 125, 88, 0.2);
}

.eye-core {
	width: clamp(42px, calc(39.117px + 0.901vw), 52px);
	height: clamp(42px, calc(39.117px + 0.901vw), 52px);
	border-radius: 50%;
	background: var(--teal);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: clamp(18px, calc(16.27px + 0.541vw), 24px);
	box-shadow: 0 0 clamp(18px, calc(16.27px + 0.541vw), 24px) rgba(26, 122, 128, 0.6);
	z-index: 2;
	position: relative;
}

.bm-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	position: relative;
	z-index: 2;
}

.bm {
	background: rgba(255, 255, 255, 0.07);
	border-radius: 8px;
	padding: 10px;
}

.bm:nth-child(odd) {
	border-left: 3px solid var(--teal-lt);
}

.bm:nth-child(even) {
	border-left: 3px solid var(--sage-lt);
}

.bm-name {
	font-size: 14px;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 2px;
}

.bm-desc {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.38);
}

/* ── USE CASES ── */
.usecases {
	background: var(--warm);
  padding: var(--vertical-padding) 0;
}

.uc-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.uc-card {
	background: var(--white);
	border-radius: 16px;
	padding: clamp(15px, calc(12.117px + 0.901vw), 25px);
	border-top: 4px solid var(--teal);
	box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
	transition: transform 0.25s var(--spring);
}

.uc-card:hover {
	transform: translateY(-5px);
}

.uc-card:nth-child(2) {
	border-top-color: var(--sage);
}

.uc-card:nth-child(3) {
	border-top-color: var(--amber);
}

.uc-card:nth-child(4) {
	border-top-color: var(--lavender);
}

.uc-card:nth-child(5) {
	border-top-color: var(--coral);
}

.uc-card:nth-child(6) {
	border-top-color: var(--teal-lt);
}

.uc-icon {
	font-size: clamp(24px, calc(22.27px + 0.541vw), 30px);
	margin-bottom: 12px;
}

.uc-title {
	font-size: clamp(16px, calc(15.423px + 0.18vw), 18px);
	color: var(--navy);
	margin-bottom: 8px;
}

.uc-body {
	font-size: 14px;
	color: var(--muted);
	line-height: 1.72;
}

.uc-body strong {
	color: var(--navy);
}

/* ── PROTOCOL ── */
.protocol {
	background: var(--mint);
}

.proto-steps {
	display: flex;
	flex-direction: column;
	gap: 0;
	position: relative;
	max-width: 840px;
}

.proto-steps::before {
	content: '';
	position: absolute;
	left: 24px;
	top: 0;
	bottom: 0;
	width: 2px;
	background: linear-gradient(
		180deg,
		var(--teal),
		var(--sage-lt),
		rgba(26, 122, 128, 0.1)
	);
}

.proto-step {
	display: grid;
	grid-template-columns: 48px 1fr;
	gap: 22px;
	padding: 0 0 32px;
	position: relative;
}

.proto-step:last-child {
	padding-bottom: 0;
}

.step-circle {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--teal);
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--serif);
	font-size: 19px;
	font-weight: 700;
	flex-shrink: 0;
	position: relative;
	z-index: 2;
	box-shadow: 0 4px 14px rgba(26, 122, 128, 0.3);
}

.step-content {
	background: var(--white);
	border-radius: 14px;
	padding: 24px;
	margin-top: 4px;
}

.step-time {
	font-family: var(--mono);
	font-size: 10px;
	font-weight: 500;
	color: var(--teal);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin-bottom: 6px;
}

.step-title {
	font-family: var(--serif);
	font-size: 18px;
	color: var(--navy);
	margin-bottom: 10px;
}

.step-body {
	font-size: 14px;
	color: var(--body);
	line-height: 1.78;
}

.step-tag {
	display: inline-block;
	margin-top: 10px;
	background: var(--sky);
	border-radius: 100px;
	padding: 4px 14px;
	font-size: 11px;
	font-weight: 700;
	color: var(--teal);
	border: 1px solid rgba(26, 122, 128, 0.2);
}

/* ── FAQ ── */
.faq {
	background: var(--cream);
  padding: var(--vertical-padding) 0;
}

.faq-a p strong {
	color: var(--navy);
}

/* ── CONTACT ── */
.contact {
	background: var(--navy);
	padding: var(--vertical-padding) 0;
}

.contact-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(50px, calc(41.351px + 2.703vw), 80px);
}

.contact .sh {
	color: var(--white);
}

.contact .sintro {
	color: rgba(255, 255, 255, 0.6);
}

.contact-form-input,
.contact-form select,
.contact-form textarea {
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.15);
	outline: none;
}

.contact-form-input::placeholder,
.contact-form textarea::placeholder {
	color: rgba(255, 255, 255, 0.3);
}

.contact-form-input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
	border-color: var(--teal-lt);
}

.contact-form select option {
	background: var(--navy);
	color: var(--white);
}

.contact-form textarea {
	min-height: 110px;
	resize: vertical;
}

.contact-phone-countr-code {
	border-right: none;
}

.contact-phone {
	border-left: none;
}

.contact-phone-number-wrapp:focus-within .contact-phone-countr-code {
  border-color: var(--teal-lt);
}

.cf-submit {
	background: var(--teal);
	color: var(--white);
	font-weight: 800;
	font-size: clamp(14px, calc(13.423px + 0.18vw), 16px);
	padding: clamp(10px, calc(8.559px + 0.45vw), 15px);
	border-radius: 100px;
	border: none;
	cursor: pointer;
	width: 100%;
	box-shadow: 0 6px 24px rgba(26, 122, 128, 0.4);
	transition: 0.2s ease;
}

.cf-submit:hover {
	background: var(--teal-lt);
	transform: translateY(-1px);
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 26px;
}

.ci-item {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.ci-icon {
	font-size: 24px;
	flex-shrink: 0;
	margin-top: 2px;
}

.ci-title {
	font-size: 14px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 4px;
}

.ci-val {
	font-size: 15px;
	color: var(--white);
	font-weight: 600;
	line-height: 1.5;
}

.ci-val a {
	color: var(--teal-lt);
}

@media (max-width: 900px) {
	.hero {
		grid-template-columns: 1fr;
	}

	.reassure-cards {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.stats-inner {
		grid-template-columns: 1fr 1fr;
	}
	
	.stat {
		border-right: none;
		padding: 25px;
	}

	.stat:nth-child(odd) {
		border-right: 1px solid rgba(255, 255, 255, 0.2);
	}

	.stat:nth-child(3), .stat:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

	.two,
	.how-grid,
	.contact-inner {
		grid-template-columns: 1fr;
	}

	.signs-grid,
	.aud-grid,
	.uc-grid {
		grid-template-columns: 1fr 1fr;
	}

	.rf-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 780px) {
  .nav-burger svg {
    fill: #000;
  }
	.nav-close svg {
		fill: #fff;
	}
	.nav-links a {
		color: var(--white);
	}

	.info-card {
		border-left: 3px solid var(--teal);
	}
}

@media (max-width: 660px) {
  .reassure-cards {
		grid-template-columns: repeat(1, 1fr);
	}
	.aud-grid,
	.uc-grid {
    grid-template-columns: 1fr;
  }

	.uc-card {
		border-top: 3px solid var(--teal);
	}
}

@media (max-width: 510px) {
  .signs-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 490px) {
  .stats-inner {
    grid-template-columns: 1fr;
  }

	.stat:nth-child(1), .stat:nth-child(3) {
    border-right: none;
  }

	.stat:nth-child(2) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
}

@media (max-width: 400px) {
	.rf-grid {
    grid-template-columns: 1fr;
  }
	.bm-grid {
		grid-template-columns: 1fr;
	}
}