/**
 * STG Meeting Confirmed — Two-column layout
 *
 * Glassmorphism dark theme — premium software feel.
 * Left: confirmation message. Right: meeting details card.
 * No-scroll design for desktop.
 */

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

.stg-mc {
	max-width: 1080px;
	margin: 0 auto;
	padding: 60px 32px 80px;
	font-family: 'Helvetica', 'Arial', sans-serif;
	color: rgba(255, 255, 255, 0.9);
}

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

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

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

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

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

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

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

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

.stg-mc__subtitle {
	font-size: 13px;
	color: rgba(26, 138, 74, 0.9);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin: 0 0 28px;
}

.stg-mc__message p {
	font-size: 14px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.6);
	margin: 0 0 12px;
}

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

.stg-mc__message strong {
	color: rgba(255, 255, 255, 0.9);
}

/* WhatsApp — inside left column */

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

.stg-mc__contact p {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.4);
	margin: 0 0 12px;
}

.stg-mc__wa-btn {
	display: inline-block;
	font-weight: 700;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	padding: 12px 24px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: transparent;
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	transition: all 0.2s ease;
}

.stg-mc__wa-btn:hover {
	border-color: rgba(255, 255, 255, 0.35);
	color: #ffffff;
	background: rgba(255, 255, 255, 0.04);
}

/* ------------------------------------------------
   RIGHT COLUMN — Meeting details card
   ------------------------------------------------ */

.stg-mc__card {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	text-align: left;
	overflow: hidden;
}

.stg-mc__card-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 24px;
	background: rgba(255, 255, 255, 0.03);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.stg-mc__card-label {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: rgba(255, 255, 255, 0.5);
}

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

@keyframes stg-mc-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-mc__card-body {
	padding: 4px 0;
}

.stg-mc__detail {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 13px 24px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

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

.stg-mc__detail-key {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.4);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.stg-mc__detail-val {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.9);
	font-weight: 600;
}

/* Meet button inside card */

.stg-mc__card-footer {
	padding: 20px 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	text-align: center;
}

.stg-mc__meet-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	padding: 14px 24px;
	background: #ffffff;
	color: #050507;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	text-decoration: none;
	transition: all 0.2s ease;
	box-sizing: border-box;
}

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

.stg-mc__save-note {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.3);
	margin: 12px 0 0;
}

/* ------------------------------------------------
   BOTTOM — Next steps (horizontal)
   ------------------------------------------------ */

.stg-mc__steps {
	text-align: left;
}

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

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

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

.stg-mc__step-num {
	width: 28px;
	height: 28px;
	min-width: 28px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.6);
	font-weight: 700;
	font-size: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 1px;
}

.stg-mc__step-body strong {
	font-weight: 700;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.85);
	display: block;
	margin-bottom: 4px;
}

.stg-mc__step-body p {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.4);
	margin: 0;
	line-height: 1.5;
}

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

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

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

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

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

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

	.stg-mc__card-header,
	.stg-mc__card-footer {
		padding: 16px 20px;
	}
}
