.gct-wrap, .gct-cta {
	--gct-primary: #CC010A;
	--gct-secondary: #ECB20D;
	font-family: 'Poppins', sans-serif;
	color: #222;
	box-sizing: border-box;
}
.gct-wrap *, .gct-cta * { box-sizing: border-box; }

.gct-wrap {
	max-width: 1200px;
	margin: 0 auto;
	padding: 50px 20px;
}

.gct-notice {
	padding: 16px 20px;
	border-radius: 12px;
	margin-bottom: 30px;
	font-weight: 500;
}
.gct-notice-success { background: #e6f6e9; color: #1b6d33; border: 1px solid #b6e3c0; }
.gct-notice-error   { background: #fdeaea; color: var(--gct-primary); border: 1px solid #f3b9b9; }

.gct-grid {
	display: grid;
	grid-template-columns: 1.2fr .8fr;
	gap: 35px;
}

.gct-card {
	background: #fff;
	border-radius: 20px;
	padding: 35px;
	box-shadow: 0 15px 40px rgba(0,0,0,.08);
}
.gct-card-dark { background: #121212; color: #fff; }

.gct-badge {
	display: inline-block;
	background: var(--gct-secondary);
	color: #111;
	padding: 8px 15px;
	border-radius: 30px;
	font-size: 13px;
	font-weight: 600;
}

.gct-wrap h2 { margin: 18px 0 12px; font-size: 38px; }
.gct-h2-sm { font-size: 34px !important; }
.gct-h2-white { color: #fff !important; }
.gct-desc { line-height: 1.8; margin-top: 20px; opacity: .92; }

.gct-form label { font-weight: 600; display: block; }
.gct-form input,
.gct-form select,
.gct-form textarea {
	width: 100%;
	padding: 15px;
	border: 1px solid #ddd;
	border-radius: 12px;
	margin-top: 8px;
	margin-bottom: 18px;
	font-size: 15px;
	font-family: inherit;
}
.gct-form select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	padding-right: 42px;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' fill='none' stroke='%23555' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 18px center;
	background-size: 13px 8px;
}
.gct-form button {
	background: var(--gct-primary);
	color: #fff;
	border: none;
	padding: 15px 35px;
	border-radius: 50px;
	font-weight: 600;
	cursor: pointer;
	font-size: 15px;
}
.gct-form button:hover { opacity: .9; }

.gct-benefits { margin-top: 25px; }
.gct-benefits li { list-style: none; margin: 18px 0; }

.gct-btn {
	display: inline-block;
	background: var(--gct-primary);
	color: #fff !important;
	padding: 14px 30px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	margin-top: 10px;
}
.gct-btn:hover { opacity: .9; }
.gct-btn-outline {
	background: transparent;
	border: 2px solid var(--gct-secondary);
	color: #fff !important;
}

.gct-center { text-align: center; margin-top: 70px; }
.gct-mt-lg { margin-top: 80px; }

.gct-job-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 25px;
	margin-top: 35px;
}
.gct-job {
	background: #fff;
	border-radius: 18px;
	padding: 25px;
	box-shadow: 0 8px 25px rgba(0,0,0,.08);
}
.gct-job h3 { margin-bottom: 10px; }

.gct-timeline {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
	margin-top: 30px;
}
.gct-step {
	flex: 1;
	min-width: 140px;
	background: #fff;
	padding: 20px;
	border-radius: 16px;
	text-align: center;
	box-shadow: 0 8px 25px rgba(0,0,0,.08);
	font-weight: 600;
	border-bottom: 4px solid var(--gct-secondary);
}

.gct-cta {
	background: #111;
	color: #fff;
	text-align: center;
	padding: 70px 20px;
}
.gct-cta h2 { font-size: 34px; }
.gct-cta p { margin: 15px 0 30px; }

@media (max-width: 900px) {
	.gct-grid { grid-template-columns: 1fr; }
}
