.sp-process {
	--sp-red: #27b7b2;
	--sp-red-dark: #20a39f;
	--sp-ink: #17191d;
	--sp-text: #61656d;
	--sp-line: #d8dadd;
	--sp-paper: #f4f3f0;
	position: relative;
	left: 50%;
	width: 100vw;
	margin-left: -50vw;
	padding: 64px 28px 74px;
	background:
		linear-gradient(90deg, rgba(39,183,178,.035) 0, rgba(39,183,178,0) 27%),
		#f4f3f0;
	box-sizing: border-box;
	overflow: clip;
}

.sp-process,
.sp-process * { box-sizing: border-box; }

.sp-process button,
.sp-process input,
.sp-process select,
.sp-process textarea { font: inherit; }

.sp-process__inner {
	width: min(100%, 1420px);
	margin: 0 auto;
}

.sp-process__header {
	max-width: 760px;
	margin: 0 auto 42px;
	text-align: center;
}

.sp-process__eyebrow {
	display: inline-block;
	margin-bottom: 10px;
	color: var(--sp-red);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.sp-process__title {
	margin: 0 0 11px;
	color: var(--sp-ink);
	font-size: clamp(31px, 3.1vw, 45px);
	font-weight: 760;
	line-height: 1.16;
	letter-spacing: -.035em;
}

.sp-process__intro {
	margin: 0;
	color: var(--sp-text);
	font-size: 15px;
	line-height: 1.65;
}

.sp-process__layout {
	display: grid;
	grid-template-columns: minmax(0, 1.7fr) minmax(355px, .78fr);
	gap: clamp(42px, 5vw, 84px);
	align-items: stretch;
}

.sp-process__content {
	min-width: 0;
	padding-right: clamp(0px, 1vw, 16px);
}

.sp-process__timeline {
	width: 100%;
}

.sp-process__step {
	display: grid;
	grid-template-columns: minmax(250px, .92fr) 56px minmax(300px, 1.16fr);
	align-items: center;
	min-height: 76px;
}

.sp-process__left {
	display: flex;
	align-items: center;
	gap: 13px;
	padding-right: 22px;
}

.sp-process__number {
	flex: 0 0 36px;
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	border: 1px solid rgba(39,183,178,.32);
	border-radius: 50%;
	background: transparent;
	color: var(--sp-red);
	font-size: 14px;
	font-weight: 800;
	line-height: 1;
}

.sp-process__step-title {
	margin: 0;
	color: var(--sp-ink);
	font-size: 16px;
	font-weight: 720;
	line-height: 1.35;
	letter-spacing: -.01em;
}

.sp-process__rail {
	position: relative;
	align-self: stretch;
	display: flex;
	justify-content: center;
	align-items: center;
}

.sp-process__rail::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 1px;
	background: repeating-linear-gradient(to bottom, rgba(39,183,178,.55) 0 4px, transparent 4px 9px);
	transform: translateX(-50%) scaleY(0);
	transform-origin: top;
	transition: transform .95s cubic-bezier(.25,.8,.25,1);
}

.sp-process.is-in-view .sp-process__rail::before {
	transform: translateX(-50%) scaleY(1);
}

.sp-process__step:first-child .sp-process__rail::before { top: 50%; }
.sp-process__step:last-child .sp-process__rail::before { bottom: 50%; }

.sp-process__rail span {
	position: relative;
	z-index: 2;
	display: block;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--sp-red);
	box-shadow: 0 0 0 4px var(--sp-paper);
}

.sp-process__description {
	margin: 0;
	padding-left: 25px;
	color: var(--sp-text);
	font-size: 13.5px;
	line-height: 1.58;
}

.sp-process__aside {
	position: relative;
	min-width: 0;
}

.sp-process__aside-sticky {
	position: sticky;
	top: 112px;
	min-height: 100%;
	display: flex;
	align-items: center;
}

.sp-process__cta,
.sp-application,
.sp-success {
	width: 100%;
	background: #fff;
	border: 1px solid rgba(23,25,29,.12);
}

.sp-process__cta {
	padding: clamp(34px, 3.4vw, 48px);
}

.sp-process__cta-kicker {
	display: block;
	margin-bottom: 15px;
	color: var(--sp-red);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.sp-process__cta h3 {
	margin: 0 0 13px;
	color: var(--sp-ink);
	font-size: clamp(26px, 2.3vw, 34px);
	font-weight: 750;
	line-height: 1.17;
	letter-spacing: -.03em;
}

.sp-process__cta p {
	margin: 0 0 27px;
	color: var(--sp-text);
	font-size: 14px;
	line-height: 1.65;
}

.sp-primary-button,
.sp-secondary-button {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	min-height: 49px;
	padding: 0 19px;
	border-radius: 2px;
	font-size: 13px;
	font-weight: 800;
	cursor: pointer;
	transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.sp-primary-button {
	width: 100%;
	border: 1px solid var(--sp-red);
	background: var(--sp-red);
	color: #fff;
}

.sp-primary-button:hover {
	border-color: var(--sp-red-dark);
	background: var(--sp-red-dark);
}

.sp-secondary-button {
	border: 1px solid #cfd1d4;
	background: transparent;
	color: var(--sp-ink);
}

.sp-secondary-button:hover {
	border-color: #9ca0a6;
	background: #f7f7f6;
}

.sp-process__trust {
	display: grid;
	gap: 10px;
	margin-top: 27px;
	padding-top: 23px;
	border-top: 1px solid #e5e5e3;
	color: #52565d;
	font-size: 12.5px;
}

.sp-process__trust span {
	position: relative;
	padding-left: 21px;
}

.sp-process__trust span::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0;
	color: var(--sp-red);
	font-weight: 900;
}

.sp-flow-stage {
	width: 100%;
	opacity: 0;
	transform: translateY(18px);
	transition: opacity .32s ease, transform .32s ease;
}

.sp-flow-stage.is-active {
	opacity: 1;
	transform: translateY(0);
}

.sp-application {
	position: relative;
	padding: 30px;
}

.sp-application__header {
	position: relative;
	margin-bottom: 25px;
	padding-right: 25px;
}

.sp-application__header h2,
.sp-success h2 {
	margin: 0 0 9px;
	color: var(--sp-ink);
	font-size: 27px;
	font-weight: 750;
	line-height: 1.18;
	letter-spacing: -.025em;
}

.sp-application__header p,
.sp-success p {
	margin: 0;
	color: var(--sp-text);
	font-size: 13px;
	line-height: 1.55;
}

.sp-form-close {
	position: absolute;
	top: -8px;
	right: -5px;
	width: 34px;
	height: 34px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #757980;
	font-size: 27px;
	font-weight: 300;
	line-height: 1;
	cursor: pointer;
}

.sp-form-close:hover { color: var(--sp-red); }

.sp-form-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin-bottom: 25px;
	border-bottom: 1px solid #dedfdf;
}

.sp-form-steps button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 0 3px 12px;
	border: 0;
	border-bottom: 2px solid transparent;
	background: transparent;
	color: #91949a;
	font-size: 11px;
	cursor: default;
}

.sp-form-steps button span {
	display: grid;
	place-items: center;
	width: 21px;
	height: 21px;
	border: 1px solid #cfd1d4;
	border-radius: 50%;
	font-size: 10px;
	font-weight: 800;
}

.sp-form-steps button strong { font-weight: 700; }

.sp-form-steps button.is-active {
	border-bottom-color: var(--sp-red);
	color: var(--sp-ink);
}

.sp-form-steps button.is-active span,
.sp-form-steps button.is-complete span {
	border-color: var(--sp-red);
	background: var(--sp-red);
	color: #fff;
}

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

.sp-form-grid label { display: block; }

.sp-form-grid label > span {
	display: block;
	margin-bottom: 6px;
	color: #33363b;
	font-size: 11.5px;
	font-weight: 750;
}

.sp-form-grid input,
.sp-form-grid select,
.sp-form-grid textarea {
	width: 100%;
	border: 1px solid #d5d6d8;
	border-radius: 1px;
	background: #fff;
	color: #24272b;
	font-size: 13px;
	outline: none;
	transition: border-color .18s ease, box-shadow .18s ease;
}

.sp-form-grid input,
.sp-form-grid select {
	height: 43px;
	padding: 0 11px;
}

.sp-form-grid textarea {
	padding: 10px 11px;
	resize: vertical;
}

.sp-form-grid input:focus,
.sp-form-grid select:focus,
.sp-form-grid textarea:focus {
	border-color: var(--sp-red);
	box-shadow: 0 0 0 2px rgba(39,183,178,.10);
}

.sp-form-grid .is-invalid {
	border-color: var(--sp-red);
	background: #fffafa;
}

.sp-form-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-top: 22px;
}

.sp-form-actions--end { justify-content: flex-end; }

.sp-form-actions .sp-primary-button {
	width: auto;
	min-width: 140px;
}

.sp-form-summary {
	padding: 17px;
	border: 1px solid #dedfdf;
	background: #f7f7f5;
}

.sp-form-summary h3 {
	margin: 0 0 14px;
	color: var(--sp-ink);
	font-size: 16px;
}

.sp-form-summary__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 8px;
}

.sp-form-summary__item {
	padding-bottom: 8px;
	border-bottom: 1px solid #e0e1e0;
}

.sp-form-summary__item:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.sp-form-summary__item small {
	display: block;
	margin-bottom: 2px;
	color: #8a8d92;
	font-size: 9px;
	font-weight: 800;
	text-transform: uppercase;
}

.sp-form-summary__item strong {
	color: #303338;
	font-size: 12px;
	font-weight: 650;
	word-break: break-word;
}

.sp-consent {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	margin-top: 17px;
	color: #5d6168;
	font-size: 11px;
	line-height: 1.45;
}

.sp-consent input {
	width: 16px;
	height: 16px;
	margin-top: 1px;
	accent-color: var(--sp-red);
}

.sp-success {
	padding: 42px 30px;
	text-align: left;
}

.sp-success__icon {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	margin-bottom: 21px;
	border-radius: 50%;
	background: var(--sp-red);
	color: #fff;
	font-size: 22px;
	font-weight: 900;
}

.sp-success .sp-secondary-button { margin-top: 22px; }

/* Giriş animasyonları: ölçülü ve içerik odaklı */
[data-animate-header] {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity .7s ease, transform .7s ease;
}

[data-animate-step] .sp-process__left {
	opacity: 0;
	transform: translateX(-24px);
	transition: opacity .55s ease, transform .55s ease;
}

[data-animate-step] .sp-process__description {
	opacity: 0;
	transform: translateX(24px);
	transition: opacity .55s ease, transform .55s ease;
}

[data-animate-step] .sp-process__rail span {
	opacity: 0;
	transform: scale(.65);
	transition: opacity .35s ease, transform .35s ease;
}

[data-animate-cta] {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity .65s ease, transform .65s ease;
}

.sp-process.is-in-view [data-animate-header],
.sp-process.is-in-view [data-animate-cta],
.sp-process.is-in-view [data-animate-step] .sp-process__left,
.sp-process.is-in-view [data-animate-step] .sp-process__description,
.sp-process.is-in-view [data-animate-step] .sp-process__rail span {
	opacity: 1;
	transform: none;
}

.sp-process.is-in-view [data-animate-step]:nth-child(1) > * { transition-delay: .12s; }
.sp-process.is-in-view [data-animate-step]:nth-child(2) > * { transition-delay: .21s; }
.sp-process.is-in-view [data-animate-step]:nth-child(3) > * { transition-delay: .30s; }
.sp-process.is-in-view [data-animate-step]:nth-child(4) > * { transition-delay: .39s; }
.sp-process.is-in-view [data-animate-step]:nth-child(5) > * { transition-delay: .48s; }
.sp-process.is-in-view [data-animate-step]:nth-child(6) > * { transition-delay: .57s; }
.sp-process.is-in-view [data-animate-step]:nth-child(7) > * { transition-delay: .66s; }
.sp-process.is-in-view [data-animate-cta] { transition-delay: .34s; }

@media (max-width: 1080px) {
	.sp-process__layout {
		grid-template-columns: minmax(0, 1.35fr) minmax(330px, .8fr);
		gap: 38px;
	}

	.sp-process__step {
		grid-template-columns: minmax(210px, .9fr) 48px minmax(245px, 1.1fr);
	}

	.sp-process__description { padding-left: 18px; }
}

@media (max-width: 850px) {
	.sp-process {
		padding: 54px 20px 64px;
		overflow: hidden;
	}

	.sp-process__header {
		margin-bottom: 36px;
		text-align: left;
	}

	.sp-process__layout {
		grid-template-columns: 1fr;
		gap: 38px;
	}

	.sp-process__aside-sticky {
		position: static;
		display: block;
	}

	.sp-process__step {
		grid-template-columns: 48px 1fr;
		align-items: start;
		min-height: 0;
		padding-bottom: 25px;
	}

	.sp-process__left {
		grid-column: 2;
		grid-row: 1;
		padding: 0;
	}

	.sp-process__rail {
		grid-column: 1;
		grid-row: 1 / span 2;
		min-height: 100%;
	}

	.sp-process__description {
		grid-column: 2;
		grid-row: 2;
		padding: 7px 0 0 49px;
	}

	.sp-process__rail::before { bottom: -25px; }
	.sp-process__step:first-child .sp-process__rail::before { top: 18px; }
	.sp-process__step:last-child .sp-process__rail::before { bottom: calc(100% - 18px); }

	.sp-process__cta,
	.sp-application,
	.sp-success {
		max-width: 620px;
		margin: 0 auto;
	}
}

@media (max-width: 520px) {
	.sp-process { padding: 46px 15px 54px; }
	.sp-process__title { font-size: 31px; }
	.sp-process__step { grid-template-columns: 42px 1fr; }
	.sp-process__number { width: 34px; height: 34px; flex-basis: 34px; }
	.sp-process__description { padding-left: 47px; }
	.sp-process__cta { padding: 30px 23px; }
	.sp-application { padding: 26px 20px; }

	.sp-form-steps button strong { display: none; }
	.sp-form-actions {
		align-items: stretch;
		flex-direction: column-reverse;
	}
	.sp-form-actions .sp-primary-button,
	.sp-form-actions .sp-secondary-button {
		width: 100%;
	}
	.sp-form-actions--end { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
	.sp-process *,
	.sp-process *::before,
	.sp-process *::after {
		scroll-behavior: auto !important;
		animation: none !important;
		transition: none !important;
	}
	[data-animate-header],
	[data-animate-cta],
	[data-animate-step] .sp-process__left,
	[data-animate-step] .sp-process__description,
	[data-animate-step] .sp-process__rail span {
		opacity: 1 !important;
		transform: none !important;
	}
}


/* v1.4.1 — v1.3 form görünümü geri getirildi */
.sp-process__layout {
	grid-template-columns: minmax(0, 1fr) minmax(500px, 560px);
}

.sp-application {
	max-width: none;
	margin: 0;
	padding: 42px;
	border: 1px solid rgba(17, 19, 24, .08);
	border-radius: 16px;
	background: rgba(255,255,255,.96);
	box-shadow: 0 25px 70px rgba(28, 40, 65, .09);
}

.sp-application__header {
	max-width: 650px;
	margin: 0 auto 35px;
	padding-right: 0;
	text-align: center;
}

.sp-application__header h2,
.sp-success h2 {
	margin: 0 0 12px;
	color: var(--sp-ink);
	font-size: clamp(29px, 2.5vw, 39px);
	line-height: 1.2;
	font-weight: 800;
}

.sp-application__header p,
.sp-success p {
	margin: 0;
	color: var(--sp-text);
	font-size: 15px;
	line-height: 1.7;
}

.sp-form-close { display: none; }

.sp-form-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin-bottom: 38px;
	border-bottom: 1px solid #e1e4e9;
}

.sp-form-steps button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 0 8px 17px;
	border: 0;
	border-bottom: 3px solid transparent;
	background: transparent;
	color: #8b919c;
	font-size: 12px;
	font-weight: 750;
	cursor: default;
	white-space: nowrap;
}

.sp-form-steps button span {
	display: grid;
	place-items: center;
	flex: 0 0 25px;
	width: 25px;
	height: 25px;
	border: 0;
	border-radius: 50%;
	background: #e5e8ee;
	font-size: 11px;
	font-weight: 750;
}

.sp-form-steps button.is-active {
	border-bottom-color: var(--sp-red);
	color: var(--sp-ink);
}

.sp-form-steps button.is-active span,
.sp-form-steps button.is-complete span {
	border-color: transparent;
	background: var(--sp-red);
	color: #fff;
}

.sp-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
}

.sp-form-grid label > span {
	margin-bottom: 8px;
	color: #252932;
	font-size: 13px;
	font-weight: 750;
}

.sp-form-grid input,
.sp-form-grid select,
.sp-form-grid textarea {
	border: 1px solid #d7dce5;
	border-radius: 7px;
	background: #fff;
	color: #252932;
	font-size: 14px;
	transition: border .2s ease, box-shadow .2s ease;
}

.sp-form-grid input,
.sp-form-grid select {
	height: 50px;
	padding: 0 14px;
}

.sp-form-grid textarea {
	padding: 13px 14px;
}

.sp-form-grid input:focus,
.sp-form-grid select:focus,
.sp-form-grid textarea:focus {
	border-color: var(--sp-red);
	box-shadow: 0 0 0 3px rgba(39, 183, 178, .10);
}

.sp-form-grid__full { grid-column: 1 / -1; }

.sp-form-actions {
	gap: 14px;
	margin-top: 32px;
}

.sp-form-actions .sp-primary-button {
	width: auto;
	min-width: 150px;
}

.sp-form-summary {
	padding: 25px;
	border: 1px solid #e1e4e9;
	border-radius: 10px;
	background: #f7f8fb;
}

.sp-form-summary h3 {
	margin: 0 0 7px;
	color: var(--sp-ink);
	font-size: 20px;
}

.sp-form-summary > p {
	margin: 0 0 22px;
	color: var(--sp-text);
	font-size: 13px;
}

.sp-form-summary__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 15px;
}

.sp-form-summary__item {
	padding: 13px 15px;
	border: 0;
	border-radius: 7px;
	background: #fff;
}

.sp-form-summary__item small {
	margin-bottom: 5px;
	font-size: 11px;
}

.sp-form-summary__item strong {
	font-size: 13px;
}

.sp-consent {
	gap: 11px;
	margin-top: 24px;
	font-size: 13px;
	line-height: 1.55;
}

.sp-consent input {
	width: 18px;
	height: 18px;
	margin-top: 2px;
}

.sp-back-to-process {
	display: block;
	margin: 28px auto 0;
	padding: 7px;
	border: 0;
	background: transparent;
	color: #717783;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
}

.sp-back-to-process:hover { color: var(--sp-red); }

@media (max-width: 1180px) {
	.sp-process__layout {
		grid-template-columns: minmax(0, 1fr) minmax(440px, 500px);
		gap: 34px;
	}

	.sp-application { padding: 36px 30px; }

	.sp-form-steps button {
		font-size: 11px;
		gap: 5px;
		padding-left: 3px;
		padding-right: 3px;
	}
}

@media (max-width: 850px) {
	.sp-process__layout { grid-template-columns: 1fr; }

	.sp-application {
		max-width: 920px;
		padding: 38px 28px;
	}

	.sp-form-steps button {
		font-size: 12px;
		gap: 8px;
	}
}

@media (max-width: 600px) {
	.sp-application {
		padding: 30px 18px;
		border-radius: 11px;
	}

	.sp-application__header { text-align: left; }

	.sp-form-steps button {
		padding: 0 4px 13px;
		font-size: 10px;
		gap: 5px;
		white-space: normal;
	}

	.sp-form-steps button span {
		width: 22px;
		height: 22px;
		flex-basis: 22px;
	}

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

	.sp-form-grid__full { grid-column: auto; }
}


/* v1.4.2 — sağ panel yüksekliği, ortalama ve kart görünümü */
.sp-process__layout {
	align-items: stretch;
}

.sp-process__aside {
	display: flex;
	min-height: 100%;
}

.sp-process__aside-sticky {
	width: 100%;
	height: 100%;
	min-height: 100%;
	align-items: stretch;
}

.sp-process__cta,
.sp-application,
.sp-success {
	min-height: 100%;
	border: 1px solid #e8e8e8;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.sp-process__cta {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 48px;
	text-align: center;
}

.sp-process__cta-kicker,
.sp-process__cta h3 {
	width: 100%;
	text-align: center;
}

.sp-process__cta p {
	max-width: 470px;
	text-align: center;
}

.sp-process__trust {
	width: 100%;
	justify-items: center;
	text-align: center;
}

.sp-process__trust span {
	display: inline-block;
}

.sp-flow-stage {
	height: 100%;
}

.sp-flow-stage.is-active {
	display: flex;
}

.sp-application {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
}

.sp-success {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	text-align: center;
}

@media (max-width: 850px) {
	.sp-process__aside {
		display: block;
	}

	.sp-process__aside-sticky,
	.sp-flow-stage {
		height: auto;
		min-height: 0;
	}

	.sp-process__cta,
	.sp-application,
	.sp-success {
		min-height: 0;
	}

	.sp-process__cta {
		padding: 40px 30px;
	}
}

@media (max-width: 520px) {
	.sp-process__cta {
		padding: 34px 22px;
	}
}

/* v1.4.5 — filled timeline numbers; v1.4.4 stable right-panel swap */
.sp-process__number {
	border-color: var(--sp-red);
	background: var(--sp-red);
	color: #fff;
}

.sp-process__rail span {
	background: var(--sp-red);
	color: #fff;
}

.sp-process__rail::before {
	background: repeating-linear-gradient(
		to bottom,
		rgba(39, 183, 178, .58) 0 4px,
		transparent 4px 9px
	);
}

.sp-process__aside-sticky {
	display: flex;
	align-items: center;
	width: 100%;
	height: auto;
	min-height: 100%;
}

.sp-process__cta,
.sp-flow-stage {
	flex: 0 0 100%;
	width: 100%;
	min-width: 0;
}

.sp-process__cta {
	background: transparent;
	box-shadow: none;
	border: 1px solid #e7e7e7;
}

.sp-flow-stage {
	height: auto;
	margin: 0;
}

.sp-flow-stage.is-active {
	display: block;
	width: 100%;
}

.sp-application {
	width: 100%;
	max-width: none;
	margin: 0;
	background: #fff;
	box-shadow: 0 25px 70px rgba(28, 40, 65, .09);
}

.sp-process [hidden] {
	display: none !important;
}

@media (max-width: 850px) {
	.sp-process__aside-sticky {
		display: block;
		min-height: 0;
	}
}


/* v1.4.7 — reference layout video stories section */
.sp-stories {
	position: relative;
	left: 50%;
	width: 100vw;
	margin: 78px 0 -74px -50vw;
	padding: 48px 24px 58px;
	background: #fff;
	overflow: hidden;
}

.sp-stories__canvas {
	position: relative;
	width: min(100%, 1180px);
	height: 430px;
	margin: 0 auto;
}

.sp-stories__video {
	position: absolute;
	z-index: 1;
	display: block;
	padding: 0;
	border: 0;
	border-radius: 12px;
	background: #e7eeee;
	box-shadow: none;
	overflow: hidden;
	cursor: pointer;
	transition: transform .25s ease;
}

.sp-stories__video:not(:disabled):hover {
	z-index: 3;
	transform: scale(1.05);
}

.sp-stories__video:disabled { cursor: default; }

.sp-stories__video video,
.sp-stories__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sp-stories__placeholder {
	background: linear-gradient(135deg, rgba(39,183,178,.20), rgba(39,183,178,.05)), #edf4f4;
}

/* Referans görseldeki yay biçimli altı kutu */
.sp-stories__video--1 { top: 142px; left: 0; width: 132px; height: 132px; }
.sp-stories__video--2 { top: 70px; left: 155px; width: 132px; height: 132px; }
.sp-stories__video--3 { top: 0; left: 340px; width: 132px; height: 132px; }
.sp-stories__video--4 { top: 0; right: 340px; width: 132px; height: 132px; }
.sp-stories__video--5 { top: 70px; right: 155px; width: 132px; height: 132px; }
.sp-stories__video--6 { top: 142px; right: 0; width: 132px; height: 132px; }

.sp-stories__content {
	position: absolute;
	top: 184px;
	left: 50%;
	z-index: 2;
	width: min(430px, 42vw);
	text-align: center;
	transform: translateX(-50%);
}

.sp-stories__content h2 {
	margin: 0 0 12px;
	color: #15343d;
	font-size: clamp(24px, 2.25vw, 34px);
	font-weight: 750;
	line-height: 1.12;
	letter-spacing: -.035em;
}

.sp-stories__content p {
	max-width: 390px;
	margin: 0 auto 18px;
	color: #6b787d;
	font-size: 14px;
	line-height: 1.55;
}

.sp-stories__whatsapp {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 43px;
	padding: 0 21px;
	border-radius: 8px;
	background: #25d366;
	color: #fff !important;
	font-size: 13px;
	font-weight: 800;
	text-decoration: none !important;
	transition: transform .2s ease;
}

.sp-stories__whatsapp:hover { transform: translateY(-1px); }

.sp-video-modal {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: grid;
	place-items: center;
	padding: 28px;
}

.sp-video-modal[hidden] { display: none !important; }

.sp-video-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(5, 10, 14, .86);
	backdrop-filter: blur(6px);
}

.sp-video-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(100%, 1020px);
	border-radius: 18px;
	background: #000;
	box-shadow: 0 30px 90px rgba(0,0,0,.45);
	overflow: visible;
}

.sp-video-modal__player {
	display: block;
	width: 100%;
	max-height: 82vh;
	border-radius: 18px;
	background: #000;
}

.sp-video-modal__close {
	position: absolute;
	top: -16px;
	right: -16px;
	z-index: 2;
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #fff;
	color: #111;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 8px 25px rgba(0,0,0,.3);
}

body.sp-video-modal-open { overflow: hidden; }

@media (max-width: 1050px) {
	.sp-stories__canvas { width: min(100%, 900px); height: 400px; }
	.sp-stories__video--1 { left: 0; }
	.sp-stories__video--2 { left: 125px; }
	.sp-stories__video--3 { left: 270px; }
	.sp-stories__video--4 { right: 270px; }
	.sp-stories__video--5 { right: 125px; }
	.sp-stories__video--6 { right: 0; }
	.sp-stories__content { top: 178px; width: min(400px, 44vw); }
}

@media (max-width: 780px) {
	.sp-stories { padding: 52px 20px 60px; }
	.sp-stories__canvas {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 14px;
		height: auto;
	}
	.sp-stories__content {
		position: static;
		grid-column: 1 / -1;
		grid-row: 1;
		width: 100%;
		padding: 0 8px 18px;
		transform: none;
	}
	.sp-stories__video {
		position: relative;
		top: auto;
		right: auto;
		bottom: auto;
		left: auto;
		width: 100%;
		height: auto;
		aspect-ratio: 1 / 1;
		border-radius: 12px;
	}
	.sp-stories__content h2 { font-size: clamp(27px, 7vw, 38px); }
}

@media (max-width: 520px) {
	.sp-stories__canvas { grid-template-columns: 1fr; }
	.sp-video-modal { padding: 16px; }
	.sp-video-modal__close { top: -12px; right: -8px; }
}


/* Service detail breadcrumb / page heading */
.sp-service-hero {
	position: relative;
	left: 50%;
	width: 100vw;
	margin-left: -50vw;
	padding: 42px 28px 44px;
	border-top: 2px solid #27b7b2;
	background: #eef7f8;
	box-sizing: border-box;
}

.sp-service-hero,
.sp-service-hero * {
	box-sizing: border-box;
}

.sp-service-hero__inner {
	width: min(100%, 1180px);
	margin: 0 auto;
}

.sp-service-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin-bottom: 25px;
	color: #68737c;
	font-size: 14px;
	line-height: 1.5;
}

.sp-service-breadcrumb a {
	color: inherit;
	text-decoration: none;
	transition: color .2s ease;
}

.sp-service-breadcrumb a:hover {
	color: #27b7b2;
}

.sp-service-breadcrumb span[aria-hidden="true"] {
	color: #9aa5ab;
}

.sp-service-breadcrumb [aria-current="page"] {
	color: #59636b;
}

.sp-service-hero__title {
	margin: 0 0 18px;
	color: #121820;
	font-size: clamp(31px, 3vw, 43px);
	font-weight: 800;
	line-height: 1.14;
	letter-spacing: -.035em;
}

.sp-service-hero__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 13px 26px;
	color: #53616a;
	font-size: 14px;
	line-height: 1.5;
}

.sp-service-hero__meta span {
	position: relative;
}

.sp-service-hero__meta span + span::before {
	content: "";
	position: absolute;
	left: -14px;
	top: 50%;
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: #27b7b2;
	transform: translateY(-50%);
}

@media (max-width: 767px) {
	.sp-service-hero {
		padding: 30px 20px 32px;
	}

	.sp-service-breadcrumb {
		gap: 7px;
		margin-bottom: 18px;
		font-size: 12px;
	}

	.sp-service-hero__title {
		margin-bottom: 14px;
		font-size: 30px;
	}

	.sp-service-hero__meta {
		gap: 8px 20px;
		font-size: 12.5px;
	}
}
