/* ===================================================================
 * TESTIMONIALS
 * =================================================================== */
.gk-testimonials {
	padding: var(--gk-sp-section) 0;
	background: rgba(238, 238, 238, 0.3);
}
.gk-testimonials__inner {
	max-width: var(--gk-container);
	margin: 0 auto;
	padding: 0 var(--gk-px);
}
.gk-testimonials__head {
	text-align: center;
	margin-bottom: 64px;
}
.gk-testimonials__title {
	font-size: var(--gk-fs-h2);
	font-weight: 600;
	line-height: 1.15;
	letter-spacing: -0.02em;
	margin: 0 0 8px;
}
.gk-testimonials__lead {
	font-size: var(--gk-fs-lead);
	color: var(--gk-color-text-muted);
	margin: 0;
}
.gk-testimonials__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}
@media (min-width: 768px) {
	.gk-testimonials__grid { grid-template-columns: repeat(3, 1fr); }
}
.gk-testimonial {
	background: #fff;
	border-radius: var(--gk-radius-lg);
	padding: 32px;
	box-shadow: var(--gk-shadow-sm);
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.gk-testimonial__stars {
	display: flex;
	color: var(--gk-color-primary);
	gap: 2px;
}
.gk-testimonial__stars .material-symbols-outlined {
	font-variation-settings: 'FILL' 1;
}
.gk-testimonial__quote {
	font-style: italic;
	font-size: var(--gk-fs-body);
	line-height: 1.6;
	color: var(--gk-color-text);
	margin: 0;
}
.gk-testimonial__author {
	display: flex;
	align-items: center;
	gap: 14px;
}
.gk-testimonial__author img {
	width: 48px;
	height: 48px;
	border-radius: 9999px;
	object-fit: cover;
	border: 2px solid var(--gk-color-primary-container);
}
.gk-testimonial__author-name {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.05em;
	color: var(--gk-color-dark);
	margin: 0;
}
.gk-testimonial__author-role {
	font-size: 11px;
	color: var(--gk-color-text-muted);
	margin: 0;
}

/* ===================================================================
 * NEWSLETTER
 * =================================================================== */
.gk-newsletter {
	padding: var(--gk-sp-section) 0;
	padding-left: var(--gk-px);
	padding-right: var(--gk-px);
}
.gk-newsletter__inner {
	max-width: var(--gk-container);
	margin: 0 auto;
	background: linear-gradient(135deg, var(--gk-color-dark) 0%, rgba(42, 108, 0, 0.8) 100%);
	border-radius: 40px;
	padding: clamp(40px, 6vw, 96px) clamp(24px, 5vw, 80px);
	color: #fff;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.gk-newsletter__glow {
	position: absolute;
	top: 0;
	right: 0;
	width: 400px;
	height: 400px;
	background: rgba(93, 169, 53, 0.10);
	border-radius: 9999px;
	filter: blur(100px);
	margin-right: -192px;
	margin-top: -192px;
	pointer-events: none;
}
.gk-newsletter__content {
	position: relative;
	z-index: 10;
	max-width: 600px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.gk-newsletter__eyebrow {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--gk-color-accent-bio);
}
.gk-newsletter__title {
	font-size: var(--gk-fs-h2);
	font-weight: 600;
	line-height: 1.15;
	letter-spacing: -0.02em;
	color: #fff;
	margin: 0;
}
.gk-newsletter__lead {
	font-size: var(--gk-fs-lead);
	color: rgba(255,255,255,0.85);
	line-height: 1.6;
	margin: 0;
}
.gk-newsletter__lead strong {
	color: var(--gk-color-accent-bio);
	font-weight: 700;
}
.gk-newsletter__form {
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: stretch;
	justify-content: center;
	padding-top: 8px;
	max-width: 560px;
	margin: 0 auto;
}
@media (min-width: 640px) {
	.gk-newsletter__form { flex-direction: row; align-items: center; }
}
.gk-newsletter input.gk-newsletter__input,
.gk-newsletter__input,
.gk-home input[type=email].gk-newsletter__input {
	flex: 1;
	min-width: 0;
	width: auto;
	height: 56px;
	margin: 0;
	background: rgba(255,255,255,0.10);
	border: 1px solid rgba(255,255,255,0.20);
	color: #fff;
	padding: 0 22px;
	border-radius: 9999px;
	font-family: inherit;
	font-size: 15px;
	font-weight: 500;
	line-height: 1;
	box-sizing: border-box;
	transition: background var(--gk-dur-fast), border-color var(--gk-dur-fast);
	outline: none;
	box-shadow: none;
}
.gk-newsletter__input::placeholder {
	color: rgba(255,255,255,0.55);
	font-weight: 400;
}
.gk-newsletter__input:focus {
	background: rgba(255,255,255,0.18);
	border-color: var(--gk-color-accent-bio);
}
.gk-newsletter__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	height: 56px;
	padding: 0 32px;
	background: var(--gk-color-accent-bio);
	color: #fff;
	border: 0;
	border-radius: 9999px;
	font-family: inherit;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.02em;
	white-space: nowrap;
	transition: all var(--gk-dur-fast);
}
.gk-newsletter__submit:hover {
	background: #4F9028;
	transform: translateY(-1px);
	box-shadow: 0 12px 32px rgba(93, 169, 53, 0.35);
}
.gk-newsletter__disclaimer {
	font-size: 10px;
	color: rgba(255,255,255,0.5);
}

