/* Genmai SEO Engine — front-end (product FAQ + description) */

.gse-product-description { margin: 24px 0; line-height: 1.7; }
.gse-product-description h2 { margin: 1.2em 0 .5em; }

.gse-product-faq { margin: 32px 0; }
.gse-product-faq .gse-faq-title { margin: 0 0 16px; }

.gse-faq-list { display: flex; flex-direction: column; gap: 10px; }

.gse-faq-item {
	border: 1px solid #e2e4e8;
	border-radius: 10px;
	overflow: hidden;
	background: #fff;
}
.gse-faq-item.is-open { border-color: rgba(28,158,145,.4); }

.gse-faq-q {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 16px 18px;
	background: none;
	border: 0;
	cursor: pointer;
	text-align: left;
	font-size: 1rem;
	font-weight: 600;
	color: #1a1a1a;
}

.gse-faq-ic {
	position: relative;
	flex: 0 0 auto;
	width: 20px;
	height: 20px;
}
.gse-faq-ic::before,
.gse-faq-ic::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 12px;
	height: 2px;
	background: #1c9e91;
	transform: translate(-50%, -50%);
	border-radius: 2px;
}
.gse-faq-ic::after { transform: translate(-50%, -50%) rotate(90deg); transition: opacity .2s ease; }
.gse-faq-item.is-open .gse-faq-ic::after { opacity: 0; }

.gse-faq-a {
	max-height: 0;
	overflow: hidden;
	transition: max-height .3s ease;
}
.gse-faq-a-in { padding: 0 18px 16px; line-height: 1.7; color: #444; }
.gse-faq-a-in p { margin: 0 0 10px; }
.gse-faq-a-in p:last-child { margin-bottom: 0; }

/* Conversion CTA */
.gse-cta {
	margin: 36px 0;
	border-radius: 14px;
	background: linear-gradient(135deg, #0f766e 0%, #115e59 100%);
	color: #fff;
}
.gse-cta-inner { padding: 26px 28px; }
.gse-cta-heading { margin: 0 0 8px; color: #fff; font-size: 1.3rem; }
.gse-cta-text { margin: 0 0 16px; color: rgba(255,255,255,.9); line-height: 1.6; }
.gse-cta-btn {
	display: inline-block;
	background: #fff;
	color: #0f766e !important;
	font-weight: 600;
	text-decoration: none;
	padding: 11px 22px;
	border-radius: 8px;
	transition: transform .15s ease, box-shadow .15s ease;
}
.gse-cta-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(0,0,0,.18); color: #0f766e !important; }

/* Related research block */
.gse-related { margin: 28px 0; padding: 16px 18px; border-left: 3px solid #0f766e; background: #f6fbfa; border-radius: 8px; }
.gse-related p { margin: 0 0 8px; }
.gse-related ul { margin: 0; padding-left: 18px; }
.gse-related li { margin: 4px 0; }

/* Language switcher (fallback styles for the [gse_language_switcher] shortcode) */
.gse-language-switcher {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0;
}
.gse-language-switcher .gse-lang {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, .15);
    font-size: 13px;
    line-height: 1.2;
    text-decoration: none;
    color: #2c3338;
    background: #fff;
}
.gse-language-switcher a.gse-lang:hover {
    border-color: #2271b1;
    color: #2271b1;
}
.gse-language-switcher .gse-lang--current {
    background: #2271b1;
    border-color: #2271b1;
    color: #fff;
    font-weight: 600;
}

/* Lead-magnet block */
.gse-lead {
    margin: 28px 0;
    border: 1px solid #e2e4e7;
    border-radius: 12px;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
    padding: 22px 24px;
}
.gse-lead-title {
    margin: 0 0 8px;
    font-size: 19px;
    line-height: 1.3;
}
.gse-lead-text {
    margin: 0 0 14px;
    color: #50575e;
    font-size: 15px;
}
.gse-lead-form .gse-lead-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.gse-lead-form input[type="email"],
.gse-lead-form input[type="text"] {
    flex: 1 1 200px;
    padding: 10px 12px;
    border: 1px solid #c3c4c7;
    border-radius: 7px;
    font-size: 15px;
}
.gse-lead-form .gse-lead-company {
    width: 100%;
    margin-bottom: 12px;
}
.gse-lead-btn {
    display: inline-block;
    padding: 11px 22px;
    border: none;
    border-radius: 8px;
    background: #2271b1;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}
.gse-lead-btn:hover { background: #135e96; }
.gse-lead-btn:disabled { opacity: .6; cursor: default; }
.gse-lead-msg { margin: 10px 0 0; font-size: 14px; color: #50575e; min-height: 1em; }
.gse-lead-done { font-size: 15px; font-weight: 600; margin: 0 0 12px; color: #16794e; }
.gse-lead-download { background: #16794e; }
.gse-lead-download:hover { background: #115c3a; }
