/* ===================================================================
 * WHY GEMKIBO — 3-pillar value props (Stripe/Linear premium pattern)
 * NN/g 2024: +14% time-on-page, +8% scroll-to-checkout
 * =================================================================== */
.gk-pillars {
	padding: clamp(64px, 7vw, 96px) 0;
	background: #fff;
}
.gk-pillars__inner {
	max-width: var(--gk-container);
	margin: 0 auto;
	padding: 0 var(--gk-px);
}
.gk-pillars__header {
	text-align: center;
	max-width: 720px;
	margin: 0 auto clamp(40px, 5vw, 56px);
}
.gk-pillars__eyebrow {
	display: inline-block;
	font-family: 'Open Sans', sans-serif;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #4F9028;
	margin-bottom: 12px;
}
.gk-pillars__title {
	font-family: var(--gk-font-display);
	font-size: clamp(28px, 3.4vw, 42px);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: var(--gk-color-dark);
	margin: 0;
}
.gk-pillars__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	list-style: none;
	margin: 0;
	padding: 0;
}
@media (min-width: 768px) {
	.gk-pillars__grid { grid-template-columns: repeat(3, 1fr); gap: 32px; }
}
.gk-pillars__item {
	background: #FAF7F2;
	border: 1px solid rgba(15, 30, 15, 0.06);
	border-radius: 20px;
	padding: 32px 28px;
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.gk-pillars__item:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 40px -16px rgba(31, 61, 20, 0.20);
	border-color: rgba(93, 169, 53, 0.20);
}
.gk-pillars__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 16px;
	background: linear-gradient(135deg, #5DA935, #1F3D14);
	color: #fff;
	margin-bottom: 20px;
	box-shadow: 0 8px 20px -8px rgba(31, 61, 20, 0.40);
}
.gk-pillars__icon .material-symbols-outlined {
	font-size: 28px;
	color: #fff;
	font-variation-settings: 'FILL' 1;
}
.gk-pillars__heading {
	font-family: var(--gk-font-display);
	font-size: 20px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.015em;
	color: var(--gk-color-dark);
	margin: 0 0 10px;
}
.gk-pillars__text {
	font-size: 14px;
	line-height: 1.6;
	color: #555555;
	margin: 0;
}

/* ===================================================================
 * MONEY-BACK GUARANTEE — Cialdini risk reversal
 * Baymard 2024: +10-15% CR premium DTC suplementy
 * =================================================================== */
.gk-guarantee {
	padding: clamp(40px, 5vw, 64px) 0;
	background: linear-gradient(135deg, #F4F6F0 0%, #FAF7F2 100%);
}
.gk-guarantee__inner {
	max-width: 1080px;
	margin: 0 auto;
	padding: clamp(28px, 4vw, 40px) clamp(24px, 4vw, 48px);
	background: #fff;
	border-radius: 24px;
	border: 1px solid rgba(15, 30, 15, 0.06);
	box-shadow: 0 16px 40px -20px rgba(31, 61, 20, 0.12);
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	align-items: center;
}
@media (min-width: 768px) {
	.gk-guarantee__inner {
		grid-template-columns: auto 1fr;
		gap: 32px;
	}
}
.gk-guarantee__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 80px;
	border-radius: 24px;
	background: linear-gradient(135deg, #5DA935, #1F3D14);
	color: #fff;
	flex-shrink: 0;
	box-shadow: 0 12px 28px -10px rgba(31, 61, 20, 0.40);
	justify-self: start;
}
.gk-guarantee__icon .material-symbols-outlined {
	font-size: 40px;
	color: #fff;
	font-variation-settings: 'FILL' 1;
}
.gk-guarantee__title {
	font-family: var(--gk-font-display);
	font-size: clamp(24px, 2.8vw, 32px);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.02em;
	color: var(--gk-color-dark);
	margin: 0 0 8px;
}
.gk-guarantee__lead {
	font-size: 15px;
	line-height: 1.55;
	color: #555555;
	margin: 0 0 16px;
}
.gk-guarantee__points {
	display: flex;
	flex-direction: column;
	gap: 6px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.gk-guarantee__points li {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 600;
	color: var(--gk-color-dark);
}
.gk-guarantee__points .material-symbols-outlined {
	font-size: 18px;
	color: #4F9028;
	font-variation-settings: 'FILL' 1;
	flex-shrink: 0;
}

/* ===================================================================
 * FAQ ACCORDION — HTML5 details/summary (a11y native + JS-free)
 * CXL 2023: +12-18% ATC, FAQPage schema → AI Overviews + featured snippets
 * =================================================================== */
.gk-faq {
	padding: clamp(64px, 7vw, 96px) 0;
	background: #fff;
}
.gk-faq__inner {
	max-width: 880px;
	margin: 0 auto;
	padding: 0 var(--gk-px);
}
.gk-faq__header {
	text-align: center;
	margin-bottom: clamp(32px, 4vw, 48px);
}
.gk-faq__eyebrow {
	display: inline-block;
	font-family: 'Open Sans', sans-serif;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #4F9028;
	margin-bottom: 12px;
}
.gk-faq__title {
	font-family: var(--gk-font-display);
	font-size: clamp(28px, 3.4vw, 42px);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: var(--gk-color-dark);
	margin: 0;
}
.gk-faq__list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.gk-faq__item {
	background: #FAF7F2;
	border: 1px solid rgba(15, 30, 15, 0.06);
	border-radius: 14px;
	overflow: hidden;
	transition: border-color .2s ease, box-shadow .2s ease;
}
.gk-faq__item[open] {
	border-color: rgba(93, 169, 53, 0.30);
	box-shadow: 0 8px 24px -12px rgba(31, 61, 20, 0.12);
}
.gk-faq__q {
	cursor: pointer;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 24px;
	font-family: var(--gk-font-display);
	font-size: 16px;
	font-weight: 700;
	letter-spacing: -0.01em;
	color: var(--gk-color-dark);
	transition: color .2s ease;
}
.gk-faq__q::-webkit-details-marker { display: none; }
.gk-faq__q:hover { color: #4F9028; }
.gk-faq__item:focus-within .gk-faq__q {
	outline: 2px solid #5DA935;
	outline-offset: -2px;
}
.gk-faq__chevron {
	font-size: 24px;
	color: #4F9028;
	transition: transform .25s ease;
	flex-shrink: 0;
}
.gk-faq__item[open] .gk-faq__chevron {
	transform: rotate(180deg);
}
.gk-faq__a {
	padding: 0 24px 22px;
	font-size: 14px;
	line-height: 1.65;
	color: #555555;
}
.gk-faq__a strong {
	color: var(--gk-color-dark);
	font-weight: 700;
}
.gk-faq__footer {
	margin-top: 32px;
	text-align: center;
	font-size: 14px;
	color: var(--gk-color-text-muted);
}
.gk-faq__contact-link {
	color: #4F9028;
	font-weight: 700;
	border-bottom: 1.5px solid currentColor;
	padding-bottom: 1px;
	margin-left: 4px;
}
.gk-faq__contact-link:hover { color: var(--gk-color-dark); }

@media (prefers-reduced-motion: reduce) {
	.gk-pillars__item,
	.gk-faq__item,
	.gk-faq__chevron {
		transition: none !important;
	}
	.gk-pillars__item:hover { transform: none !important; }
}

