/* ===== HOMEPAGE EXTRAS ===== */
.logo-img {
	height: 38px;
	width: auto;
}

/* HERO */
.hero {
	background: linear-gradient(140deg, #071B33 0%, #0D3B66 55%, #0A4A6E 100%);
	padding: 90px 0 72px;
	position: relative;
	overflow: hidden;
}

.hero::after {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at 75% 40%, rgba(0, 166, 166, 0.13) 0%, transparent 58%);
	pointer-events: none;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	position: relative;
	z-index: 1;
}

.hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 14px;
	border-radius: 20px;
	background: rgba(0, 166, 166, 0.15);
	color: var(--teal);
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 20px;
	border: 1px solid rgba(0, 166, 166, 0.3);
}

.hero h1 {
	color: white;
	font-size: clamp(2rem, 4vw, 3.1rem);
	font-style: normal;
	font-weight: 600;
	line-height: 130%;
	letter-spacing: -1.92px;
	margin-bottom: 10px;
}

.hero h1 .accent {
	color: var(--teal);
}

.hero-sub {
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 200%;
	color: rgba(255, 255, 255, 0.72);
	margin: 18px 0 32px;
}

.hero-ctas {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin-bottom: 40px;
}

.trust-row {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item {
	display: flex;
	align-items: center;
	gap: 7px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.9rem;
	font-weight: 600;
}

.trust-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--teal);
	flex-shrink: 0;
}

/* HERO VISUAL */
.hero-visual {
	position: relative;
}

.pathway-diagram {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	padding: 24px;
	backdrop-filter: blur(10px);
}

.pathway-title {
	color: rgba(255, 255, 255, 0.4);
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.pathway-steps {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.pathway-step {
	display: flex;
	align-items: center;
	gap: 12px;
	background: rgba(255, 255, 255, 0.04);
	border-radius: 10px;
	padding: 10px 14px;
	border: 1px solid rgba(255, 255, 255, 0.07);
	transition: all 0.3s;
}

.pathway-step:hover {
	background: rgba(0, 166, 166, 0.1);
	border-color: rgba(0, 166, 166, 0.3);
}

.step-icon {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
}

.step-icon img {
	max-width: 50px;
	max-height: 50px;
	width: auto;
	height: auto;
}

.img-badge-icon {
	border: 1px solid #E2E2E4;
	background: #FFF;
	border-radius: 24px;
	width: 100%;
	margin-bottom: 15px;
}

.physician-visibility-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center
}

.step-label {
	color: rgba(255, 255, 255, 0.82);
	font-size: 1rem;
	font-weight: 500;
}

.step-check {
	margin-left: auto;
	color: var(--teal);
	font-size: 12px;
	font-weight: 700;
}

.pathway-connector {
	width: 2px;
	height: 7px;
	background: rgba(0, 166, 166, 0.25);
	margin-left: 27px;
}

.dash-mini {
	margin-top: 14px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 14px;
	padding: 16px;
}

.dash-mini-row {
	display: flex;
	gap: 10px;
	margin-bottom: 10px;
}

.dash-mini-stat {
	flex: 1;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 8px;
	padding: 10px;
}

.dash-mini-label {
	color: rgba(255, 255, 255, 0.4);
	font-size: 0.65rem;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 4px;
}

.dash-mini-val {
	color: white;
	font-size: 1.1rem;
	font-weight: 800;
}

.dash-mini-val span {
	font-size: 0.65rem;
	color: #3BB273;
	margin-left: 3px;
}

.patient-row-mini {
	display: grid;
	grid-template-columns: 2fr 1.5fr 1fr;
	gap: 8px;
	padding: 8px 10px;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.patient-row-mini span {
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.73rem;
}

.status-badge {
	padding: 2px 7px;
	border-radius: 20px;
	font-size: 0.65rem;
	font-weight: 700;
	display: inline-block;
}

.status-green {
	background: rgba(59, 178, 115, 0.2);
	color: #3BB273;
}

.status-teal {
	background: rgba(0, 166, 166, 0.2);
	color: #00A6A6;
}

.status-gold {
	background: rgba(244, 197, 66, 0.2);
	color: #F4C542;
}

/* IN-PERSON BADGE */
.inperson-banner {
	background: linear-gradient(90deg, rgba(0, 166, 166, 0.12), rgba(0, 119, 182, 0.12));
	border: 1px solid rgba(0, 166, 166, 0.25);
	border-radius: 12px;
	padding: 18px 24px;
	display: flex;
	align-items: center;
	gap: 16px;
}

.inperson-icon {
	width: 100px;
	height: auto;
	border-radius: 12px;
}

.inperson-text h4 {
	color: var(--navy);
	font-size: 20px;
	margin-bottom: 4px;
}

.inperson-text p {
	font-size: 16px;
	margin: 0;
}

.img-fluid {
	max-width: 100%;
	height: auto;
	border-radius: 20px;
}

.billing-icon {
	max-width: 100%;
	height: auto;
	border-radius: 20px;
}

/* PROBLEM SECTION */
.section-problem {
	background: var(--navy);
}

.problem-cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
	margin-top: 40px;
}

.problem-card {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 14px;
	padding: 20px 16px;
	transition: all 0.2s;
}

.problem-card:hover {
	background: rgba(192, 57, 43, 0.1);
	border-color: rgba(192, 57, 43, 0.3);
}

.problem-icon {
	font-size: 20px;
	margin-bottom: 10px;
}

.problem-card h4 {
	color: white;
	margin-bottom: 5px;
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: 39.6px;
}

.problem-card p {
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 200%;
	letter-spacing: -0.07px;
	line-height: 1.6;
}

.broken-flow-wrap {
	margin-top: 40px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 14px;
	padding: 24px;
	text-align: center;
}

.broken-flow-title {
	color: #fff;
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 16px;
}

.broken-flow {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px;
}

.flow-node {
	padding: 7px 12px;
	border-radius: 8px;
	font-size: 0.77rem;
	font-weight: 600;
	background: rgba(255, 255, 255, 0.06);
	color: rgba(255, 255, 255, 0.65);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.flow-node.bad {
	background: rgba(192, 57, 43, 0.15);
	color: #E74C3C;
	border-color: rgba(192, 57, 43, 0.3);
}

.flow-arrow {
	color: rgba(255, 255, 255, 0.2);
	font-size: 14px;
	margin: 0 4px;
}

/* SOLUTION */
.solution-timeline {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.solution-step {
	border-radius: 24px;
	border: 1px solid #E2E2E4;
	background: #FFF;
	padding: 26px 24px 30px;
	height: 100%;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-step:hover {
	border-color: var(--teal);
	box-shadow: 0 4px 18px rgba(0, 166, 166, 0.1);
}

.step-number {
	position: absolute;
	top: -12px;
	left: 18px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--teal);
	color: white;
	font-size: 1rem;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
}

.solution-step h4 {
	margin-top: 8px;
	margin-bottom: 0px;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: 39.6px;
	color: #0f172a;
}

.solution-step p {
	color: #4A4A4A;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 200%;
	letter-spacing: -0.07px;
}

/* FEATURES */
.features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.feature-card {
	padding: 26px 22px;
	border-radius: 16px;
	border: 0.8px solid #E8E8F0;
	background: #FFF;
	box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.06);
	transition: all 0.25s;
}

.feature-card:hover {
	border-color: var(--teal);
	box-shadow: 0 6px 24px rgba(0, 119, 182, 0.09);
	transform: translateY(-2px);
}

.feature-icon {
	width: 46px;
	height: 46px;
	border-radius: 12px;
	background: linear-gradient(135deg, rgba(0, 166, 166, 0.12), rgba(0, 119, 182, 0.12));
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	margin-bottom: 14px;
	border: 1px solid rgba(0, 166, 166, 0.18);
}

.feature-card h3 {
	color: #333;
	font-size: 20px;
	font-style: normal;
	text-align: left;
	font-weight: 700;
	line-height: 36px;
}

.feature-card p {
	color: #4A4A4A;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 200%;
}

/* IN-PERSON HIGHLIGHT SECTION */
.inperson-section {
	background: linear-gradient(135deg, var(--navy) 0%, #0D3B66 100%);
}

.inperson-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.inperson-points {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-top: 28px;
}

.inperson-point {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 12px;
	padding: 16px 18px;
}

.inperson-point-icon {
	font-size: 22px;
	flex-shrink: 0;
}

.inperson-point h4 {
	color: white;
	font-size: 1rem;
	font-style: normal;
	font-weight: 600;
	line-height: 39.6px;
	margin-bottom: 4px;
}

.inperson-point p {
	color: rgba(255, 255, 255, 0.6);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 200%;
	letter-spacing: -0.07px;
	line-height: 1.6;
}

.inperson-visual {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	padding: 28px;
}

.visit-steps {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.visit-step {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	padding: 14px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.visit-step:last-child {
	border-bottom: none;
}

.visit-step-num {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--teal);
	color: white;
	font-size: 0.75rem;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.visit-step-text h5 {
	color: white;
	font-size: 1rem;
	font-style: normal;
	font-weight: 600;
	line-height: 24px;
	margin-bottom: 3px;
}

.visit-step-text p {
	color: rgba(255, 255, 255, 0.55);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 200%;
	letter-spacing: -0.07px;
	line-height: 1.6;
}

/* APPLIANCES */
.appliance-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

.appliance-card {
	background: white;
	border: 1px solid var(--border);
	border-radius: 14px;
	overflow: hidden;
	transition: all 0.25s;
}

.appliance-card:hover {
	box-shadow: 0 6px 24px rgba(7, 27, 51, 0.1);
	transform: translateY(-2px);
}

.appliance-header {
	padding: 24px 18px 18px;
	background: linear-gradient(135deg, var(--navy), #0D3B66);
	text-align: center;
}

.appliance-emoji {
	font-size: 32px;
	display: block;
	margin-bottom: 10px;
}

.appliance-header h3 {
	color: #FFF;
	text-align: center;
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: 150%;
}

.appliance-body {
	padding: 16px;
}

.appliance-features {
	list-style: none;
}

.appliance-features li {
	border-bottom: 1px solid var(--border);
	display: flex;
	align-items: center;
	gap: 7px;
	padding: 12px 10px;
	color: #45556C;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
}

.appliance-features li:last-child {
	border-bottom: none;
}

.appliance-features li::before {
	content: '✓';
	color: var(--trust-green);
	font-weight: 700;
	font-size: 11px;
}

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

.billing-card {
	border-radius: 16px;
	border: 0.8px solid #F3F4F6;
	background: #FFF;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
	padding: 30px 20px;
	height: 100%;
}

.billing-icon {
	font-size: 26px;
	margin-bottom: 12px;
}

.billing-card h4 {
	color: #333;
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: 28px;
	margin-bottom: 10px;
}

.billing-card p {
	color: #4A4A4A;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 200%;
}

/* COMPARISON */
.comparison-wrap {
	overflow-x: auto;
	border-radius: 14px;
	border: 1px solid var(--border);
}

.comparison-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.88rem;
}

.comparison-table th {
	padding: 14px 18px;
	text-align: left;
	font-size: 16px;
	font-weight: 700;
	border-bottom: 2px solid var(--border);
}

.comparison-table th:first-child {
	color: var(--text-light);
}

.comparison-table th:nth-child(2) {
	color: var(--text-mid);
	background: #F9FBFD;
}

.comparison-table th:nth-child(3) {
	color: var(--teal);
	background: rgba(0, 166, 166, 0.06);
}

.comparison-table td {
	padding: 16px;
	border-bottom: 1px solid var(--border);
	vertical-align: middle;
	color: #45556C;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
}

.comparison-table td:nth-child(2) {
	background: #F9FBFD;
	color: var(--text-mid);
}

.comparison-table td:nth-child(3) {
	background: rgba(0, 166, 166, 0.04);
}

.comparison-table tr:last-child td {
	border-bottom: none;
}

.check {
	color: var(--trust-green);
	font-weight: 700;
}

.cross {
	color: var(--alert-red);
}

/* UPDATE TIMELINE */
.update-timeline {
	position: relative;
}

.update-timeline::before {
	content: '';
	position: absolute;
	left: 20px;
	top: 0;
	bottom: 0;
	width: 2px;
	background: var(--border);
}

.update-item {
	display: flex;
	gap: 18px;
	padding: 14px 0;
}

.update-dot {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: white;
	border: 2px solid var(--teal);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	flex-shrink: 0;
	position: relative;
	z-index: 1;
}

.update-item.completed .update-dot {
	background: var(--teal);
	color: white;
	font-size: 13px;
	font-weight: 800;
}

.update-content h4 {
	color: var(--navy);
	margin-bottom: 3px;
	font-size: 20px;
}

.update-content p {
	font-size: 1rem;
}

/* AWARDS */
.awards-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

.award-card {
	background: white;
	border: 0.8px solid #E8E8F0;
	background: #FFF;
	border-radius: 14px;
	padding: 20px 16px;
	text-align: center;
	transition: all 0.2s;
}

.award-card:hover {
	border-color: var(--gold);
	box-shadow: 0 4px 16px rgba(244, 197, 66, 0.12);
}

.award-icon {
	font-size: 30px;
	margin-bottom: 10px;
}

.award-card h4 {
	color: var(--navy);
	font-size: 16px;
	margin-bottom: 12px;
}

.award-card p {
	font-size: 1rem;
	color: var(--text-light);
}

/* PARTNERS LOGO STRIP */
.partners-section {
	background: var(--soft-gray);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}

.partners-label {
	text-align: center;
	color: var(--text-light);
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 28px;
}

.partner-logos {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	align-items: center;
	justify-content: center;
}

.partner-logo-item {
	background: white;
	border: 1px solid var(--border);
	border-radius: 10px;
	padding: 10px 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s;
	min-width: 210px;
	height: 80px;
}

.partner-logo-item:hover {
	border-color: var(--teal);
	box-shadow: 0 2px 12px rgba(0, 166, 166, 0.1);
}

.partner-logo-item img {
	max-height: 100px;
	max-width: 120px;
	width: auto;
	object-fit: contain;
	opacity: 1;
	transition: all 0.2s;
}

.partner-logo-item:hover img {
	filter: grayscale(0%);
	opacity: 1;
}

/* TRUST BADGES */
.trust-badges {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

.trust-badge {
	padding: 22px 16px;
	text-align: left;
	transition: all 0.2s;
	border-radius: 24px;
	border: 1px solid #E2E2E4;
	background: #FFF;
	padding: 20px;
	height: 100%;
}

.trust-badge:hover {
	border-color: var(--teal);
}

.trust-badge-icon {
	font-size: 26px;
	margin-bottom: 10px;
}

.trust-badge h4 {
	color: #060B13;
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: 39.6px;
	margin-bottom: 5px;
}

.trust-badge p {
	color: #4A4A4A;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 200%;
	letter-spacing: -0.07px;
}

/* ECOSYSTEM */
.ecosystem-wrap {
	background: var(--navy);
	border-radius: 20px;
	padding: 44px;
	position: relative;
	overflow: hidden;
}

.ecosystem-wrap::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 50% 50%, rgba(0, 166, 166, 0.09) 0%, transparent 65%);
	pointer-events: none;
}

.ecosystem-center {
	text-align: center;
	margin-bottom: 32px;
}

.ecosystem-badge {
	display: inline-block;
	padding: 12px 26px;
	border-radius: 50px;
	background: var(--teal);
	color: white;
	font-weight: 800;
	font-size: 1rem;
}

.ecosystem-nodes {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
}

.ecosystem-node {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 12px;
	padding: 14px;
	text-align: center;
	transition: all 0.2s;
}

.ecosystem-node:hover {
	background: rgba(0, 166, 166, 0.12);
	border-color: rgba(0, 166, 166, 0.35);
}

.ecosystem-node-icon {
	font-size: 20px;
	margin-bottom: 7px;
}

.ecosystem-node-label {
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.9rem;
	font-weight: 600;
}

/* PATIENT CARDS */
.patient-cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
}

.patient-card {
	border-radius: 24px;
	background: #F5F6F9;
	padding: 28px;
}

.patient-card:hover {
	border-color: var(--medical-blue);
	box-shadow: 0 4px 14px rgba(0, 119, 182, 0.09);
}

.patient-icon {
	font-size: 22px;
	margin-bottom: 9px;
}

.patient-card h4 {
	color: #060B13;
	font-size: 26px;
	font-style: normal;
	font-weight: 700;
	line-height: 39.6px;
	margin-bottom: 10px;
}

.patient-card p {
	color: #909090;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 170%;
	letter-spacing: -0.07px;
	margin-bottom: 0;
}

/* PARTNER TABS */
.partner-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 28px;
}

.tab-btn {
	padding: 12px 22px;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 600;
	border: 1px solid var(--border);
	background: white;
	color: var(--text-mid);
	cursor: pointer;
	transition: all 0.2s;
}

.tab-btn.active {
	background: var(--teal);
	color: white;
	border-color: var(--teal);
}

.tab-content {
	display: none;
}

.tab-content.active {
	display: block;
}

.partner-content {
	background: var(--soft-gray);
	border-radius: 16px;
	padding: 32px;
	border: 1px solid var(--border);
}

.partner-content h3 {
	color: var(--navy);
	font-size: 24px;
	margin-bottom: 16px;
}

.partner-content p {
	color: #4A4A4A;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 170%;
	margin-bottom: 18px;
}

.partner-bullets {
	list-style: none;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 9px;
	margin-bottom: 22px;
}

.partner-bullets li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	color: #4A4A4A;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 200%;
	letter-spacing: -0.07px;
}

.partner-bullets li::before {
	content: '✓';
	color: var(--trust-green);
	font-weight: 800;
	margin-top: 1px;
	flex-shrink: 0;
}

/* FAQ */
.faq-list {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	border-bottom: 1px solid var(--border);
}

.faq-question {
	width: 100%;
	text-align: left;
	padding: 18px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: none;
	border: none;
	cursor: pointer;
	font-size: 18px;
	font-weight: 600;
	color: var(--navy);
	font-family: inherit;
}

.faq-question:hover {
	color: var(--teal);
}

.faq-icon {
	color: var(--teal);
	font-size: 20px;
	transition: transform 0.2s;
	flex-shrink: 0;
}

.faq-item.open .faq-icon {
	transform: rotate(45deg);
}

.faq-answer {
	display: none;
	padding-bottom: 18px;
}

.faq-item.open .faq-answer {
	display: block;
}

.faq-answer p {
	font-size: 1rem;
	font-style: normal;
	font-weight: 400;
	line-height: 200%;
	letter-spacing: -0.07px;
	color: #4A4A4A;
}

/* CTA SECTION */
.section-cta {
	background: linear-gradient(135deg, var(--navy) 0%, var(--deep-blue) 100%);
	padding: 80px 0;
	text-align: center;
}

.section-cta h2 {
	color: white;
	margin-bottom: 12px;
}

.section-cta p {
	color: rgba(255, 255, 255, 0.7);
	font-size: 18px;
	margin-bottom: 32px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.cta-buttons {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 36px;
}

.cta-form-wrap {
	max-width: 620px;
	margin: 0 auto;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 16px;
	padding: 30px;
}

.form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 13px;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.form-group label {
	color: rgba(255, 255, 255, 0.65);
	font-size: 1rem;
	font-weight: 600;
	text-align: left;
}

.form-group input,
.form-group select,
.form-group textarea {
	padding: 10px 13px;
	border-radius: 8px;
	font-size: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: rgba(255, 255, 255, 0.07);
	color: white;
	font-family: inherit;
	outline: none;
	transition: border-color 0.2s;
}

.form-group input::placeholder {
	color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	border-color: var(--teal);
}

.form-group select option {
	background: var(--navy);
}

.form-group.full {
	grid-column: 1/-1;
}

.form-submit {
	width: 100%;
	padding: 13px;
	border-radius: 10px;
	background: var(--teal);
	color: white;
	font-weight: 700;
	font-size: 0.97rem;
	border: none;
	cursor: pointer;
	transition: all 0.2s;
	margin-top: 16px;
}

.form-submit:hover {
	background: #008F8F;
}

/* NAV */
footer ol,
ul {
	padding-left: 0rem;
}

nav {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(7, 27, 51, 0.97);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 24px;
	max-width: 1180px;
	margin: 0 auto;
	height: 66px;
}

.nav-logo {
	display: flex;
	align-items: center;
	text-decoration: none;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 26px;
	list-style: none;
	margin-bottom: 0rem;
}

.nav-links a {
	color: rgba(255, 255, 255, 0.78);
	text-decoration: none;
	font-size: 0.86rem;
	font-weight: 500;
	transition: color 0.2s;
}

.nav-links a:hover {
	color: white;
}

.nav-ctas {
	display: flex;
	gap: 10px;
	align-items: center;
}

.btn-nav-secondary {
	padding: 8px 15px;
	border-radius: 8px;
	font-size: 0.83rem;
	font-weight: 600;
	color: white;
	border: 1px solid rgba(255, 255, 255, 0.22);
	text-decoration: none;
	transition: all 0.2s;
}

.btn-nav-secondary:hover {
	border-color: var(--teal);
	color: var(--teal);
}

.btn-nav-primary {
	padding: 8px 17px;
	border-radius: 8px;
	font-size: 0.83rem;
	font-weight: 700;
	background: var(--teal);
	color: white;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-nav-primary:hover {
	background: #008F8F;
}

/* BUTTONS */
.btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 13px 26px;
	border-radius: 10px;
	background: var(--teal);
	color: white;
	font-weight: 700;
	font-size: 0.97rem;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: all 0.2s;
}

.btn-primary:hover {
	background: #008F8F;
	transform: translateY(-1px);
	box-shadow: 0 5px 20px rgba(0, 166, 166, 0.3);
}

.btn-secondary {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 13px 26px;
	border-radius: 10px;
	background: transparent;
	color: white;
	font-weight: 600;
	font-size: 0.97rem;
	text-decoration: none;
	border: 1.5px solid rgba(255, 255, 255, 0.32);
	cursor: pointer;
	transition: all 0.2s;
}

.btn-secondary:hover {
	border-color: white;
	background: rgba(255, 255, 255, 0.07);
}

.btn-outline {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 12px 24px;
	border-radius: 10px;
	background: transparent;
	color: var(--teal);
	font-weight: 600;
	font-size: 0.92rem;
	text-decoration: none;
	border: 1.5px solid var(--teal);
	cursor: pointer;
	transition: all 0.2s;
}

.btn-outline:hover {
	background: var(--teal);
	color: white;
}

/* FOOTER */
footer {
	background: var(--navy);
	border-top: 1px solid rgba(255, 255, 255, 0.07);
	padding: 56px 0 28px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 36px;
	margin-bottom: 44px;
}

.footer-brand p {
	color: rgba(255, 255, 255, 0.65);
	font-size: 1rem;
	margin-top: 14px;
	line-height: 1.6;
	max-width: 250px;
}

.footer-col h5 {
	color: rgba(255, 255, 255, 1);
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	margin-bottom: 14px;
}

.footer-col ul {
	list-style: none;
}

.footer-col ul li {
	margin-bottom: 9px;
}

.footer-col ul li a {
	color: rgba(255, 255, 255, 0.65);
	font-size: 1rem;
	text-decoration: none;
	transition: color 0.2s;
}

.footer-col ul li a:hover {
	color: var(--teal);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.07);
	padding-top: 22px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 24px;
}

.footer-bottom p {
	color: rgba(255, 255, 255, 0.65);
	font-size: 0.875rem;
	line-height: 1.6;
}

.footer-disclaimer {
	color: rgba(255, 255, 255, 0.28);
	font-size: 0.875rem;
	line-height: 1.6;
	max-width: 700px;
}

/* STICKY MOBILE CTA */
.sticky-cta {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 999;
	background: var(--navy);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 11px 24px;
	display: none;
}

.sticky-cta-inner {
	max-width: 1180px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
}

.sticky-cta p {
	color: rgba(255, 255, 255, 0.75);
	font-size: 0.87rem;
	font-weight: 500;
}

.sticky-cta-btns {
	display: flex;
	gap: 10px;
}

@media (max-width:768px) {
	.sticky-cta {
		display: block;
	}
}

/* SECTION */
.section {
	padding: 76px 0;
}

.section-sm {
	padding: 44px 0;
}



.section-eyebrow {
	display: inline-block;
	padding: 8px 20px;
	border-radius: 20px;
	background: rgba(0, 166, 166, 0.1);
	color: var(--teal);
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 16px;
	border: 1px solid rgba(0, 166, 166, 0.2);
}

.section-header {
	margin-bottom: 44px;
}

.section-header h2 {
	margin-bottom: 12px;
	color: var(--navy);
	font-size: 40px;
	font-style: normal;
	font-weight: 700;
	line-height: 150%;
}

.section-header p {
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 200%;
	margin: auto;
}

.section-header.center {
	text-align: center;
}

.section-header.center p {
	margin: 0 auto;
}

/* RESPONSIVE */
@media (max-width:1024px) {

	.hero-grid,
	.inperson-grid {
		grid-template-columns: 1fr;
	}

	.hero-visual {
		display: none;
	}

	.features-grid,
	.billing-grid {
		grid-template-columns: 1fr 1fr;
	}

	.problem-cards,
	.patient-cards {
		grid-template-columns: repeat(2, 1fr);
	}

	.appliance-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.trust-badges,
	.awards-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.ecosystem-nodes {
		grid-template-columns: repeat(3, 1fr);
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width:768px) {
	.section {
		padding: 52px 0;
	}

	.nav-links {
		display: none;
	}

	.features-grid,
	.billing-grid,
	.solution-timeline {
		grid-template-columns: 1fr;
	}

	.problem-cards,
	.patient-cards,
	.trust-badges,
	.awards-grid {
		grid-template-columns: 1fr;
	}

	.appliance-grid {
		grid-template-columns: 1fr;
	}

	.ecosystem-nodes {
		grid-template-columns: 1fr;
	}

	.tab-btn {
		display: block;
		width: 100%;
		text-align: center;
	}

	.footer-grid {
		grid-template-columns: 1fr;
	}

	.footer-bottom {
		flex-direction: column;
	}

	.hero-ctas,
	.cta-buttons {
		flex-direction: column;
		align-items: flex-start;
	}

	.cta-buttons {
		align-items: center;
	}

	.form-grid {
		grid-template-columns: 1fr;
	}

	.partner-bullets {
		grid-template-columns: 1fr;
	}

	.hero {
		padding: 50px 0 72px;
	}

	.physician-visibility-grid {
		grid-template-columns: 1fr;
	}

	.section-header h2 {
		font-size: 32px;
	}

	.sticky-cta p {
		margin-bottom: 0px;
		font-size: 0.6rem;
	}

	footer {
		padding-bottom: 60px;
	}
}