:root {
	--teal: #0d7a6e;
	--teal-deep: #0a5c52;
	--teal-light: #14a394;
	--mint-bg: #f3faf8;
	--mint-card: #eef8f5;
	--white: #ffffff;
	--coral: #e8604c;
	--coral-light: #ef7c6b;
	--coral-bg: #fdeae6;
	--gold: #c9a227;
	--gold-light: #e0bc4a;
	--text: #1c2b29;
	--text-muted: #5b7570;
	--border: #d9ece7;
	--radius: 12px;
	--shadow: 0 2px 16px rgba(13, 122, 110, 0.08);
	--shadow-hover: 0 8px 32px rgba(13, 122, 110, 0.16);
	--font-display: "Bahnschrift", "Segoe UI Semibold", "Arial Narrow", sans-serif;
	--font-body: "Segoe UI", system-ui, sans-serif;
}
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
html {
	scroll-behavior: smooth;
}
body {
	font-family: var(--font-body);
	background: var(--mint-bg);
	color: var(--text);
	line-height: 1.65;
}
h1,
h2,
h3,
h4 {
	font-family: var(--font-display);
	letter-spacing: 0.2px;
}

.cross-icon {
	display: inline-block;
	position: relative;
	width: 16px;
	height: 16px;
}
.cross-icon::before,
.cross-icon::after {
	content: "";
	position: absolute;
	background: currentColor;
}
.cross-icon::before {
	width: 100%;
	height: 30%;
	top: 35%;
	left: 0;
}
.cross-icon::after {
	width: 30%;
	height: 100%;
	left: 35%;
	top: 0;
}

header {
	background: var(--white);
	border-bottom: 2px solid var(--teal);
	position: sticky;
	top: 0;
	z-index: 100;
	box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
}
.header-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 24px;
	max-width: 1200px;
	margin: 0 auto;
}
.logo {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: var(--text);
}
.logo-icon {
	width: 40px;
	height: 40px;
	background: var(--teal);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}
.logo-icon .cross-icon {
	width: 20px;
	height: 20px;
}
.logo-text {
	font-family: var(--font-display);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2;
	color: var(--teal-deep);
	letter-spacing: 0.4px;
}
.logo-text span {
	display: block;
	font-size: 11px;
	font-weight: 400;
	color: var(--text-muted);
	font-family: var(--font-body);
	letter-spacing: 0;
}
nav {
	display: flex;
	gap: 6px;
}
nav a {
	color: var(--text-muted);
	text-decoration: none;
	padding: 8px 14px;
	border-radius: 6px;
	font-size: 14px;
	transition: all 0.2s;
}
nav a:hover,
nav a.active {
	background: var(--mint-card);
	color: var(--teal-deep);
}
.header-phone {
	color: var(--teal-deep);
	font-weight: 700;
	font-size: 15px;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 6px;
}
.header-phone::before {
	content: "☎";
	font-size: 16px;
}

.hero {
	background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal) 55%, #128a7c 100%);
	color: #fff;
	position: relative;
}
.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	opacity: 0.06;
	background-image:
		radial-gradient(circle at 10% 20%, #fff 1.5px, transparent 1.5px), radial-gradient(circle at 80% 60%, #fff 1.5px, transparent 1.5px),
		radial-gradient(circle at 50% 90%, #fff 1.5px, transparent 1.5px);
	background-size: 60px 60px;
	pointer-events: none;
}
.hero-grid {
	position: relative;
	z-index: 1;
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	align-items: center;
	gap: 40px;
	padding: 52px 24px;
}
.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(255, 255, 255, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 20px;
	padding: 5px 14px;
	font-size: 13px;
	margin-bottom: 18px;
}
.hero-badge .cross-icon {
	width: 12px;
	height: 12px;
}
h1 {
	font-size: clamp(24px, 3.4vw, 36px);
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 16px;
	letter-spacing: 0.3px;
}
.hero-sub {
	font-size: 16px;
	opacity: 0.88;
	max-width: 540px;
	margin-bottom: 26px;
	font-family: var(--font-body);
}
.hero-stats {
	display: flex;
	gap: 28px;
	flex-wrap: wrap;
	margin-top: 28px;
}
.hero-stat strong {
	display: block;
	font-family: var(--font-display);
	font-size: 25px;
	font-weight: 700;
	color: #fff;
}
.hero-stat span {
	font-size: 12px;
	opacity: 0.8;
}
.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 13px 26px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 15px;
	text-decoration: none;
	transition: all 0.2s;
	cursor: pointer;
	border: none;
}
.btn-primary {
	background: var(--coral);
	color: #fff;
}
.btn-primary:hover {
	background: var(--coral-light);
	transform: translateY(-1px);
	box-shadow: 0 8px 20px rgba(232, 96, 76, 0.35);
}
.btn-outline {
	background: transparent;
	color: #fff;
	border: 2px solid rgba(255, 255, 255, 0.45);
}
.btn-outline:hover {
	border-color: #fff;
	background: rgba(255, 255, 255, 0.1);
}
.hero-visual {
	display: flex;
	justify-content: center;
	align-items: center;
}
.hero-visual svg {
	width: 100%;
	max-width: 340px;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.urgent-bar {
	background: var(--coral);
	color: #fff;
	padding: 18px 0;
}
.urgent-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
	text-align: center;
}
.urgent-inner strong {
	font-family: var(--font-display);
	font-size: 16px;
	letter-spacing: 0.3px;
}
.urgent-inner span {
	font-size: 14px;
	opacity: 0.92;
}
.urgent-phone {
	background: #fff;
	color: var(--coral);
	padding: 9px 22px;
	border-radius: 8px;
	font-weight: 700;
	font-size: 15px;
	text-decoration: none;
}

.section {
	padding: 52px 0;
}
.section-header {
	text-align: center;
	margin-bottom: 36px;
}
.section-header h2 {
	font-size: clamp(21px, 2.8vw, 29px);
	font-weight: 700;
	color: var(--teal-deep);
	margin-bottom: 8px;
	letter-spacing: 0.3px;
}
.section-header p {
	color: var(--text-muted);
	font-size: 15.5px;
	max-width: 600px;
	margin: 0 auto;
	font-family: var(--font-body);
}
.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--font-display);
	font-size: 11.5px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1.6px;
	color: var(--teal);
	background: var(--mint-card);
	padding: 4px 12px;
	border-radius: 20px;
	margin-bottom: 10px;
}

.rating-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.clinic-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 24px;
	display: grid;
	grid-template-columns: 56px 100px 1fr auto;
	gap: 20px;
	align-items: start;
	box-shadow: var(--shadow);
	transition: all 0.25s;
	position: relative;
	overflow: hidden;
}
.clinic-photo {
	width: 100px;
	height: 100px;
	border-radius: 10px;
	overflow: hidden;
	flex-shrink: 0;
	background: var(--mint-card);
}
.clinic-photo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}
.clinic-info {
	min-width: 0;
}
.clinic-card:hover {
	box-shadow: var(--shadow-hover);
	transform: translateY(-2px);
	border-color: var(--teal-light);
}
.clinic-card.top1 {
	border-color: var(--gold);
	border-width: 2px;
	background: linear-gradient(to right, #fdf9ec 0%, #fff 60%);
}
.clinic-card.top1::before {
	content: "ЛИДЕР РЕЙТИНГА";
	position: absolute;
  top: 25px;
  right: -52px;
	background: var(--gold);
	color: #fff;
	font-size: 9px;
	font-weight: 700;
	padding: 3px 40px;
	transform: rotate(45deg);
	letter-spacing: 1px;
	font-family: var(--font-display);
}
.rank-badge {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-display);
	font-size: 19px;
	font-weight: 700;
	flex-shrink: 0;
}
.rank-1 {
	background: linear-gradient(135deg, #f0d35a, var(--gold));
	color: #5c4400;
	position: relative;
}
.rank-1::after {
	content: "★";
	position: absolute;
	bottom: -4px;
	right: -2px;
	font-size: 12px;
}
.rank-2 {
	background: linear-gradient(135deg, #d4e8e3, #b8d8d1);
	color: var(--teal-deep);
}
.rank-3 {
	background: linear-gradient(135deg, #e8b088, #d99564);
	color: #fff;
}
.rank-other {
	background: var(--mint-card);
	color: var(--teal-deep);
	font-size: 15px;
}
.clinic-info h3 {
	font-family: var(--font-display);
	font-size: 17.5px;
	font-weight: 600;
	color: var(--teal-deep);
	margin-bottom: 6px;
	letter-spacing: 0.2px;
	line-height: 1.3;
	word-break: break-word;
}
.clinic-info h3 a {
	color: inherit;
	text-decoration: none;
}
.clinic-info h3 a:hover {
	color: var(--teal);
}
.stars {
	display: flex;
	gap: 2px;
	align-items: center;
	margin-bottom: 8px;
}
.stars .s {
	color: var(--gold);
	font-size: 16px;
}
.stars .score {
	font-weight: 700;
	font-size: 15px;
	color: var(--text);
	margin-left: 6px;
}
.stars .cnt {
	font-size: 13px;
	color: var(--text-muted);
	margin-left: 4px;
}
.tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 10px;
}
.tag {
	font-size: 12px;
	padding: 3px 10px;
	border-radius: 20px;
	background: var(--mint-card);
	color: var(--teal-deep);
	font-weight: 500;
}
.tag.coral {
	background: var(--coral-bg);
	color: var(--coral);
}
.tag.gold {
	background: #fbf3de;
	color: #8a6d10;
}
.clinic-desc {
	font-size: 14px;
	color: var(--text-muted);
	line-height: 1.6;
	font-family: var(--font-body);
}
.clinic-features {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4px;
	margin-top: 10px;
}
.clinic-feature {
	font-size: 13px;
	color: var(--text-muted);
	display: flex;
	align-items: center;
	gap: 5px;
}
.clinic-feature::before {
	content: "✓";
	color: var(--teal);
	font-weight: 700;
	flex-shrink: 0;
}
.clinic-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 10px;
}
.clinic-meta-item {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 13px;
	color: var(--text-muted);
}
.clinic-price {
	font-size: 13px;
	font-weight: 700;
	color: var(--coral);
	margin-top: 6px;
}
.clinic-actions {
	display: flex;
	flex-direction: column;
	gap: 8px;
	align-items: flex-end;
	min-width: 160px;
}
.btn-call {
	background: var(--teal);
	color: #fff;
	padding: 10px 20px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	text-align: center;
	transition: background 0.2s;
}
.btn-call:hover {
	background: var(--teal-deep);
}
.btn-detail {
	background: transparent;
	border: 1px solid var(--border);
	color: var(--text);
	padding: 9px 20px;
	border-radius: 8px;
	font-size: 13px;
	text-decoration: none;
	text-align: center;
	transition: all 0.2s;
}
.btn-detail:hover {
	border-color: var(--teal);
	color: var(--teal-deep);
}
.license-badge {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 12px;
	color: var(--teal-deep);
	background: var(--mint-card);
	padding: 4px 10px;
	border-radius: 6px;
	font-weight: 500;
}

.process-steps {
	display: flex;
	flex-direction: column;
	gap: 0;
	max-width: 760px;
	margin: 0 auto;
}
.process-step {
	display: grid;
	grid-template-columns: 60px 1fr;
	gap: 20px;
	padding: 20px 0;
	position: relative;
}
.process-step:not(:last-child)::after {
	content: "";
	position: absolute;
	left: 29px;
	top: 60px;
	bottom: -4px;
	width: 2px;
	background: var(--border);
}
.process-num {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: var(--teal);
	color: #fff;
	font-family: var(--font-display);
	font-size: 20px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	z-index: 1;
}
.process-num svg {
	width: 26px;
	height: 26px;
}
.process-body h4 {
	font-size: 16px;
	font-weight: 700;
	color: var(--teal-deep);
	margin-bottom: 6px;
	font-family: var(--font-display);
}
.process-body p {
	font-size: 14.5px;
	color: var(--text-muted);
	line-height: 1.7;
}

.reject-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 18px;
}
.reject-card {
	background: var(--white);
	border: 1px solid var(--coral-bg);
	border-left: 4px solid var(--coral);
	border-radius: 10px;
	padding: 20px;
	display: flex;
	gap: 14px;
	align-items: flex-start;
}
.reject-icon {
	width: 38px;
	height: 38px;
	flex-shrink: 0;
	border-radius: 9px;
	background: var(--coral-bg);
	display: flex;
	align-items: center;
	justify-content: center;
}
.reject-icon svg {
	width: 20px;
	height: 20px;
}
.reject-card-body h4 {
	font-size: 15px;
	font-weight: 700;
	color: var(--coral);
	margin-bottom: 8px;
}
.reject-card-body p {
	font-size: 13.5px;
	color: var(--text-muted);
	line-height: 1.6;
}
.reject-stat {
	background: var(--teal-deep);
	color: #fff;
	border-radius: var(--radius);
	padding: 24px;
	text-align: center;
	margin-top: 24px;
}
.reject-stat strong {
	display: block;
	font-family: var(--font-display);
	font-size: 32px;
	font-weight: 700;
	color: var(--gold-light);
	margin-bottom: 4px;
}
.reject-stat span {
	font-size: 14px;
	opacity: 0.85;
}

/* SECTION DIVIDER ILLUSTRATIONS */
.divider-strip {
	padding: 28px 0;
	background: var(--white);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	overflow: hidden;
}
.divider-strip svg {
	display: block;
	width: 100%;
	height: 56px;
}
.photo-banner {
	position: relative;
	padding: 64px 0;
	background: linear-gradient(135deg, var(--teal-deep), var(--teal));
	overflow: hidden;
}
.photo-banner-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}
.photo-banner-text h3 {
	color: #fff;
	font-size: 24px;
	margin-bottom: 10px;
}
.photo-banner-text p {
	color: rgba(255, 255, 255, 0.82);
	font-size: 15px;
	line-height: 1.7;
}
.photo-banner-visual {
	display: flex;
	justify-content: center;
}
.photo-banner-visual svg {
	width: 100%;
	max-width: 280px;
}
.icon-badge {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	background: var(--mint-card);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.icon-badge svg {
	width: 24px;
	height: 24px;
	color: var(--teal);
}

.checklist-widget {
	max-width: 720px;
	margin: 0 auto;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 32px;
	box-shadow: var(--shadow);
}
.checklist-widget h3 {
	font-size: 18px;
	color: var(--teal-deep);
	margin-bottom: 6px;
	font-family: var(--font-display);
}
.checklist-widget .ck-sub {
	font-size: 13.5px;
	color: var(--text-muted);
	margin-bottom: 20px;
}
.ck-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 12px 0;
	border-bottom: 1px solid var(--border);
	cursor: pointer;
}
.ck-item:last-of-type {
	border-bottom: none;
}
.ck-item input[type="checkbox"] {
	width: 20px;
	height: 20px;
	accent-color: var(--teal);
	margin-top: 2px;
	cursor: pointer;
	flex-shrink: 0;
}
.ck-item label {
	font-size: 14.5px;
	color: var(--text);
	cursor: pointer;
	line-height: 1.5;
}
.ck-result {
	margin-top: 20px;
	padding: 18px 20px;
	border-radius: 10px;
	background: var(--mint-card);
	border-left: 4px solid var(--teal);
	font-size: 14.5px;
	color: var(--text);
	line-height: 1.7;
	display: none;
}
.ck-result.show {
	display: block;
}
.ck-result strong {
	color: var(--teal-deep);
	display: block;
	margin-bottom: 6px;
	font-family: var(--font-display);
	font-size: 15px;
}
.ck-reset {
	background: none;
	border: 1px solid var(--border);
	color: var(--text-muted);
	font-size: 13px;
	padding: 7px 16px;
	border-radius: 6px;
	cursor: pointer;
	margin-top: 14px;
}
.ck-reset:hover {
	border-color: var(--teal);
	color: var(--teal-deep);
}

.response-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 18px;
}
.response-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 22px;
	text-align: center;
	box-shadow: var(--shadow);
}
.response-card .rt-time {
	font-family: var(--font-display);
	font-size: 30px;
	font-weight: 700;
	color: var(--teal);
	margin-bottom: 6px;
}
.response-card .rt-label {
	font-size: 13.5px;
	color: var(--text-muted);
}
.response-note {
	background: var(--mint-card);
	border-radius: 10px;
	padding: 16px 20px;
	margin-top: 20px;
	font-size: 14px;
	color: var(--text-muted);
	text-align: center;
}

.price-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
}
.price-table th {
	background: var(--teal-deep);
	color: #fff;
	padding: 12px 14px;
	text-align: left;
	font-weight: 600;
	font-size: 13px;
	font-family: var(--font-display);
}
.price-table td {
	padding: 11px 14px;
	border-bottom: 1px solid var(--border);
	color: var(--text-muted);
}
.price-table tr:nth-child(even) td {
	background: var(--mint-card);
}
.price-table td:first-child {
	font-weight: 600;
	color: var(--text);
}
.price-table .best-price {
	color: var(--teal);
	font-weight: 700;
}

.compare-table {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0;
	font-size: 14px;
}
.compare-table th {
	background: var(--teal-deep);
	color: #fff;
	padding: 11px 14px;
	text-align: left;
	font-weight: 600;
	font-size: 13px;
	font-family: var(--font-display);
}
.compare-table td {
	padding: 10px 14px;
	border-bottom: 1px solid var(--border);
	color: var(--text-muted);
}
.compare-table tr:nth-child(even) td {
	background: var(--mint-card);
}
.compare-table td:first-child {
	font-weight: 600;
	color: var(--text);
}
.td-yes {
	color: var(--teal);
	font-weight: 700;
}
.td-no {
	color: var(--coral);
	font-weight: 700;
}
.state-clinic-box {
	background: var(--mint-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 20px;
	margin-top: 16px;
}
.state-clinic-box h4 {
	font-size: 15px;
	font-weight: 700;
	color: var(--teal-deep);
	margin-bottom: 8px;
	font-family: var(--font-display);
}
.state-clinic-box p {
	font-size: 14px;
	color: var(--text-muted);
	margin-bottom: 4px;
}

.method-section {
	background: var(--teal-deep);
	color: #fff;
	padding: 52px 0;
}
.method-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 24px;
	margin-top: 36px;
}
.method-card {
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--radius);
	padding: 22px;
}
.method-card h4 {
	font-family: var(--font-display);
	font-size: 15.5px;
	font-weight: 600;
	margin-bottom: 8px;
}
.method-card p {
	font-size: 13.5px;
	opacity: 0.78;
	line-height: 1.6;
}
.method-score {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 10px;
	padding-top: 10px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.method-score span {
	font-size: 12.5px;
	opacity: 0.72;
}
.method-score strong {
	color: var(--gold-light);
	font-family: var(--font-display);
}

.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 20px;
}
.testimonial-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 22px;
	box-shadow: var(--shadow);
}
.testimonial-quote {
	font-size: 14.5px;
	color: var(--text);
	line-height: 1.7;
	margin-bottom: 14px;
	font-style: italic;
}
.testimonial-author {
	display: flex;
	align-items: center;
	gap: 10px;
}
.testimonial-avatar {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--mint-card);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	color: var(--teal-deep);
	font-size: 14px;
	flex-shrink: 0;
}
.testimonial-name {
	font-size: 13.5px;
	font-weight: 600;
	color: var(--teal-deep);
}
.testimonial-district {
	font-size: 12px;
	color: var(--text-muted);
}

.experts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 24px;
}
.expert-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-top: 3px solid var(--teal);
	border-radius: var(--radius);
	padding: 24px;
	text-align: center;
	box-shadow: var(--shadow);
}
.expert-avatar {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	margin: 0 auto 12px;
	overflow: hidden;
	border: 3px solid var(--mint-card);
}
.expert-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
}
.expert-card h4 {
	font-family: var(--font-display);
	font-size: 14.5px;
	font-weight: 600;
	color: var(--teal-deep);
	margin-bottom: 4px;
}
.expert-card p {
	font-size: 13px;
	color: var(--text-muted);
}
.expert-card .exp-tag {
	font-size: 12px;
	background: var(--mint-card);
	color: var(--teal-deep);
	padding: 3px 10px;
	border-radius: 20px;
	display: inline-block;
	margin-top: 8px;
}

.license-section {
	background: var(--mint-card);
	border-top: 3px solid var(--teal);
	border-bottom: 3px solid var(--teal);
	padding: 48px 0;
}
.license-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}
.license-text h2 {
	font-size: 25px;
	font-weight: 700;
	color: var(--teal-deep);
	margin-bottom: 12px;
}
.license-text p {
	color: var(--text-muted);
	margin-bottom: 20px;
}
.license-steps {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.license-steps li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 14px;
}
.license-steps li::before {
	content: attr(data-n);
	background: var(--teal);
	color: #fff;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 700;
	flex-shrink: 0;
}
.license-form {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 28px;
	box-shadow: var(--shadow);
}
.license-form h3 {
	font-size: 17.5px;
	font-weight: 700;
	color: var(--teal-deep);
	margin-bottom: 16px;
	font-family: var(--font-display);
}
.form-group {
	margin-bottom: 14px;
}
.form-group label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: var(--text);
	margin-bottom: 5px;
}
.form-group input,
.form-group select {
	width: 100%;
	padding: 10px 14px;
	border: 1px solid var(--border);
	border-radius: 8px;
	font-size: 14px;
	outline: none;
	transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus {
	border-color: var(--teal);
}
.btn-teal {
	background: var(--teal);
	color: #fff;
	width: 100%;
	padding: 12px;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 600;
	border: none;
	cursor: pointer;
	transition: background 0.2s;
}
.btn-teal:hover {
	background: var(--teal-deep);
}

.seo-section {
	padding: 52px 0;
	background: var(--white);
}
.seo-inner {
	max-width: 860px;
	margin: 0 auto;
}
.seo-inner h2 {
	font-size: 23px;
	font-weight: 700;
	color: var(--teal-deep);
	margin: 34px 0 14px;
}
.seo-inner h2:first-child {
	margin-top: 0;
}
.seo-inner p {
	font-size: 15px;
	color: var(--text-muted);
	margin-bottom: 14px;
	line-height: 1.8;
	font-family: var(--font-body);
}

.faq-list {
	max-width: 820px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.faq-item {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
}
.faq-q {
	padding: 18px 20px;
	font-weight: 600;
	font-size: 15px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: var(--teal-deep);
}
.faq-q::after {
	content: "+";
	font-size: 22px;
	color: var(--teal);
}
.faq-a {
	padding: 0 20px 16px;
	font-size: 14px;
	color: var(--text-muted);
	line-height: 1.7;
	border-top: 1px solid var(--border);
	padding-top: 14px;
}

footer {
	background: var(--teal-deep);
	color: rgba(255, 255, 255, 0.78);
	padding: 40px 0 24px;
}
.footer-inner {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 40px;
	margin-bottom: 32px;
}
.footer-logo {
	color: #fff;
	font-family: var(--font-display);
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 10px;
}
footer p {
	font-size: 13px;
	line-height: 1.7;
}
footer h4 {
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 12px;
}
footer ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
footer ul li a {
	color: rgba(255, 255, 255, 0.68);
	text-decoration: none;
	font-size: 13px;
}
footer ul li a:hover {
	color: #fff;
}
.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	padding-top: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 12px;
	flex-wrap: wrap;
	gap: 8px;
}
.footer-phone {
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	text-decoration: none;
}
.disclaimer {
	font-size: 12px;
	opacity: 0.58;
	margin-top: 8px;
	max-width: 560px;
	line-height: 1.6;
}

@media (max-width: 900px) {
	.hero-grid {
		grid-template-columns: 1fr;
	}
	.hero-visual {
		display: none;
	}
	.clinic-card {
		grid-template-columns: 44px 64px 1fr;
		gap: 12px;
		padding: 16px;
	}
	.clinic-photo {
		width: 64px;
		height: 64px;
	}
	.clinic-actions {
		flex-direction: row;
		min-width: auto;
		grid-column: 1 / -1;
		flex-wrap: wrap;
	}
	.clinic-actions a,
	.clinic-actions .license-badge {
		flex: 1 1 auto;
	}
	.license-inner {
		grid-template-columns: 1fr;
	}
	.footer-inner {
		grid-template-columns: 1fr 1fr;
	}
	nav {
		display: none;
	}
	.price-table {
		font-size: 12px;
		overflow-x: auto;
		display: block;
	}
}
@media (max-width: 560px) {
	.clinic-card {
		grid-template-columns: 36px 52px 1fr;
		gap: 10px;
		padding: 14px;
	}
	.clinic-photo {
		width: 52px;
		height: 52px;
		border-radius: 8px;
	}
	.rank-badge {
		width: 36px;
		height: 36px;
		font-size: 14px;
	}
	.clinic-info h3 {
		font-size: 15px;
	}
	.clinic-desc {
		font-size: 13px;
	}
	.clinic-features {
		grid-template-columns: 1fr;
	}
	.clinic-actions {
		flex-direction: column;
		align-items: stretch;
	}
	.clinic-actions a,
	.clinic-actions .license-badge {
		width: 100%;
		text-align: center;
		justify-content: center;
	}
	.footer-inner {
		grid-template-columns: 1fr;
	}
	.hero-stats {
		gap: 18px;
	}
	.tags {
		gap: 4px;
	}
	.tag {
		font-size: 11px;
		padding: 2px 8px;
	}
}
