/**
 * STG Thank You Page — Two-column layout
 *
 * White background version of the meeting-confirmed pattern.
 * Left: confirmation message. Right: plan card + brief CTA.
 * Bottom: steps (3-col horizontal) + registration form.
 */

/* ------------------------------------------------
   Container
   ------------------------------------------------ */

.stg-ty {
	max-width: 1080px;
	margin: 0 auto;
	padding: 60px 32px 80px;
	font-family: 'Helvetica', 'Arial', sans-serif;
	color: #1a1a1a;
}

/* ------------------------------------------------
   Two-column grid
   ------------------------------------------------ */

.stg-ty__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: start;
	margin-bottom: 48px;
}

/* ------------------------------------------------
   LEFT COLUMN — Confirmation message
   ------------------------------------------------ */

.stg-ty__left {
	padding-top: 8px;
}

.stg-ty__icon-wrap {
	display: flex;
	margin-bottom: 24px;
}

.stg-ty__icon {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: #edf7f0;
	border: 1px solid rgba(26, 138, 74, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	animation: stg-ty-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

@keyframes stg-ty-pop {
	0%   { transform: scale(0); opacity: 0; }
	100% { transform: scale(1); opacity: 1; }
}

.stg-ty__title {
	font-family: 'Helvetica', 'Arial', sans-serif;
	font-weight: 700;
	font-size: 32px;
	color: #050507;
	margin: 0 0 6px;
	line-height: 1.15;
	letter-spacing: -0.03em;
}

.stg-ty__tagline {
	font-size: 13px;
	color: #1a8a4a;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin: 0 0 28px;
}

.stg-ty__message p {
	font-size: 14px;
	line-height: 1.7;
	color: #666;
	margin: 0 0 12px;
}

.stg-ty__message p:last-child {
	margin-bottom: 0;
}

/* WhatsApp — inside left column */

.stg-ty__contact {
	margin-top: 32px;
}

.stg-ty__contact p {
	font-size: 13px;
	color: #999;
	margin: 0 0 12px;
}

.stg-ty__wa-btn {
	display: inline-block;
	font-weight: 700;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	padding: 12px 24px;
	border: 1px solid #ddd;
	background: transparent;
	color: #666;
	text-decoration: none;
	transition: all 0.2s ease;
}

.stg-ty__wa-btn:hover {
	border-color: #050507;
	color: #050507;
	background: #fafafa;
}

/* ------------------------------------------------
   RIGHT COLUMN — Plan card + Brief CTA
   ------------------------------------------------ */

.stg-ty__right {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

/* Plan summary card (table-style rows) */

.stg-ty__card {
	background: #fafafa;
	border: 1px solid #e8e8e8;
	text-align: left;
	overflow: hidden;
}

.stg-ty__card-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 24px;
	background: #f5f5f5;
	border-bottom: 1px solid #e8e8e8;
}

.stg-ty__card-label {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #999;
}

.stg-ty__status-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #1a8a4a;
	animation: stg-ty-pulse 2s ease-in-out infinite;
}

@keyframes stg-ty-pulse {
	0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(26, 138, 74, 0.4); }
	50%      { opacity: 0.6; box-shadow: 0 0 0 6px rgba(26, 138, 74, 0); }
}

.stg-ty__card-body {
	padding: 4px 0;
}

.stg-ty__detail {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 13px 24px;
	border-bottom: 1px solid #f0f0f0;
}

.stg-ty__detail--last {
	border-bottom: none;
}

.stg-ty__detail-key {
	font-size: 11px;
	color: #999;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.stg-ty__detail-val {
	font-size: 13px;
	color: #050507;
	font-weight: 600;
}

.stg-ty__detail-val--green {
	color: #1a8a4a;
}

/* Brief CTA card (dark) */

.stg-ty__brief-card {
	background: #050507;
	overflow: hidden;
}

.stg-ty__brief-card-inner {
	padding: 28px 24px;
	text-align: left;
}

.stg-ty__brief-card-icon {
	margin-bottom: 16px;
	opacity: 0.6;
}

.stg-ty__brief-card-title {
	font-family: 'Helvetica', 'Arial', sans-serif;
	font-weight: 700;
	font-size: 16px;
	color: #ffffff;
	margin: 0 0 8px;
	line-height: 1.3;
}

.stg-ty__brief-card-text {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.5);
	margin: 0 0 12px;
	line-height: 1.6;
}

.stg-ty__brief-card-urgency {
	font-weight: 700;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #ff6b6b;
	margin: 0 0 20px;
	line-height: 1.5;
}

.stg-ty__brief-card-btn {
	display: inline-block;
	font-weight: 700;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	padding: 14px 28px;
	background: #ffffff;
	color: #050507;
	text-decoration: none;
	transition: all 0.2s ease;
}

.stg-ty__brief-card-btn:hover {
	background: rgba(255, 255, 255, 0.9);
	transform: translateY(-1px);
	box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

/* ------------------------------------------------
   BOTTOM — Steps (horizontal 3-col)
   ------------------------------------------------ */

.stg-ty__steps {
	text-align: left;
	margin-bottom: 40px;
}

.stg-ty__steps-title {
	font-weight: 700;
	font-size: 16px;
	color: #050507;
	margin: 0 0 20px;
	letter-spacing: -0.01em;
}

.stg-ty__steps-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.stg-ty__step {
	display: flex;
	gap: 12px;
	align-items: flex-start;
}

.stg-ty__step-num {
	width: 28px;
	height: 28px;
	min-width: 28px;
	border-radius: 50%;
	background: #f5f5f5;
	border: 1px solid #e8e8e8;
	color: #666;
	font-weight: 700;
	font-size: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 1px;
}

.stg-ty__step-body strong {
	font-weight: 700;
	font-size: 13px;
	color: #050507;
	display: block;
	margin-bottom: 4px;
}

.stg-ty__step-body p {
	font-size: 12px;
	color: #999;
	margin: 0;
	line-height: 1.5;
}

/* ------------------------------------------------
   Registration form
   ------------------------------------------------ */

.stg-ty__form-section {
	background: #fafafa;
	border: 1px solid #e8e8e8;
	padding: 32px 28px;
	text-align: left;
}

.stg-ty__form-title {
	font-family: 'Manrope', sans-serif;
	font-weight: 700;
	font-size: 18px;
	color: #050507;
	margin: 0 0 8px;
}

.stg-ty__form-subtitle {
	font-size: 13px;
	color: #666;
	margin: 0 0 24px;
	line-height: 1.5;
}

.stg-ty__form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 16px;
	margin-bottom: 24px;
}

.stg-ty__field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.stg-ty__field label {
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #999;
}

.stg-ty__field input {
	font-family: 'Helvetica', 'Arial', sans-serif;
	font-size: 14px;
	color: #1a1a1a;
	padding: 12px 14px;
	border: 1px solid #ddd;
	border-radius: 0;
	background: #ffffff;
	outline: none;
	transition: border-color 0.15s ease;
	-webkit-appearance: none;
	width: 100%;
	box-sizing: border-box;
}

.stg-ty__field input:focus {
	border-color: #050507;
}

.stg-ty__field input::placeholder {
	color: #bbb;
}

.stg-ty__captcha {
	margin-bottom: 20px;
}

.stg-ty__submit {
	font-family: 'Manrope', sans-serif;
	font-weight: 700;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	padding: 14px 32px;
	border: none;
	background: #050507;
	color: #ffffff;
	cursor: pointer;
	transition: background 0.15s ease;
	border-radius: 0;
	-webkit-appearance: none;
}

.stg-ty__submit:hover {
	background: #222;
}

.stg-ty__submit:disabled {
	background: #999;
	cursor: not-allowed;
}

/* Success state */

.stg-ty__form-success {
	text-align: center;
	padding: 20px 0;
}

.stg-ty__form-success-icon {
	width: 48px;
	height: 48px;
	line-height: 48px;
	font-size: 24px;
	background: #edf7f0;
	color: #1a8a4a;
	display: inline-block;
	border-radius: 50%;
	margin-bottom: 16px;
}

.stg-ty__form-success-text {
	font-family: 'Manrope', sans-serif;
	font-weight: 700;
	font-size: 16px;
	color: #1a8a4a;
	margin: 0 0 8px;
}

.stg-ty__form-success-sub {
	font-size: 13px;
	color: #666;
	margin: 0;
	line-height: 1.5;
}

/* ------------------------------------------------
   Responsive — stack on mobile
   ------------------------------------------------ */

@media (max-width: 768px) {
	.stg-ty {
		padding: 40px 16px 60px;
	}

	.stg-ty__grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.stg-ty__title {
		font-size: 26px;
	}

	.stg-ty__steps-list {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.stg-ty__form-grid {
		grid-template-columns: 1fr;
	}

	.stg-ty__detail {
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
		padding: 12px 20px;
	}

	.stg-ty__card-header {
		padding: 16px 20px;
	}

	.stg-ty__brief-card-inner {
		padding: 24px 20px;
	}

	.stg-ty__form-section {
		padding: 24px 20px;
	}
}
