/* Softlance — Thank You Page */

body.sl-thank-you-page {
	background: #f1f5f9;
}

.sl-thank-you {
	overflow: hidden;
}

/* ── Hero ── */
.sl-thank-you__hero {
	position: relative;
	padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem);
	background: linear-gradient(165deg, #0a1128 0%, #111827 45%, #1e293b 100%);
	color: #fff;
}

.sl-thank-you__hero-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.22) 0%, transparent 45%),
		radial-gradient(circle at 80% 70%, rgba(99, 102, 241, 0.15) 0%, transparent 40%),
		linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: auto, auto, 48px 48px, 48px 48px;
}

.sl-thank-you__hero-inner {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: center;
}

.sl-thank-you__success-card {
	width: min(100%, 42rem);
	text-align: center;
	padding: clamp(2rem, 4vw, 2.75rem) clamp(1.5rem, 4vw, 2.5rem);
	border-radius: 1.25rem;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow:
		0 24px 48px rgba(0, 0, 0, 0.25),
		inset 0 1px 0 rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(12px);
}

.sl-thank-you__icon-wrap {
	position: relative;
	width: 5.5rem;
	height: 5.5rem;
	margin: 0 auto 1.5rem;
}

.sl-thank-you__icon-ring {
	position: absolute;
	inset: -0.5rem;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(34, 197, 94, 0.25) 0%, transparent 70%);
	animation: sl-thank-you-pulse 2.5s ease-in-out infinite;
}

@keyframes sl-thank-you-pulse {
	0%, 100% { transform: scale(1); opacity: 0.7; }
	50% { transform: scale(1.08); opacity: 1; }
}

.sl-thank-you__icon {
	position: relative;
	z-index: 1;
	display: block;
}

.sl-thank-you__icon-circle {
	stroke: rgba(34, 197, 94, 0.35);
}

.sl-thank-you__icon-check {
	stroke: #22c55e;
	stroke-dasharray: 48;
	stroke-dashoffset: 48;
	animation: sl-thank-you-draw 0.7s ease forwards 0.25s;
}

@keyframes sl-thank-you-draw {
	to { stroke-dashoffset: 0; }
}

.sl-thank-you__eyebrow {
	display: inline-block;
	margin: 0 0 0.875rem;
	padding: 0.35rem 0.875rem;
	border-radius: 999px;
	background: rgba(34, 197, 94, 0.15);
	border: 1px solid rgba(34, 197, 94, 0.35);
	color: #86efac;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.sl-thank-you__title {
	font-family: Poppins, 'Plus Jakarta Sans', sans-serif;
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	line-height: 1.15;
	margin: 0 0 1rem;
	font-weight: 700;
}

.sl-thank-you__title span:first-child {
	display: block;
	color: #f8fafc;
}

.sl-thank-you__highlight {
	display: block;
	margin-top: 0.25rem;
	background: linear-gradient(90deg, #60a5fa, #818cf8);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.sl-thank-you__description {
	margin: 0 auto 1.25rem;
	max-width: 32rem;
	color: #94a3b8;
	font-size: 1rem;
	line-height: 1.65;
}

.sl-thank-you__trust {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.625rem 1.25rem;
	margin: 0 0 1.75rem;
	padding: 0;
	list-style: none;
}

.sl-thank-you__trust li {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	color: #cbd5e1;
	font-size: 0.8125rem;
	font-weight: 500;
}

.sl-thank-you__trust svg {
	color: #22c55e;
	flex-shrink: 0;
}

.sl-thank-you__hero-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem;
}

.sl-thank-you__btn-ghost {
	background: transparent !important;
	border: 1px solid rgba(255, 255, 255, 0.25) !important;
	color: #f8fafc !important;
}

.sl-thank-you__btn-ghost:hover {
	background: rgba(255, 255, 255, 0.08) !important;
	border-color: rgba(255, 255, 255, 0.45) !important;
}

/* ── Body ── */
.sl-thank-you__body {
	padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(3rem, 6vw, 5rem);
}

.sl-thank-you__grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: clamp(1.25rem, 3vw, 2rem);
	align-items: start;
	margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.sl-thank-you__section-title {
	font-family: Poppins, 'Plus Jakarta Sans', sans-serif;
	font-size: clamp(1.25rem, 2.5vw, 1.5rem);
	font-weight: 700;
	color: #0f172a;
	margin: 0 0 1.25rem;
}

.sl-thank-you__section-title--center {
	text-align: center;
	margin-bottom: 1.75rem;
}

/* Timeline */
.sl-thank-you__timeline-card {
	background: #fff;
	border-radius: 1rem;
	padding: clamp(1.5rem, 3vw, 2rem);
	border: 1px solid #e2e8f0;
	box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}

.sl-thank-you__timeline {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.sl-thank-you__timeline-item {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 1rem;
	padding: 1.25rem 0;
	border-bottom: 1px solid #f1f5f9;
}

.sl-thank-you__timeline-item:first-child {
	padding-top: 0;
}

.sl-thank-you__timeline-item:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.sl-thank-you__timeline-num {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 50%;
	background: linear-gradient(135deg, #2563eb, #4f46e5);
	color: #fff;
	font-size: 0.875rem;
	font-weight: 700;
	flex-shrink: 0;
}

.sl-thank-you__timeline-head {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
	gap: 0.375rem 0.75rem;
	margin-bottom: 0.375rem;
}

.sl-thank-you__timeline-head h3 {
	margin: 0;
	font-size: 1rem;
	font-weight: 700;
	color: #0f172a;
}

.sl-thank-you__timeline-time {
	font-size: 0.75rem;
	font-weight: 600;
	color: #2563eb;
	background: #eff6ff;
	padding: 0.2rem 0.625rem;
	border-radius: 999px;
	white-space: nowrap;
}

.sl-thank-you__timeline-body p {
	margin: 0;
	color: #64748b;
	font-size: 0.9375rem;
	line-height: 1.6;
}

/* Aside */
.sl-thank-you__aside {
	background: #fff;
	border-radius: 1rem;
	padding: clamp(1.5rem, 3vw, 2rem);
	border: 1px solid #e2e8f0;
	box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}

.sl-thank-you__aside-lead {
	margin: -0.5rem 0 1.25rem;
	color: #64748b;
	font-size: 0.9375rem;
	line-height: 1.5;
}

.sl-thank-you__contact-cards {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
	margin-bottom: 1.25rem;
}

.sl-thank-you__contact-card {
	display: grid;
	grid-template-columns: auto 1fr;
	grid-template-rows: auto auto;
	column-gap: 0.875rem;
	row-gap: 0.125rem;
	padding: 0.875rem 1rem;
	border-radius: 0.75rem;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	text-decoration: none;
	transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.sl-thank-you__contact-card:hover {
	border-color: #2563eb;
	background: #eff6ff;
	transform: translateY(-1px);
}

.sl-thank-you__contact-card--whatsapp:hover {
	border-color: #22c55e;
	background: #f0fdf4;
}

.sl-thank-you__contact-icon {
	grid-row: 1 / span 2;
	align-self: center;
	font-size: 1.25rem;
}

.sl-thank-you__contact-label {
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #94a3b8;
}

.sl-thank-you__contact-value {
	font-size: 0.9375rem;
	font-weight: 600;
	color: #0f172a;
}

.sl-thank-you__consult-btn {
	width: 100%;
	justify-content: center;
	margin-bottom: 0.875rem;
}

.sl-thank-you__aside-note {
	margin: 0;
	text-align: center;
	font-size: 0.8125rem;
	color: #94a3b8;
}

/* Explore */
.sl-thank-you__explore-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}

.sl-thank-you__explore-card {
	display: flex;
	flex-direction: column;
	padding: 1.5rem;
	border-radius: 1rem;
	background: #fff;
	border: 1px solid #e2e8f0;
	text-decoration: none;
	transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.sl-thank-you__explore-card:hover {
	border-color: #2563eb;
	box-shadow: 0 12px 32px rgba(37, 99, 235, 0.12);
	transform: translateY(-3px);
}

.sl-thank-you__explore-icon {
	font-size: 1.75rem;
	margin-bottom: 0.75rem;
}

.sl-thank-you__explore-title {
	font-size: 1rem;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 0.375rem;
}

.sl-thank-you__explore-desc {
	font-size: 0.875rem;
	color: #64748b;
	line-height: 1.5;
	margin-bottom: 1rem;
	flex: 1;
}

.sl-thank-you__explore-link {
	font-size: 0.8125rem;
	font-weight: 600;
	color: #2563eb;
}

/* Responsive */
@media (max-width: 960px) {
	.sl-thank-you__grid {
		grid-template-columns: 1fr;
	}

	.sl-thank-you__explore-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 540px) {
	.sl-thank-you__hero-actions {
		flex-direction: column;
		width: 100%;
	}

	.sl-thank-you__hero-actions .softlance-btn {
		width: 100%;
		justify-content: center;
	}

	.sl-thank-you__timeline-head {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (prefers-reduced-motion: reduce) {
	.sl-thank-you__icon-ring,
	.sl-thank-you__icon-check {
		animation: none;
	}

	.sl-thank-you__icon-check {
		stroke-dashoffset: 0;
	}
}
