/*
Theme Name:   PediatricConcussion
Description:  Description
Author:       Pediatric
Author URI:   ...
Version:      1.0.0
Text Domain:  PediatricConcussion
*/

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
:root {
	--slate: #1e2d3d;
	--slate-lt: #2e4055;
	--steel: #4a6280;
	--teal: #00788a;
	--teal-lt: #0099ae;
	--teal-dk: #005f6e;
	--gold: #b8841e;
	--gold-lt: #d4a035;
	--red: #c0392b;
	--paper: #f8f7f4;
	--linen: #f0ede6;
	--rule: #ddd8d0;
	--body: #334455;
	--muted: #6b7f92;
	--white: #ffffff;
	--serif: 'Cormorant Garamond', Georgia, serif;
	--sans: 'Barlow', system-ui, sans-serif;
	--mono: 'IBM Plex Mono', monospace;
	--e: cubic-bezier(0.22, 0.61, 0.36, 1);
}
html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--sans);
	color: var(--slate);
	background: var(--paper);
}
a {
	text-decoration: none;
	color: inherit;
}

::-webkit-scrollbar {
	width: 4px;
}
::-webkit-scrollbar-thumb {
	background: var(--teal);
	border-radius: 2px;
}

.text-accent {
  color: var(--teal-lt);
	font-style: italic;
}

/* NAV */
nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(30, 45, 61, 0.97);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid rgba(0, 120, 138, 0.3);
	z-index: 200;
}

.container {
	max-width: 1430px;
	padding: 0 15px;
	margin: 0 auto;
}

.nav-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 11px 0;
}

.nav-left {
	display: flex;
	align-items: center;
	gap: 40px;
}
.nav-brand {
	font-family: var(--sans);
	font-size: clamp(16px, 1.7vw, 25px);
	font-weight: 700;
	color: var(--white);
	letter-spacing: 0.02em;
}
.nav-brand span {
	color: var(--teal-lt);
}
.nav-tag {
	font-family: var(--mono);
	font-size: 10px;
	color: rgba(255, 255, 255, 0.4);
	letter-spacing: 0.1em;
	width: clamp(147px, 19vw, 294px);
}
.nav-links {
	display: flex;
	gap: 24px;
	list-style: none;
}
.nav-links a {
	font-size: 14px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.65);
	transition: color 0.2s;
	letter-spacing: 0.02em;
}
.nav-links a:hover {
	color: var(--teal-lt);
}
.nav-right {
	display: flex;
	align-items: center;
	gap: 16px;
}
.nav-cta {
	background: var(--teal);
	color: var(--white);
	font-size: 13px;
	font-weight: 600;
	padding: 9px 20px;
	border-radius: 4px;
	border: 1px solid var(--teal);
	transition: background 0.2s;
}
.nav-cta:hover {
	background: transparent;

}

/* HERO */
.hero {
	min-height: 100vh;
	padding-top: 64px;
	background: var(--slate);
	position: relative;
	overflow: hidden;
}
.hero-pattern {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image:
		repeating-linear-gradient(
			0deg,
			transparent,
			transparent 39px,
			rgba(0, 120, 138, 0.07) 39px,
			rgba(0, 120, 138, 0.07) 40px
		),
		repeating-linear-gradient(
			90deg,
			transparent,
			transparent 39px,
			rgba(0, 120, 138, 0.07) 39px,
			rgba(0, 120, 138, 0.07) 40px
		);
}
.hero-left {
	position: relative;
	z-index: 2;
}
.hero-credential {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	border: 1px solid rgba(0, 120, 138, 0.4);
	border-radius: 3px;
	padding: 6px 14px;
	margin-bottom: 36px;
}
.hc-label {
	font-family: var(--mono);
	font-size: 10px;
	color: var(--teal-lt);
	letter-spacing: 0.16em;
	text-transform: uppercase;
}
.hero-h1 {
	font-family: var(--serif);
	font-size: clamp(40px, 4.5vw, 68px);
	color: var(--white);
	line-height: 1.05;
	margin-bottom: 70px;
	font-weight: 600;
	animation: fu 0.9s var(--e) both;
}

.hero-sub {
	font-size: clamp(14px, 1.3vw, 17px);
	font-weight: 300;
	color: rgba(255, 255, 255, 0.65);
	line-height: 1.8;
	max-width: 520px;
	margin-bottom: 40px;
	animation: fu 0.9s 0.1s var(--e) both;
}
.hero-ctas {
	display: flex;
	gap: 12px;
	animation: fu 0.9s 0.2s var(--e) both;
}
.btn-teal {
	background: var(--teal);
	color: var(--white);
	font-weight: 600;
	font-size: 14px;
	padding: 12px 28px;
	border-radius: 4px;
	transition:
		background 0.2s,
		transform 0.15s;
}
.btn-teal:hover {
	background: var(--teal-lt);
	transform: translateY(-1px);
}
.btn-line {
	background: transparent;
	color: rgba(255, 255, 255, 0.75);
	border: 1px solid rgba(255, 255, 255, 0.25);
	font-weight: 500;
	font-size: 14px;
	padding: 12px 24px;
	border-radius: 4px;
	transition:
		border-color 0.2s,
		color 0.2s;
}
.btn-line:hover {
	border-color: var(--teal-lt);
	color: var(--white);
}

/* Hero right — data panel */
.hero-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 50px;
	min-height: 100vh;
	padding-bottom: 80px;
}
.hero-right {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 20px;
	animation: fu 0.9s 0.15s var(--e) both;
}
.data-block {
	border-left: 3px solid var(--teal);
	padding-left: 20px;
}
.db-num {
	font-family: var(--serif);
	font-size: clamp(30px, 3vw, 44px);
	color: var(--gold-lt);
	line-height: 1;
	margin-bottom: 4px;
}
.db-label {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.5;
}
.db-src {
	font-family: var(--mono);
	font-size: 9px;
	color: rgba(255, 255, 255, 0.28);
	margin-top: 4px;
	letter-spacing: 0.08em;
}

@keyframes fu {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* SECTION */
.padding-vertical {
	padding: 100px 0;
}
.label {
	font-family: var(--mono);
	font-size: 12px;
	font-weight: 500;
	color: var(--teal);
	letter-spacing: 0.2em;
	text-transform: uppercase;
	margin-bottom: 12px;
}
.h2 {
	font-family: var(--serif);
	font-size: clamp(28px, 2.8vw, 44px);
	color: var(--slate);
	line-height: 1.15;
	margin-bottom: 16px;
	font-weight: 600;
}
.intro {
	font-size: clamp(14px, 1.2vw, 16px);
	color: var(--body);
	line-height: 1.85;
	max-width: 660px;
	margin-bottom: 56px;
}

/* EPIDEMIOLOGY */
.epidemiology {
	background: var(--white);
}
.epi-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
	gap: 60px;
}
.epi-table-container,
.cpt-table-container {
	width: 100%;
	overflow: auto;
}
.epi-table-container {
	margin-bottom: 20px;
}
.epi-table {
	width: 100%;
	border-collapse: collapse;
}
.epi-table th {
	background: var(--slate);
	color: var(--white);
	font-family: var(--mono);
	font-size: 14px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 12px 16px;
	text-align: left;
}
.epi-table td {
	padding: 12px 16px;
	font-size: 14px;
	border-bottom: 1px solid var(--rule);
}
.epi-table tr:nth-child(even) td {
	background: var(--linen);
}
.epi-table .highlight {
	font-weight: 700;
	color: var(--teal);
}
.epi-right {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.epi-card {
	border-radius: 8px;
	padding: 18px;
	border-left: 4px solid var(--teal);
	background: var(--linen);
}
.epi-card h4 {
	font-size: 16px;
	font-weight: 700;
	color: var(--slate);
	margin-bottom: 8px;
}
.epi-card p {
	font-size: 14px;
	color: var(--body);
	line-height: 1.7;
}

/* PATHOPHYSIOLOGY */
.patho {
	background: var(--linen);
}
.patho-cols {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
	gap: 25px;
}
.patho-col {
	background: var(--white);
	border-radius: 8px;
	padding: 25px;
	border-top: 3px solid var(--teal);
}
.pc-label {
	font-family: var(--mono);
	font-size: 12px;
	font-weight: 500;
	color: var(--teal);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin-bottom: 14px;
}
.pc-title {
	font-family: var(--serif);
	font-size: 24px;
	color: var(--slate);
	margin-bottom: 12px;
}
.pc-body {
	font-size: 14px;
	color: var(--body);
	line-height: 1.75;
}

/* ANATOMY */
.anatomy-block {
	margin-top: 48px;
	background: var(--slate);
	border-radius: 8px;
	padding: 15px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
	gap: 2px;
}
.ab-item {
	padding: 20px 15px;
	text-align: center;
	border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.ab-item:last-child {
	border-right: none;
}
.ab-name {
	font-size: 16px;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 6px;
}
.ab-role {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.45);
	line-height: 1.5;
}

/* CLINICAL PRESENTATION */
.clinical {
	background: var(--white);
}
.domain-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
	gap: 20px;
	margin-bottom: 48px;
}
.domain {
	border-radius: 8px;
	padding: 20px;
	background: var(--paper);
	border-top: 3px solid var(--teal);
}
.domain:nth-child(2) {
	border-top-color: var(--gold);
}
.domain:nth-child(3) {
	border-top-color: #7b5ea7;
}
.domain:nth-child(4) {
	border-top-color: var(--red);
}
.domain-icon {
	font-size: 28px;
	margin-bottom: 12px;
}
.domain-name {
	font-family: var(--mono);
	font-size: 11px;
	font-weight: 500;
	color: var(--teal);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-bottom: 10px;
}
.domain:nth-child(2) .domain-name {
	color: var(--gold);
}
.domain:nth-child(3) .domain-name {
	color: #7b5ea7;
}
.domain:nth-child(4) .domain-name {
	color: var(--red);
}
.domain h4 {
	font-size: 16px;
	font-weight: 700;
	color: var(--slate);
	margin-bottom: 10px;
}
.domain ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.domain ul li {
	font-size: 14px;
	color: var(--body);
	padding-left: 12px;
	position: relative;
}
.domain ul li::before {
	content: '–';
	position: absolute;
	left: 0;
	color: var(--muted);
}

/* Danger signs */
.danger {
	background: #fef0ee;
	border-radius: 8px;
	border: 1px solid rgba(192, 57, 43, 0.2);
	padding: 30px;
}
.danger-head {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
}
.danger-head h3 {
	font-family: var(--serif);
	font-size: clamp(16px, 3vw, 24px);
	color: var(--red);
}
.danger-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(328px, 1fr));
	gap: 10px;
}
.danger-item {
	background: rgba(192, 57, 43, 0.07);
	border-radius: 6px;
	padding: 10px;
	font-size: 14px;
	font-weight: 600;
	color: var(--red);
}

/* BIOMARKERS */
.biomarkers {
	background: var(--slate);
}
.bm-intro-row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
	gap: 50px;
	margin-bottom: 50px;
	align-items: start;
}
.bm-quote {
	font-family: var(--serif);
	font-size: clamp(18px, 2vw, 22px);
	color: var(--white);
	line-height: 1.6;
	font-style: italic;
	border-left: 3px solid var(--teal);
	padding-left: 24px;
}
.bm-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(279px,1fr));
	gap: 2px;
	background: rgba(255, 255, 255, 0.05);
}
.bm-tile {
	background: var(--slate);
	padding: 20px;
	border-bottom: 2px solid transparent;
	transition:
		border-color 0.2s,
		background 0.2s;
}
.bm-tile:hover {
	border-bottom-color: var(--teal-lt);
	background: rgba(0, 120, 138, 0.15);
}
.bm-code {
	font-family: var(--mono);
	font-size: 12px;
	font-weight: 500;
	color: var(--teal-lt);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 6px;
}
.bm-name {
	font-size: 16px;
	font-weight: 600;
	color: var(--white);
	margin-bottom: 6px;
}
.bm-def {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.45);
	line-height: 1.5;
	margin-bottom: 6px;
}
.bm-sig {
	font-size: 13px;
	color: var(--gold-lt);
}

/* ASSESSMENT PROTOCOL */
.protocol {
	background: var(--paper);
}
.protocol-steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 2px;
	background: var(--rule);
	border-radius: 8px;
	overflow: hidden;
	margin-bottom: 48px;
}
.ps {
	background: var(--white);
	padding: 24px 20px;
}
.ps-num {
	font-family: var(--mono);
	font-size: clamp(18px, 2vw, 22px);
	font-weight: 500;
	color: var(--teal);
	margin-bottom: 8px;
}
.ps-time {
	font-family: var(--mono);
	font-size: 11px;
	color: var(--muted);
	letter-spacing: 0.08em;
	margin-bottom: 10px;
}
.ps-title {
	font-size: 16px;
	font-weight: 700;
	color: var(--slate);
	margin-bottom: 8px;
}
.ps-body {
	font-size: 14px;
	color: var(--body);
	line-height: 1.6;
}
.protocol-vs {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
	gap: 24px;
}
.pv {
	background: var(--white);
	border-radius: 8px;
	padding: 32px;
}
.pv h4 {
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--muted);
	margin-bottom: 20px;
}
.pv ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.pv ul li {
	font-size: 14px;
	color: var(--body);
	display: flex;
	align-items: flex-start;
	gap: 10px;
	line-height: 1.5;
}
.pv.old ul li::before {
	content: '✗';
	color: var(--red);
	font-weight: 700;
	flex-shrink: 0;
}
.pv.new ul li::before {
	content: '✓';
	color: var(--teal);
	font-weight: 700;
	flex-shrink: 0;
}

/* CPT */
.cpt-section {
	background: var(--linen);
}
.cpt-table {
	width: 100%;
	border-collapse: collapse;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
	border-radius: 8px;
	overflow: hidden;
}
.cpt-table thead tr {
	background: var(--slate);
}
.cpt-table th {
	color: var(--white);
	font-family: var(--mono);
	font-size: 14px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 14px 20px;
	text-align: left;
}
.cpt-table td {
	padding: 14px 20px;
	font-size: 14px;
	border-bottom: 1px solid var(--rule);
	background: var(--white);
}
.cpt-table tr:last-child td {
	border-bottom: none;
}
.cpt-code {
	font-family: var(--mono);
	font-weight: 500;
	color: var(--teal);
}
.cpt-rate {
	font-weight: 700;
	color: var(--slate);
}
.cpt-note {
	margin-top: 24px;
	background: rgba(0, 120, 138, 0.08);
	border-radius: 8px;
	padding: 20px 24px;
	border-left: 3px solid var(--teal);
	font-size: 14px;
	color: var(--body);
	line-height: 1.7;
}

/* REGULATORY */
.reg {
	background: var(--white);
}
.reg-track {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
	gap: 20px;
	margin-bottom: 48px;
}
.reg-card {
	border-radius: 8px;
	padding: 32px;
	background: var(--paper);
	border-top: 3px solid var(--teal);
	position: relative;
	overflow: hidden;
}
.reg-badge {
	position: absolute;
	top: 0;
	right: 0;
	background: var(--teal);
	color: var(--white);
	font-family: var(--mono);
	font-size: 14px;
	letter-spacing: 0.1em;
	padding: 5px 12px;
	border-bottom-left-radius: 6px;
}
.reg-phase {
	font-family: var(--mono);
	font-size: 12px;
	color: var(--teal);
	letter-spacing: 0.1em;
	margin-bottom: 10px;
}
.reg-title {
	font-family: var(--serif);
	font-size: 22px;
	color: var(--slate);
	margin-bottom: 6px;
}
.reg-class {
	font-family: var(--mono);
	font-size: 12px;
	color: var(--muted);
	letter-spacing: 0.06em;
	margin-bottom: 14px;
}
.reg-body {
	font-size: 14px;
	color: var(--body);
	line-height: 1.7;
}

/* COMMERCIAL */
.commercial {
	background: var(--slate);
}
.comm-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
	gap: 2px;
	background: rgba(255, 255, 255, 0.06);
	border-radius: 8px;
	overflow: hidden;
	margin-bottom: 48px;
}
.cc {
	background: var(--slate-lt);
	padding: 36px 30px;
	transition: background 0.2s;
}
.cc:hover {
	background: rgba(0, 120, 138, 0.2);
}
.cc-label {
	font-family: var(--mono);
	font-size: 12px;
	color: rgba(255, 255, 255, 0.45);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin-bottom: 12px;
}
.cc-value {
	font-family: var(--serif);
	font-size: 40px;
	color: var(--gold-lt);
	line-height: 1;
	margin-bottom: 10px;
}
.cc-body {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.55);
	line-height: 1.7;
}
.roi-statement {
	background: rgba(0, 120, 138, 0.15);
	border-radius: 8px;
	border: 1px solid rgba(0, 120, 138, 0.3);
	padding: 30px;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 32px;
	align-items: center;
}
.roi-text h3 {
	font-family: var(--serif);
	font-size: 24px;
	color: var(--white);
	margin-bottom: 10px;
}
.roi-text p {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.75;
}
.roi-text p strong {
	color: var(--gold-lt);
	font-weight: 500;
}
.roi-num {
	text-align: center;
	border-left: 1px solid rgba(255, 255, 255, 0.12);
	padding-left: 20px;
	flex-shrink: 0;
}
.roi-big {
	font-family: var(--serif);
	font-size: 60px;
	color: var(--gold-lt);
	line-height: 1;
}
.roi-cap {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.35);
	margin-top: 6px;
}

/* LITERATURE */
.lit {
	background: var(--paper);
}
.lit-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(336px, 1fr));
	gap: 20px;
}
.lit-card {
	background: var(--white);
	border-radius: 8px;
	padding: 25px;
	border-top: 3px solid var(--teal);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.lit-topic {
	font-family: var(--mono);
	font-size: 14px;
	font-weight: 500;
	color: var(--teal);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-bottom: 10px;
}
.lit-title {
	font-size: 20px;
	font-weight: 600;
	color: var(--slate);
	margin-bottom: 8px;
	line-height: 1.5;
}
.lit-finding {
	font-size: 14px;
	color: var(--body);
	line-height: 1.7;
}
.lit-finding strong {
	color: var(--teal);
	font-weight: 600;
}

/* CONTACT */
.contact-s {
	background: var(--linen);
}
.contact-inner {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
	gap: 50px;
}
.contact-form {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.cf-row2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
	width: 100%;
	padding: 12px 16px;
	background: var(--white);
	border: 1px solid var(--rule);
	border-radius: 6px;
	color: var(--slate);
	font-family: var(--sans);
	font-size: 14px;
	outline: none;
	transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
	border-color: var(--teal);
}
.contact-form textarea {
	resize: vertical;
	min-height: 100px;
}
.cf-submit {
	background: var(--teal);
	color: var(--white);
	font-weight: 700;
	font-size: 14px;
	padding: 13px;
	border-radius: 6px;
	border: none;
	cursor: pointer;
	transition: background 0.2s;
}
.cf-submit:hover {
	background: var(--teal-lt);
}
.contact-info {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.ci {
	display: flex;
	gap: 14px;
}
.ci-icon {
	width: 40px;
	flex-shrink: 0;
}
.ci-icon img {
	width: inherit !important;
	height: auto !important;
}

.ci-label {
	font-size: 16px;
	font-weight: 700;
	color: var(--slate);
	margin-bottom: 4px;
}
.ci-val {
	font-size: 14px;
	color: var(--muted);
	line-height: 1.5;
}

/* FOOTER */
footer {
	background: var(--slate);
}
.container-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	padding: 50px 0;
}
.fl {
	font-size: 14px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.35);
}
.fl span {
	color: var(--teal-lt);
}
.fc {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.2);
}

/* REVEAL */
.r {
	opacity: 0;
	transform: translateY(18px);
	transition:
		opacity 0.65s var(--e),
		transform 0.65s var(--e);
}
.r.in {
	opacity: 1;
	transform: translateY(0);
}
.r1 {
	transition-delay: 0.08s;
}
.r2 {
	transition-delay: 0.16s;
}
.r3 {
	transition-delay: 0.24s;
}
.r4 {
	transition-delay: 0.32s;
}

.label-select {
	font-size: 14px;
	font-family: var(--sans);
	font-weight: 500;
	color: var(--slate);
}

.pediatric-select {
	margin-top: 5px;
}

.pop-up {
	position: fixed;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, .5);
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: .3s ease;
	padding: 15px;
	z-index: 10;
}

.pop-up.active {
	opacity: 1;
	visibility: visible;
}

.pop-up-container {
	max-width: 650px;
	width: 100%;
	padding: clamp(15px, calc(2.027px + 4.054vw), 30px);
	background: #fff;
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

.pop-up-close {
	width: clamp(25px, calc(23.182px + 0.568vw), 30px);
	height: clamp(25px, calc(23.182px + 0.568vw), 30px);
	cursor: pointer;
}

.pop-up-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
}

.pop-up-info-icon {
	width: clamp(50px, calc(18.525px + 9.836vw), 80px);
	height: clamp(50px, calc(18.525px + 9.836vw), 80px);
	border-radius: 50%;
	padding: 5px;
}

.pop-up-info-icon-success {
	background: rgba(33, 182, 0, 0.6);
}

.pop-up-info-icon-error {
	background: rgba(255, 17, 17, 0.6);
}

.pop-up-info-icon svg {
	fill: #fff;
	width: 100%;
	height: 100%;
}

.pop-up-info-text {
	font-size: clamp(28px, 7vw, 44px);
	color: var(--slate);
	line-height: 1.15;
	font-weight: 400;
	text-align: center;
}

.inputVal.has-error {
	box-shadow: 0 0 8px red;
}

/* RESPONSIVE */
@media (max-width: 1141px) {
	.nav-links {
		display: none;
	}
}
@media (max-width: 1017px) {
	.ab-item:nth-of-type(4) {
		border-right: none;
	}
}
@media (max-width: 960px) {
	.epi-grid {
    grid-template-columns: repeat(auto-fit, minmax(436px, 1fr));
    gap: 20px;
	}
	.container-footer {
		flex-direction: column;
		text-align: center;
	}
}
@media (max-width: 840px) {
	.hero-container {
		flex-wrap: wrap;
	}
	.hero-right {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		justify-content: flex-start;
	}
	.data-block:first-of-type,
	.data-block:nth-of-type(3) {
		border-left: none;
		padding-left: 0;
	}
	.patho-cols {
    grid-template-columns: repeat(auto-fit, minmax(254px, 1fr));
	}
}
@media (max-width: 825px) {
	.ab-item:nth-of-type(3) {
		border-right: none;
	}
	.ab-item:nth-of-type(4) {
		border-right: 1px solid rgba(255, 255, 255, 0.08);
	}
}
@media (max-width: 768px) {
	.contact-inner {
    grid-template-columns: repeat(1, 1fr);
	}
	.danger-grid {
    grid-template-columns: repeat(2, 1fr);
	}
	.bm-intro-row {
		grid-template-columns: repeat(1, 1fr);
	}
	.padding-vertical {
		padding: 50px 0;
	}
}
@media (max-width: 600px) {
	.protocol-vs {
    grid-template-columns: repeat(1, 1fr);
	}
	.patho-cols {
    grid-template-columns: repeat(1, 1fr);
	}
	.roi-statement {
    padding: 20px;
    grid-template-columns: 1fr;
    gap: 20px;
	}
	.roi-num {
		border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 20px;
    padding-left: 0;
	}
}
@media (max-width: 634px) {
	.ab-item:nth-of-type(2),
	.ab-item:nth-of-type(4) {
		border-right: none;
	}
	.ab-item:nth-of-type(3),
	.ab-item:nth-of-type(5) {
		border-right: 1px solid rgba(255, 255, 255, 0.08);
	}
}
@media (max-width: 550px) {
	.danger-grid {
    grid-template-columns: repeat(1, 1fr);
	}
}
@media (max-width: 465px) {
	.epi-grid {
		grid-template-columns: repeat(auto-fit, minmax(208px, 1fr));
	}
	.hero-ctas {
    flex-wrap: wrap;
	}
	.hero-right {
		grid-template-columns: repeat(1, 1fr);
	}
	.data-block:nth-of-type(2),
	.data-block:last-of-type {
		border-left: none;
		padding-left: 0;
	}
}
@media (max-width: 441px) {
	.ab-item:nth-of-type(1),
	.ab-item:nth-of-type(2),
	.ab-item:nth-of-type(3),
	.ab-item:nth-of-type(4),
	.ab-item:nth-of-type(5) {
		border-right: none;
	}
	.ab-item:nth-of-type(1),
	.ab-item:nth-of-type(2),
	.ab-item:nth-of-type(3),
	.ab-item:nth-of-type(4) {
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	}
}
@media (max-width: 420px) {
	.danger-grid {
    grid-template-columns: repeat(auto-fit, minmax(225px, 1fr));
	}
	.lit-grid {
    grid-template-columns: repeat(1, 1fr);
	}
}
@media (max-width: 393px) {
	.nav-cta {
    padding: 9px 15px;
	}
}
