:root {
	--ck-blue: #17217e;
	--ck-blue-2: #2032b3;
	--ck-blue-3: #2f8dff;
	--ck-gold: #b79a5d;
	--ck-text: #2f3440;
	--ck-muted: #727785;
	--ck-border: #dbe4ff;
	--ck-surface: #ffffff;
	--ck-bg: #f8fbff;
	--ck-shell: min(1280px, calc(100vw - 48px));
	--ck-shadow: 0 24px 60px rgba(12, 26, 88, 0.12);
	--ck-hero-height: 760px;
	--ck-hero-image-width: 1920px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: #fff;
	color: var(--ck-text);
	font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
	color: inherit;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

.ck-shell {
	width: var(--ck-shell);
	margin: 0 auto;
}

.ck-page {
	min-height: 100vh;
	background: #fff;
}

.ck-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 26px;
	border: 1px solid transparent;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.2s ease;
}

.ck-button:hover {
	transform: translateY(-1px);
}

.ck-button--solid {
	background: var(--ck-blue);
	color: #fff;
}

.ck-button--icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-width: 142px;
}

.ck-button--icon svg,
.ck-socials a svg,
.ck-floating-actions__top svg,
.ck-floating-actions__cta svg,
.ck-whatsapp-widget__direct svg {
	width: 18px;
	height: 18px;
	flex: 0 0 18px;
}

.ck-button--small {
	min-height: 42px;
	padding: 0 22px;
}

.ck-button--gold {
	background: var(--ck-gold);
	color: #fff;
}

.ck-button--light {
	background: #fff;
	color: var(--ck-text);
}

.ck-button--outline-light {
	border-color: var(--ck-gold);
	color: #fff;
	background: transparent;
}

.ck-button--ghost {
	background: #fff;
	color: var(--ck-blue);
	border-color: var(--ck-border);
}

.ck-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: #fff;
}

.ck-topbar {
	border-top: 1px solid #dfe5ef;
	border-bottom: 1px solid #dfe5ef;
	background: #fff;
}

.ck-topbar__inner {
	display: grid;
	grid-template-columns: 300px minmax(0, 1fr) 174px;
	align-items: center;
	gap: 20px;
	min-height: 66px;
}

.ck-brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
}

.ck-brand--image img {
	display: block;
	width: auto;
	height: 74px;
	object-fit: contain;
}

.ck-brand--footer-image img {
	display: block;
	width: auto;
	height: 96px;
	object-fit: contain;
}

.ck-brand--logo .custom-logo-link {
	display: inline-flex;
}

.ck-brand__script {
	color: #85a0d9;
	font-size: 36px;
	font-style: italic;
	line-height: 1;
}

.ck-brand__text {
	display: flex;
	flex-direction: column;
	line-height: 1.1;
}

.ck-brand__text strong {
	color: var(--ck-blue);
	font-size: 21px;
	font-weight: 700;
}

.ck-brand__text small {
	color: #51618f;
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.ck-topbar__items {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.ck-topbar__actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
}

.ck-topbar__item {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.ck-topbar__label {
	color: #6f7586;
	font-size: 14px;
}

.ck-topbar__item a,
.ck-topbar__item span:last-child {
	color: #1f2430;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
}

.ck-nav {
	border-bottom: 1px solid #e4eaf3;
	background: #fff;
}

.ck-nav__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	min-height: 58px;
}

.ck-nav__panel {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex: 1;
}

.ck-mobile-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
	width: 46px;
	height: 46px;
	padding: 0;
	border: 1px solid #dfe5ef;
	background: #fff;
	cursor: pointer;
}

.ck-mobile-toggle span {
	display: block;
	width: 18px;
	height: 2px;
	background: var(--ck-blue);
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.ck-header.ck-header--menu-open .ck-mobile-toggle span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.ck-header.ck-header--menu-open .ck-mobile-toggle span:nth-child(2) {
	opacity: 0;
}

.ck-header.ck-header--menu-open .ck-mobile-toggle span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.ck-menu {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 30px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ck-menu a {
	color: #232936;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	text-transform: uppercase;
}

.current-menu-item a,
.current_page_item a,
.ck-menu a:hover {
	color: var(--ck-blue);
}

.ck-nav__meta {
	display: flex;
	align-items: center;
	gap: 18px;
}

.ck-nav__search {
	font-size: 28px;
	font-weight: 400;
	text-decoration: none;
	line-height: 1;
	color: #1e2332;
}

.ck-socials {
	display: flex;
	align-items: center;
	gap: 10px;
}

.ck-socials a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: 1px solid rgba(23, 33, 126, 0.12);
	border-radius: 999px;
	background: #fff;
	color: var(--ck-blue);
	text-decoration: none;
}

.ck-socials a[href*="wa.me"] {
	border-color: rgba(37, 211, 102, 0.3);
	color: #179848;
}

.ck-home-hero {
	position: relative;
	overflow: hidden;
	background: url("../images/hero-can-kalkan.png") center center / cover no-repeat;
}

.ck-home-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(7, 10, 16, 0.58) 0%, rgba(7, 10, 16, 0.34) 28%, rgba(7, 10, 16, 0.1) 54%, rgba(7, 10, 16, 0) 100%),
		radial-gradient(circle at 12% 42%, rgba(0, 0, 0, 0.22), transparent 34%),
		radial-gradient(circle at 16% 12%, rgba(255, 255, 255, 0.12), transparent 18%);
}

.ck-home-hero__backdrop {
	position: absolute;
	inset: 0;
	backdrop-filter: none;
	background: transparent;
}

.ck-home-hero__grid {
	position: relative;
	display: block;
	min-height: var(--ck-hero-height);
	padding: 70px 0 0;
}

.ck-home-hero__content {
	position: relative;
	z-index: 2;
	max-width: 760px;
	padding: 0 0 110px 82px;
}

.ck-home-hero__eyebrow {
	display: inline-block;
	margin-bottom: 16px;
	color: var(--ck-gold);
	font-size: 20px;
	font-weight: 700;
	text-transform: uppercase;
}

.ck-home-hero h1 {
	margin: 0 0 22px;
	color: #fff;
	font-size: clamp(66px, 7vw, 92px);
	line-height: 0.95;
	text-transform: uppercase;
}

.ck-home-hero p {
	max-width: 720px;
	margin: 0;
	color: rgba(255, 255, 255, 0.92);
	font-size: 18px;
	line-height: 1.6;
}

.ck-home-hero__actions {
	display: flex;
	gap: 18px;
	margin-top: 38px;
}

.ck-doctor-placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border: 2px dashed rgba(255, 255, 255, 0.4);
	background: rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.92);
	text-align: center;
}

.ck-doctor-placeholder span {
	font-size: 22px;
	font-weight: 700;
}

.ck-doctor-placeholder small {
	display: block;
	margin-top: 10px;
	font-size: 14px;
	letter-spacing: 0.04em;
}

.ck-doctor-placeholder--hero {
	width: 610px;
	height: var(--ck-hero-height);
	border-right: 0;
	border-bottom: 0;
}

.ck-home-about {
	padding: 92px 0 60px;
}

.ck-home-about__grid {
	display: grid;
	grid-template-columns: 540px minmax(0, 1fr);
	gap: 70px;
	align-items: center;
}

.ck-home-about__visual {
	display: flex;
	justify-content: center;
}

.ck-home-about__photo {
	width: 100%;
	max-width: 540px;
	border-radius: 32px;
	overflow: hidden;
}

.ck-home-about__photo::before {
	inset: -18px 26px auto -18px;
}

.ck-doctor-placeholder--about {
	width: 540px;
	height: 550px;
	border-color: rgba(255, 255, 255, 0.55);
	border-radius: 32px;
	background: linear-gradient(180deg, #1f2ab2 0%, #162291 100%);
}

.ck-home-about__content {
	max-width: 650px;
}

.ck-home-about__eyebrow,
.ck-home-heading p {
	margin: 0 0 14px;
	color: var(--ck-blue);
	font-size: 18px;
	font-weight: 700;
}

.ck-home-about h2,
.ck-home-heading h2,
.ck-home-testimonials__intro h2,
.ck-footer-cta h2 {
	margin: 0 0 18px;
	color: var(--ck-text);
	font-size: clamp(42px, 4vw, 62px);
	line-height: 1.05;
}

.ck-home-about p,
.ck-home-about li,
.ck-treatment-card p,
.ck-testimonial-card p,
.ck-footer-main p,
.ck-footer-links a,
.ck-footer-links span {
	color: var(--ck-muted);
	font-size: 17px;
	line-height: 1.6;
}

.ck-home-about h3 {
	margin: 28px 0 20px;
	color: var(--ck-text);
	font-size: 28px;
}

.ck-home-about ul {
	margin: 0 0 28px;
	padding: 18px 0 0;
	list-style: none;
	border-top: 1px solid #cad7f2;
}

.ck-home-about li {
	position: relative;
	padding: 0 0 18px 24px;
}

.ck-home-about li::before {
	content: "\2713";
	position: absolute;
	left: 0;
	top: 0;
	color: var(--ck-blue);
	font-weight: 800;
}

.ck-home-stats {
	position: relative;
	overflow: hidden;
	padding: 42px 0;
	background:
		radial-gradient(circle at 14% 40%, rgba(38, 59, 165, 0.18), transparent 24%),
		radial-gradient(circle at 80% 35%, rgba(38, 59, 165, 0.16), transparent 22%),
		linear-gradient(180deg, #161f78 0%, #131a67 100%);
}

.ck-home-stats::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 10% 50%, rgba(48, 93, 255, 0.18), transparent 22%),
		radial-gradient(circle at 90% 30%, rgba(48, 93, 255, 0.14), transparent 18%);
	pointer-events: none;
}

.ck-home-stats__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ck-home-stats__item {
	padding: 12px 18px;
	text-align: center;
	border-right: 1px solid rgba(255, 255, 255, 0.45);
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.ck-home-stats__item.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.ck-home-stats__item:last-child {
	border-right: 0;
}

.ck-home-stats__item strong {
	display: block;
	color: var(--ck-blue-3);
	font-size: clamp(52px, 5vw, 78px);
	line-height: 1;
}

.ck-home-stats__item span {
	display: block;
	margin-top: 12px;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.04em;
}

.ck-home-treatments {
	padding: 92px 0 82px;
	background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.ck-home-blog {
	padding: 0 0 82px;
	background: #fff;
}

.ck-home-blog__empty {
	padding: 42px 36px;
	border: 1px solid var(--ck-border);
	border-radius: 24px;
	background: linear-gradient(180deg, #fbfdff 0%, #f4f8ff 100%);
	text-align: center;
	box-shadow: var(--ck-shadow);
}

.ck-home-blog__empty p {
	margin: 0 0 12px;
	color: var(--ck-muted);
	font-size: 17px;
}

.ck-home-heading {
	margin-bottom: 44px;
	text-align: center;
}

.ck-home-cards {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}

.ck-home-cards--blog {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ck-treatment-card {
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--ck-border);
	border-radius: 24px;
	box-shadow: var(--ck-shadow);
}

.ck-treatment-card__media {
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
	height: 250px;
	padding: 24px;
	background:
		linear-gradient(140deg, rgba(23, 33, 126, 0.84), rgba(47, 141, 255, 0.38)),
		linear-gradient(135deg, #8fa5cc 0%, #dbe6ff 100%);
	color: #fff;
	font-size: 26px;
	font-weight: 700;
	text-decoration: none;
}

.ck-treatment-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	margin: -24px;
	max-width: calc(100% + 48px);
}

.ck-treatment-card__body {
	padding: 22px 22px 26px;
}

.ck-treatment-card h3 {
	margin: 0 0 12px;
	color: var(--ck-text);
	font-size: 30px;
	line-height: 1.1;
}

.ck-home-testimonials {
	padding: 18px 0 100px;
	overflow: hidden;
}

.ck-home-testimonials__marquee {
	position: relative;
	margin-top: 38px;
	overflow: hidden;
	mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
	-webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}

.ck-home-testimonials__track {
	display: flex;
	width: max-content;
	animation: ck-testimonials-scroll 42s linear infinite;
}

.ck-home-testimonials__set {
	display: flex;
	gap: 24px;
	padding-right: 24px;
}

.ck-testimonial-card {
	flex: 0 0 360px;
	padding: 28px 30px;
	border: 1px solid var(--ck-border);
	border-radius: 26px;
	background: #fff;
	box-shadow: 0 16px 40px rgba(12, 26, 88, 0.08);
}

.ck-testimonial-card__stars {
	color: var(--ck-gold);
	font-size: 22px;
	letter-spacing: 0.08em;
}

.ck-testimonial-card__meta {
	margin-top: 10px;
	color: var(--ck-blue);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.ck-testimonial-card__person {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: 28px;
}

.ck-testimonial-card__avatar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 999px;
	background: linear-gradient(180deg, #dfe8ff, #f5f8ff);
	color: var(--ck-blue);
	font-size: 20px;
	font-weight: 800;
}

.ck-testimonial-card__person strong {
	font-size: 18px;
}

.ck-home-testimonials__intro {
	display: grid;
	grid-template-columns: 520px minmax(0, 1fr);
	gap: 52px;
	align-items: start;
}

.ck-home-testimonials__summary {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	margin-top: 10px;
	padding: 12px 16px;
	border: 1px solid rgba(23, 33, 126, 0.12);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 12px 30px rgba(12, 26, 88, 0.08);
}

.ck-home-testimonials__summary strong {
	color: var(--ck-text);
	font-size: 16px;
}

.ck-home-testimonials__summary span {
	color: var(--ck-muted);
	font-size: 14px;
}

.ck-home-testimonials__marquee:hover .ck-home-testimonials__track {
	animation-play-state: paused;
}

@keyframes ck-testimonials-scroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(calc(-50% - 12px));
	}
}

.ck-footer {
	position: relative;
	padding-bottom: 40px;
}

.ck-footer-cta {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(380px, 520px);
	gap: 40px;
	padding: 56px 58px;
	background:
		radial-gradient(circle at 20% 10%, rgba(60, 88, 255, 0.22), transparent 30%),
		radial-gradient(circle at 80% 25%, rgba(60, 88, 255, 0.2), transparent 32%),
		linear-gradient(135deg, #1b2388 0%, #182383 48%, #121a66 100%);
	color: #fff;
	isolation: isolate;
}

.ck-footer-cta::before,
.ck-footer-cta::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.ck-footer-cta::before {
	background:
		radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.06), transparent 12%),
		radial-gradient(circle at 72% 28%, rgba(255, 255, 255, 0.05), transparent 11%),
		radial-gradient(circle at 88% 72%, rgba(255, 255, 255, 0.04), transparent 14%);
}

.ck-footer-cta::after {
	inset: 18px;
	border: 1px solid rgba(88, 110, 255, 0.24);
	background:
		radial-gradient(circle at 14% 80%, rgba(44, 70, 201, 0.22), transparent 18%),
		linear-gradient(120deg, transparent 0%, transparent 18%, rgba(72, 98, 255, 0.16) 18.5%, transparent 19.5%, transparent 42%, rgba(72, 98, 255, 0.14) 42.5%, transparent 43.5%, transparent 100%);
}

.ck-footer-cta__column,
.ck-footer-cta__content {
	position: relative;
	z-index: 1;
}

.ck-footer-cta__kicker {
	display: block;
	margin-bottom: 18px;
	font-size: 18px;
	font-weight: 700;
}

.ck-footer-cta h2 {
	color: #fff;
	max-width: 10ch;
}

.ck-footer-cta__content strong {
	display: block;
	margin-bottom: 12px;
	font-size: 34px;
	line-height: 1.1;
}

.ck-footer-cta__content p {
	margin: 0 0 24px;
	color: rgba(255, 255, 255, 0.92);
	font-size: 18px;
	line-height: 1.5;
}

.ck-footer-main {
	position: relative;
	margin-top: 110px;
	padding: 58px 0 18px;
	background:
		linear-gradient(180deg, rgba(17, 27, 111, 0.97), rgba(13, 22, 94, 0.98)),
		linear-gradient(135deg, #111b6f, #0c145b);
	color: #fff;
	isolation: isolate;
}

.ck-footer-main::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 20% 30%, rgba(54, 82, 255, 0.16), transparent 20%),
		radial-gradient(circle at 84% 54%, rgba(54, 82, 255, 0.18), transparent 24%),
		linear-gradient(120deg, transparent 0%, transparent 16%, rgba(57, 83, 222, 0.1) 16.2%, transparent 17%, transparent 54%, rgba(57, 83, 222, 0.08) 54.2%, transparent 55%, transparent 100%);
	pointer-events: none;
}

.ck-footer-main__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1.2fr 1fr 0.9fr 0.9fr;
	gap: 40px;
}

.ck-brand--footer .ck-brand__text strong,
.ck-brand--footer .ck-brand__text small {
	color: #fff;
}

.ck-brand--footer .ck-brand__script {
	color: #a3b5ff;
}

.ck-footer-col h3 {
	margin: 0 0 18px;
	color: #fff;
	font-size: 18px;
}

.ck-footer-hours {
	margin-top: 30px;
}

.ck-footer-form {
	display: flex;
	margin: 18px 0 24px;
}

.ck-footer-form input {
	flex: 1;
	min-width: 0;
	height: 46px;
	padding: 0 14px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	font-size: 15px;
}

.ck-footer-form button {
	height: 46px;
	padding: 0 24px;
	border: 0;
	background: var(--ck-blue-3);
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
}

.ck-footer-links {
	margin: 0;
	padding: 0;
	list-style: none;
}

.ck-footer-links li + li {
	margin-top: 14px;
}

.ck-footer-links a,
.ck-footer-links span,
.ck-footer-main p {
	color: rgba(255, 255, 255, 0.92);
	text-decoration: none;
}

.ck-socials--footer a {
	width: 30px;
	height: 30px;
	border: 1px solid rgba(183, 154, 93, 0.8);
	color: var(--ck-gold);
}

.ck-footer-bottom {
	position: relative;
	z-index: 1;
	margin-top: 36px;
	padding-top: 18px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	text-align: center;
}

.ck-footer-bottom p {
	margin: 0;
	color: rgba(255, 255, 255, 0.86);
}

.ck-floating-actions {
	position: fixed;
	right: 0;
	bottom: 28px;
	z-index: 60;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 10px;
}

.ck-floating-actions__cta,
.ck-floating-actions__top {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-width: 132px;
	height: 42px;
	padding: 0 16px;
	background: var(--ck-blue);
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 12px 28px rgba(15, 29, 107, 0.25);
}

.ck-floating-actions__top {
	min-width: 46px;
	width: 46px;
	padding: 0;
}

#ast-scroll-top,
.ast-scroll-top,
.ast-scroll-top-icon,
.ast-scroll-to-top-right,
.ast-scroll-to-top-left {
	display: none !important;
	opacity: 0 !important;
	visibility: hidden !important;
	pointer-events: none !important;
}

.ck-whatsapp-widget {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

.ck-whatsapp-widget__panel {
	position: absolute;
	right: 0;
	bottom: calc(100% + 12px);
	width: min(360px, calc(100vw - 28px));
	padding: 18px;
	border: 1px solid rgba(23, 33, 126, 0.12);
	border-radius: 24px;
	background:
		linear-gradient(145deg, rgba(30, 45, 165, 0.98), rgba(15, 28, 113, 0.98)),
		radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 34%);
	box-shadow: 0 28px 60px rgba(8, 20, 82, 0.28);
	color: #fff;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.ck-whatsapp-widget.is-open .ck-whatsapp-widget__panel {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.ck-whatsapp-widget__header strong {
	display: block;
	margin-bottom: 8px;
	font-size: 24px;
	line-height: 1.2;
}

.ck-whatsapp-widget__header p {
	margin: 0;
	color: rgba(255, 255, 255, 0.84);
	font-size: 14px;
	line-height: 1.6;
}

.ck-whatsapp-widget__list {
	display: grid;
	gap: 10px;
	margin-top: 18px;
}

.ck-whatsapp-widget__item,
.ck-whatsapp-widget__direct {
	display: block;
	padding: 12px 14px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.2s ease, transform 0.2s ease;
}

.ck-whatsapp-widget__item:hover,
.ck-whatsapp-widget__direct:hover {
	background: rgba(255, 255, 255, 0.14);
	transform: translateY(-1px);
}

.ck-whatsapp-widget__direct {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 14px;
	background: rgba(183, 154, 93, 0.96);
	border-color: rgba(183, 154, 93, 0.96);
	text-align: center;
}

.ck-site,
.ck-page-hero,
.ck-section,
.ck-page-content,
.ck-detail-content {
	padding: 0;
}

.ck-page-hero {
	padding: 56px 0 24px;
	background: #f8fbff;
}

.ck-page-hero h1 {
	margin: 0;
	font-size: clamp(42px, 4vw, 66px);
	line-height: 1.05;
}

.ck-page-hero p {
	max-width: 840px;
	margin: 16px 0 0;
	color: var(--ck-muted);
	font-size: 18px;
	line-height: 1.6;
}

.ck-section__kicker {
	display: block;
	margin-bottom: 12px;
	color: var(--ck-blue);
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
}

.ck-page-content,
.ck-detail-content {
	padding: 36px;
	border: 1px solid var(--ck-border);
	background: #fff;
}

.ck-grid {
	display: grid;
	gap: 28px;
}

.ck-grid-about,
.ck-grid-promises,
.ck-grid-contact,
.ck-grid-about-hero,
.ck-grid-detail-hero {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 30px;
}

.ck-copy p {
	color: var(--ck-muted);
	font-size: 17px;
	line-height: 1.7;
}

.ck-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 24px;
}

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

.ck-card__media-link {
	display: block;
	text-decoration: none;
}

.ck-card__media {
	display: block;
	overflow: hidden;
	margin: -26px -26px 18px;
}

.ck-card__media--treatment {
	height: 240px;
	background:
		linear-gradient(140deg, rgba(23, 33, 126, 0.84), rgba(47, 141, 255, 0.38)),
		linear-gradient(135deg, #8fa5cc 0%, #dbe6ff 100%);
}

.ck-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ck-card {
	padding: 26px;
	border: 1px solid var(--ck-border);
	background: #fff;
	box-shadow: var(--ck-shadow);
}

.ck-card__tag {
	display: inline-block;
	margin-bottom: 12px;
	color: var(--ck-blue);
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
}

.ck-card h2,
.ck-card h3 {
	margin: 0 0 12px;
	font-size: 28px;
	line-height: 1.1;
}

.ck-inline-link {
	color: var(--ck-blue);
	font-weight: 700;
	text-decoration: none;
}

.ck-panel-card,
.ck-mini-card,
.ck-cta-box {
	padding: 28px;
	border: 1px solid var(--ck-border);
	background: #fff;
	box-shadow: var(--ck-shadow);
}

.ck-panel-card h2,
.ck-mini-card h2,
.ck-cta-box h2 {
	margin: 0 0 12px;
	font-size: 34px;
	line-height: 1.1;
}

.ck-panel-card__label {
	display: block;
	margin-bottom: 12px;
	color: var(--ck-blue);
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
}

.ck-bullet-list,
.ck-contact-list {
	margin: 16px 0 0;
	padding: 0;
	list-style: none;
}

.ck-bullet-list li,
.ck-contact-list li {
	padding: 10px 0;
	border-bottom: 1px solid var(--ck-border);
	color: var(--ck-muted);
}

.ck-bullet-list li:last-child,
.ck-contact-list li:last-child {
	border-bottom: 0;
}

.ck-stacked-cards {
	display: grid;
	gap: 18px;
}

.ck-promise-list {
	display: grid;
	gap: 14px;
}

.ck-promise {
	display: grid;
	grid-template-columns: 18px minmax(0, 1fr);
	gap: 14px;
}

.ck-promise__dot {
	width: 12px;
	height: 12px;
	margin-top: 8px;
	border-radius: 999px;
	background: var(--ck-blue);
}

.ck-faq {
	display: grid;
	gap: 16px;
}

.ck-faq__item {
	padding: 22px;
	border: 1px solid var(--ck-border);
	background: #fff;
}

.ck-faq__item summary {
	cursor: pointer;
	font-weight: 700;
}

.ck-detail-content h2,
.ck-page-content h2 {
	margin-top: 0;
	font-size: 34px;
}

.ck-detail-content h3,
.ck-page-content h3 {
	font-size: 24px;
}

.ck-detail-content p,
.ck-detail-content li,
.ck-page-content p,
.ck-page-content li {
	color: var(--ck-muted);
	font-size: 17px;
	line-height: 1.7;
}

.ck-grid-detail {
	display: grid;
	grid-template-columns: 260px minmax(0, 1fr);
	gap: 28px;
	padding: 36px 0 90px;
}

.ck-detail-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 18px;
}

.ck-detail-meta span {
	padding: 8px 14px;
	border: 1px solid var(--ck-border);
	color: var(--ck-blue);
	font-size: 14px;
	font-weight: 700;
	background: #fff;
}

.ck-sticky-card {
	padding: 24px;
	border: 1px solid var(--ck-border);
	background: #fff;
	position: sticky;
	top: 120px;
}

.ck-detail-side-stack {
	display: grid;
	gap: 18px;
}

.ck-detail-side-note {
	display: grid;
	gap: 6px;
	padding-top: 18px;
	border-top: 1px solid var(--ck-border);
}

.ck-detail-side-note strong {
	font-size: 13px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--ck-blue);
}

.ck-detail-side-note a {
	color: var(--ck-text);
	font-weight: 700;
	text-decoration: none;
	word-break: break-word;
}

.ck-anchor-list {
	margin: 16px 0 0;
	padding: 0;
	list-style: none;
}

.ck-anchor-list li + li {
	margin-top: 12px;
}

.ck-anchor-list a {
	text-decoration: none;
	color: var(--ck-blue);
	font-weight: 700;
}

.ck-cta-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin: 56px 0;
}

.ck-entry-featured {
	margin: 0 0 28px;
	overflow: hidden;
	border-radius: 24px;
}

.ck-entry-featured img {
	width: 100%;
	max-height: 560px;
	object-fit: cover;
}

.ck-detail-support {
	padding-bottom: 26px;
}

.ck-info-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.ck-info-card {
	padding: 32px;
	border: 1px solid var(--ck-border);
	background: #fff;
	box-shadow: var(--ck-shadow);
}

.ck-info-card h2 {
	margin: 0 0 16px;
	font-size: 32px;
	line-height: 1.15;
}

.ck-info-card p {
	color: var(--ck-muted);
	font-size: 17px;
	line-height: 1.7;
}

.ck-contact-map-section {
	padding: 0 0 96px;
}

.ck-contact-map-card {
	padding: 0;
	overflow: hidden;
}

.ck-contact-map-card__head {
	padding: 30px 32px 0;
}

.ck-contact-map-card__head h2 {
	margin: 0;
	font-size: 34px;
	line-height: 1.12;
}

.ck-contact-map-frame {
	padding: 24px 24px 0;
}

.ck-contact-map-frame iframe {
	display: block;
	width: 100%;
	height: 520px;
	border: 0;
	background: #eef4ff;
}

.ck-contact-map-note {
	margin: 0;
	padding: 18px 32px 30px;
	color: var(--ck-muted);
	font-size: 15px;
}

.ck-contact-map-note a {
	color: var(--ck-blue);
	font-weight: 700;
	text-decoration: none;
}

.ck-detail-related {
	padding-bottom: 96px;
}

.ck-about-page {
	background:
		radial-gradient(circle at top left, rgba(47, 141, 255, 0.08), transparent 26%),
		linear-gradient(180deg, #f7faff 0%, #ffffff 26%, #f8fbff 100%);
}

.ck-about-hero {
	position: relative;
	padding: 72px 0 48px;
	overflow: hidden;
}

.ck-about-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(120deg, rgba(23, 33, 126, 0.08), transparent 48%),
		radial-gradient(circle at 84% 16%, rgba(183, 154, 93, 0.12), transparent 22%);
	pointer-events: none;
}

.ck-about-hero__grid,
.ck-about-layout {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
	gap: 46px;
	align-items: start;
}

.ck-about-hero__content h1 {
	margin: 0;
	font-size: clamp(48px, 5vw, 78px);
	line-height: 0.98;
	letter-spacing: -0.04em;
}

.ck-about-hero__lead {
	max-width: 760px;
	margin-top: 22px;
	color: #1f2b44;
	font-size: 22px;
	font-weight: 600;
	line-height: 1.5;
}

.ck-about-hero__content > p:last-of-type {
	max-width: 760px;
	margin-top: 18px;
	font-size: 18px;
}

.ck-about-highlights {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin-top: 34px;
}

.ck-about-highlight {
	padding: 24px 22px;
	border: 1px solid rgba(23, 33, 126, 0.1);
	background: rgba(255, 255, 255, 0.86);
	box-shadow: 0 20px 50px rgba(18, 31, 93, 0.08);
	backdrop-filter: blur(10px);
}

.ck-about-highlight strong {
	display: block;
	margin-bottom: 10px;
	color: var(--ck-blue);
	font-size: 36px;
	line-height: 1;
}

.ck-about-highlight span {
	display: block;
	color: var(--ck-muted);
	font-size: 15px;
	line-height: 1.5;
}

.ck-about-hero__media {
	position: relative;
	padding-left: 30px;
}

.ck-about-photo-card {
	position: relative;
	padding: 16px;
	border: 1px solid rgba(23, 33, 126, 0.08);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 246, 255, 0.96));
	box-shadow: 0 28px 80px rgba(14, 28, 84, 0.16);
}

.ck-about-photo-card::before {
	content: "";
	position: absolute;
	inset: -18px 30px auto -18px;
	height: 150px;
	border: 1px solid rgba(183, 154, 93, 0.28);
	pointer-events: none;
}

.ck-about-photo-card img {
	width: 100%;
	aspect-ratio: 4 / 5.25;
	object-fit: cover;
	object-position: center top;
}

.ck-about-badge {
	position: absolute;
	left: 0;
	bottom: 28px;
	max-width: 280px;
	padding: 22px 24px;
	background: linear-gradient(135deg, rgba(23, 33, 126, 0.96), rgba(32, 50, 179, 0.94));
	color: #fff;
	box-shadow: 0 24px 60px rgba(16, 29, 92, 0.26);
}

.ck-about-badge span {
	display: block;
	margin-bottom: 10px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.ck-about-badge strong {
	display: block;
	font-size: 21px;
	line-height: 1.35;
}

.ck-about-main {
	padding: 16px 0 32px;
}

.ck-about-layout {
	grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
}

.ck-about-article {
	display: grid;
	gap: 26px;
}

.ck-about-block,
.ck-about-sidecard,
.ck-about-timeline__item {
	padding: 34px;
	border: 1px solid rgba(23, 33, 126, 0.1);
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 24px 60px rgba(18, 31, 93, 0.08);
}

.ck-about-block h2,
.ck-about-sidecard h2 {
	margin: 0 0 16px;
	font-size: 34px;
	line-height: 1.14;
	letter-spacing: -0.03em;
}

.ck-about-block p + p {
	margin-top: 18px;
}

.ck-about-sidebar {
	display: grid;
	gap: 20px;
}

.ck-about-sidecard--accent {
	background:
		radial-gradient(circle at top right, rgba(47, 141, 255, 0.12), transparent 22%),
		linear-gradient(180deg, #fdfefe 0%, #f5f9ff 100%);
}

.ck-stacked-cards--tight {
	gap: 14px;
}

.ck-mini-card--soft {
	padding: 22px 22px 20px;
	border: 1px solid rgba(23, 33, 126, 0.08);
	background: rgba(255, 255, 255, 0.78);
	box-shadow: none;
}

.ck-mini-card--soft h3 {
	margin: 0 0 10px;
	font-size: 22px;
	line-height: 1.2;
}

.ck-mini-card--soft p {
	margin: 0;
	color: var(--ck-muted);
	font-size: 15px;
	line-height: 1.65;
}

.ck-home-heading--left {
	max-width: 760px;
	margin: 0 0 28px;
	text-align: left;
}

.ck-about-timeline-section {
	padding: 36px 0 96px;
}

.ck-about-timeline {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.ck-about-timeline__item {
	position: relative;
	padding-top: 82px;
}

.ck-about-timeline__item::before {
	content: "";
	position: absolute;
	top: 34px;
	left: 34px;
	width: 54px;
	height: 2px;
	background: linear-gradient(90deg, var(--ck-gold), rgba(183, 154, 93, 0.14));
}

.ck-about-timeline__year {
	position: absolute;
	top: 28px;
	right: 34px;
	color: rgba(23, 33, 126, 0.16);
	font-size: 28px;
	font-weight: 800;
	letter-spacing: -0.04em;
}

.ck-about-timeline__item h3 {
	margin: 0 0 12px;
	font-size: 24px;
	line-height: 1.2;
}

.ck-about-timeline__item p {
	margin: 0;
	color: var(--ck-muted);
	font-size: 16px;
	line-height: 1.7;
}

@media (max-width: 1200px) {
	.ck-topbar__inner,
	.ck-home-hero__grid,
	.ck-home-about__grid,
	.ck-home-testimonials__intro,
	.ck-footer-cta,
	.ck-footer-main__grid {
		grid-template-columns: 1fr;
	}

	.ck-topbar__items,
	.ck-home-cards,
	.ck-card-grid,
	.ck-home-stats__grid,
	.ck-grid-detail,
	.ck-info-grid {
		grid-template-columns: 1fr 1fr;
	}

	.ck-home-hero__content {
		padding: 0 0 40px;
	}

	.ck-home-about__visual {
		justify-content: flex-start;
	}

	.ck-doctor-placeholder--about {
		width: 100%;
		max-width: 540px;
	}

	.ck-grid-about,
	.ck-grid-promises,
	.ck-grid-contact,
	.ck-grid-about-hero,
	.ck-grid-detail-hero,
	.ck-about-hero__grid,
	.ck-about-layout {
		grid-template-columns: 1fr;
	}

	.ck-about-timeline {
		grid-template-columns: 1fr 1fr;
	}

	.ck-about-hero__media {
		padding-left: 0;
	}
}

@media (max-width: 820px) {
	.ck-shell {
		width: min(100vw - 28px, 1280px);
	}

	.ck-header {
		position: static;
	}

	.ck-topbar__items,
	.ck-home-cards,
	.ck-card-grid,
	.ck-home-stats__grid,
	.ck-home-testimonials__intro,
	.ck-grid-detail,
	.ck-about-highlights,
	.ck-about-timeline,
	.ck-info-grid {
		grid-template-columns: 1fr;
	}

	.ck-nav__inner,
	.ck-topbar__inner {
		gap: 16px;
		padding: 14px 0;
	}

	.ck-topbar__inner {
		grid-template-columns: 1fr;
		justify-items: center;
	}

	.ck-topbar__items,
	.ck-topbar__actions {
		display: none;
	}

	.ck-brand--image img {
		height: 58px;
	}

	.ck-brand--footer-image img {
		height: 78px;
	}

	.ck-nav__inner {
		position: relative;
		align-items: center;
		min-height: auto;
	}

	.ck-mobile-toggle {
		display: inline-flex;
		margin-left: auto;
	}

	.ck-nav__panel {
		position: absolute;
		top: calc(100% + 8px);
		left: 0;
		right: 0;
		display: none;
		flex-direction: column;
		align-items: stretch;
		gap: 16px;
		padding: 18px;
		border: 1px solid #dfe5ef;
		background: rgba(255, 255, 255, 0.99);
		box-shadow: 0 24px 60px rgba(12, 26, 88, 0.16);
		backdrop-filter: blur(10px);
		z-index: 30;
	}

	.ck-header.ck-header--menu-open .ck-nav__panel {
		display: flex;
	}

	.ck-nav__menu,
	.ck-nav__meta {
		width: 100%;
	}

	.ck-menu {
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
		width: 100%;
	}

	.ck-menu li {
		width: 100%;
		border-bottom: 1px solid #edf1f7;
	}

	.ck-menu li:last-child {
		border-bottom: 0;
	}

	.ck-menu a {
		display: block;
		width: 100%;
		padding: 12px 0;
		font-size: 14px;
	}

	.ck-nav__meta {
		justify-content: space-between;
		padding-top: 8px;
		border-top: 1px solid #edf1f7;
		flex-wrap: wrap;
	}

	.ck-home-hero__grid {
		min-height: auto;
		padding: 38px 0 0;
	}

	.ck-home-hero__content {
		padding: 0 0 30px;
	}

	.ck-home-hero h1 {
		font-size: clamp(44px, 13vw, 68px);
	}

	.ck-home-hero__actions,
	.ck-footer-form,
	.ck-actions {
		flex-direction: column;
	}

	.ck-button,
	.ck-footer-form button {
		width: 100%;
	}

	.ck-floating-actions {
		right: 12px;
		left: 12px;
		bottom: 18px;
		align-items: stretch;
	}

	.ck-whatsapp-widget,
	.ck-floating-actions__top {
		align-self: flex-end;
	}

	.ck-floating-actions__cta {
		width: 100%;
	}

	.ck-whatsapp-widget__panel {
		right: 0;
		left: auto;
		width: min(100vw - 28px, 360px);
	}

	.ck-home-about,
	.ck-home-treatments,
	.ck-home-testimonials {
		padding: 56px 0;
	}

	.ck-home-testimonials__marquee {
		margin-top: 28px;
		mask-image: none;
		-webkit-mask-image: none;
	}

	.ck-home-testimonials__track {
		animation-duration: 32s;
	}

	.ck-testimonial-card {
		flex-basis: 300px;
		padding: 24px;
	}

	.ck-about-hero {
		padding: 44px 0 28px;
	}

	.ck-about-hero__content h1 {
		font-size: clamp(40px, 12vw, 56px);
	}

	.ck-about-hero__lead {
		font-size: 19px;
	}

	.ck-about-badge {
		position: static;
		max-width: none;
		margin-top: 18px;
	}

	.ck-about-block,
	.ck-about-sidecard,
	.ck-about-timeline__item {
		padding: 24px;
	}

	.ck-contact-map-card__head {
		padding: 24px 24px 0;
	}

	.ck-contact-map-card__head h2 {
		font-size: 28px;
	}

	.ck-contact-map-frame {
		padding: 18px 18px 0;
	}

	.ck-contact-map-frame iframe {
		height: 420px;
	}

	.ck-contact-map-note {
		padding: 16px 24px 24px;
	}

	.ck-about-block h2,
	.ck-about-sidecard h2 {
		font-size: 28px;
	}

	.ck-about-timeline__item {
		padding-top: 74px;
	}

	.ck-about-timeline__item::before {
		top: 26px;
		left: 24px;
	}

	.ck-about-timeline__year {
		top: 22px;
		right: 24px;
		font-size: 24px;
	}

	.ck-footer-cta,
	.ck-footer-main {
		padding-left: 22px;
		padding-right: 22px;
	}

	.ck-footer-main {
		margin-top: 72px;
	}

	.ck-cta-box {
		flex-direction: column;
		align-items: flex-start;
	}
}
