/* Estilos propios del Simulador de SERP, inspirados en el diseño de Mangools SERP Simulator */

/* Contenedor propio (evita depender de .container de Bootstrap, limitado a 1140/1320px) */
.serp-container {
	max-width: 1720px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Contenido de lectura (Cómo funciona, FAQ): más angosto y centrado que el resto de la página */
.serp-narrow {
	max-width: 1100px; 
	margin: 0 auto;
	padding: 0 20px;
}

body.serp-body {
	background: #fff;
	font-family: var(--font-family-base, 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif);
	color: #333;
}

/* Navbar */
.serp-navbar {
	background: #fff;
	border-bottom: 1px solid var(--border, #e6e6e6);
	padding: 14px 0;
}

.serp-brand {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: #012977;
	font-size: 18px;
	font-weight: 500;
}

.serp-brand-logo {
	height: 34px;
	width: auto;
}

.serp-brand-text strong {
	font-weight: 800;
	color: #012977;
}

.serp-navbar-right {
	display: flex;
	align-items: center;
}

.serp-nav a {
	margin-left: 24px;
	color: var(--text-gray, #737B8B);
	text-decoration: none;
	font-weight: 500;
}

.serp-lang-switch {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-left: 28px;
	padding-left: 20px;
	border-left: 1px solid #e6e8ec;
}

.serp-lang-label {
	font-size: .82rem;
	color: var(--text-gray, #737B8B);
	font-weight: 500;
	margin-right: 2px;
}

.serp-lang-divider {
	color: #dcdfe4;
	font-size: .8rem;
}

.serp-lang-flag {
	display: inline-flex;
	line-height: 1;
	text-decoration: none;
	opacity: .7;
	border-radius: 3px;
	transition: opacity .15s ease;
}

.serp-lang-flag img {
	display: block;
	border-radius: 2px;
}

.serp-lang-flag:hover {
	opacity: 1;
}

.serp-lang-flag.active {
	opacity: 1;
}

.serp-nav a:hover {
	color: #012977;
}

.serp-page-head {
	text-align: center;
	padding: 48px 20px 36px;
}

.serp-page-title {
	font-size: 2.6rem;
	font-weight: 800;
	color: #202124;
	margin: 0 0 14px;
}

.serp-page-subtitle {
	font-size: 1.1rem;
	color: #5f6368;
	margin: 0;
}

/* ===================== Layout de la herramienta ===================== */

.serp-tool {
	padding: 0 0 50px;
}

.serp-layout {
	display: flex;
	align-items: flex-start;
	gap: 0;
	max-width: 1720px;
	margin: 0 auto;
	border-top: 1px solid #e6e8ec;
}

/* Panel lateral (formulario) */
.serp-sidebar {
	flex: 0 0 560px;
	max-width: 560px;
	background: #f7f8fa;
	border-right: 1px solid #e6e8ec;
	padding: 26px 30px 34px;
}

.serp-promo {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	background: #ece6fb;
	border-radius: 10px;
	padding: 14px;
	margin-bottom: 22px;
}

.serp-promo-icon {
	font-size: 1.1rem;
}

.serp-promo-title {
	font-size: .82rem;
	font-weight: 600;
	color: #2b2b2b;
	margin-bottom: 4px;
}

.serp-promo-link {
	font-size: .82rem;
	color: #5b3df0;
	font-weight: 600;
	text-decoration: none;
}

.serp-promo-link:hover {
	text-decoration: underline;
}

.serp-field {
	margin-bottom: 18px;
}

.serp-field label {
	display: block;
	font-size: .78rem;
	font-weight: 600;
	color: #5f6368;
	margin-bottom: 6px;
}

.serp-field-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
}

.serp-field input[type="text"],
.serp-field textarea,
.serp-field select {
	width: 100%;
	border: 1px solid #dcdfe4;
	border-radius: 7px;
	padding: 9px 11px;
	font-size: .86rem;
	color: #202124;
	background: #fff;
	resize: none;
}

.serp-field input[type="text"]:focus,
.serp-field textarea:focus {
	outline: none;
	border-color: #012977;
	box-shadow: 0 0 0 3px rgba(1, 41, 119, .12);
}

.serp-field-inline {
	display: flex;
	gap: 8px;
}

.serp-field-inline input {
	flex: 1;
}

.serp-field-inline button {
	flex: 0 0 auto;
	border: none;
	background: transparent;
	color: #012977;
	font-weight: 600;
	font-size: .82rem;
	white-space: nowrap;
	cursor: pointer;
}

.serp-field-inline button:hover {
	text-decoration: underline;
}

.serp-btn-orange {
	background: #F93A0B !important;
	color: #fff !important;
	border-radius: 7px !important;
	padding: 0 16px !important;
	height: 38px !important;
	font-size: .85rem !important;
	font-weight: 600 !important;
	text-decoration: none !important;
	transition: background .18s ease;
}

.serp-btn-orange:hover {
	background: #cc2c05 !important;
	text-decoration: none !important;
}

.serp-field-inline button:disabled {
	opacity: .6;
	cursor: default;
}

.serp-field-error {
	font-size: .78rem;
	color: #d93025;
	margin-top: 6px;
}

.serp-counter {
	font-size: .72rem;
	color: #9aa0a6;
	white-space: nowrap;
}

.serp-pixel-bar {
	height: 4px;
	background: #eceef1;
	border-radius: 4px;
	margin-top: 6px;
	overflow: hidden;
}

.serp-pixel-bar-fill {
	height: 100%;
	width: 0%;
	background: #34a853;
	transition: width .15s ease, background-color .15s ease;
}

.serp-pixel-bar-fill.is-warning {
	background: #f9ab00;
}

.serp-pixel-bar-fill.is-danger {
	background: #ea4335;
}

.serp-btn-chip {
	margin-top: 8px;
	border: 1px solid #dcdfe4;
	background: #fff;
	color: #012977;
	font-size: .76rem;
	font-weight: 600;
	border-radius: 6px;
	padding: 5px 10px;
	cursor: pointer;
}

.serp-btn-chip:hover {
	background: rgba(1, 41, 119, .08);
}

.serp-options {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 16px;
}

.serp-check {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: .8rem;
	color: #3c4043;
	font-weight: 500;
	cursor: pointer;
}

.serp-check input {
	accent-color: #012977;
}

.serp-badge-new {
	background: #ea4335;
	color: #fff;
	font-size: .62rem;
	font-weight: 700;
	border-radius: 4px;
	padding: 1px 5px;
}

.serp-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 24px;
}

.serp-btn {
	border: none;
	border-radius: 7px;
	padding: 9px 14px;
	font-size: .82rem;
	font-weight: 600;
	cursor: pointer;
}

.serp-btn-light {
	background: #fff;
	border: 1px solid #dcdfe4;
	color: #3c4043;
}

.serp-btn-light:hover {
	background: #f1f2f4;
}

.serp-btn-primary {
	background: #012977;
	color: #fff;
}

.serp-btn-primary:hover {
	background: #0e3d8a;
}

.serp-action-feedback {
	margin-top: 10px;
	font-size: .78rem;
	color: #1e8e3e;
	font-weight: 600;
}

/* ===================== Navegador simulado ===================== */

.serp-browser {
	flex: 1 1 auto;
	min-width: 0;
	padding: 30px 40px 40px;
}

.serp-browser-toolbar {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 14px;
	margin-bottom: 22px;
}

.serp-country-select {
	display: flex;
	align-items: center;
	gap: 6px;
	border: 1px solid #dcdfe4;
	border-radius: 7px;
	padding: 6px 10px;
	background: #fff;
}

.serp-flag {
	display: block;
	width: 20px;
	height: 14px;
	border-radius: 2px;
	object-fit: cover;
}

.serp-country-select select {
	border: none;
	font-size: .82rem;
	color: #3c4043;
	background: transparent;
}

.serp-country-select select:focus {
	outline: none;
}

.serp-device-toggle {
	display: flex;
	border-radius: 7px;
	overflow: hidden;
	border: 1px solid #dcdfe4;
}

.serp-device-toggle button {
	border: none;
	background: #fff;
	color: #3c4043;
	font-size: .82rem;
	font-weight: 600;
	padding: 7px 16px;
	cursor: pointer;
}

.serp-device-toggle button.active {
	background: #1a237e;
	color: #fff;
}

.serp-browser-frame {
	background: #fff;
	border: 1px solid #e6e8ec;
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, .05);
	padding: 30px 40px 24px;
	width: 100%;
	max-width: none;
	margin: 0;
}

.serp-browser-frame[data-device="mobile"] {
	max-width: 380px;
	margin: 0 auto;
	padding: 20px 18px 16px;
}

.serp-google-top {
	margin-bottom: 18px;
}

.serp-google-logo {
	font-family: Arial, sans-serif;
	font-size: 2.5rem;
	font-weight: 700;
	letter-spacing: -1px;
	margin-bottom: 12px;
}

.serp-google-search-bar {
	display: flex;
	align-items: center;
	gap: 8px;
	border: 1px solid #dcdfe4;
	border-radius: 24px;
	padding: 10px 16px;
	box-shadow: 0 1px 4px rgba(0, 0, 0, .08);
	max-width: 620px;
}

.serp-tip-badge {
	background: #fbbc04;
	color: #202124;
	font-size: .62rem;
	font-weight: 700;
	border-radius: 4px;
	padding: 2px 6px;
	flex: 0 0 auto;
}

.serp-search-placeholder {
	font-size: .88rem;
	color: #9aa0a6;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.serp-google-tabs {
	display: flex;
	gap: 22px;
	margin-top: 16px;
	border-bottom: 1px solid #ebebeb;
	padding-bottom: 10px;
	font-size: .84rem;
	color: #5f6368;
}

.serp-google-tabs span {
	cursor: default;
}

.serp-google-tabs span.active {
	color: #1a73e8;
	font-weight: 600;
	border-bottom: 2px solid #1a73e8;
	padding-bottom: 10px;
	margin-bottom: -11px;
}

.serp-browser-frame[data-device="mobile"] .serp-google-tabs {
	gap: 14px;
	font-size: .76rem;
}

/* Resultado */
.serp-result {
	position: relative;
	padding: 16px 0;
}

.serp-result-real {
	padding-top: 18px;
}

.serp-result-head {
	display: flex;
	align-items: center;
	margin-bottom: 4px;
	gap: 10px;
}

.serp-favicon {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	object-fit: contain;
	background: #f1f1f1;
}

.serp-result-site {
	display: flex;
	flex-direction: column;
	line-height: 1.15;
}

.serp-site-line {
	display: flex;
	align-items: center;
	gap: 8px;
}

.serp-site-name {
	font-size: .85rem;
	color: #202124;
	font-weight: 500;
}

.serp-ad-badge {
	font-size: .65rem;
	font-weight: 700;
	color: #202124;
	background: #fef7e0;
	border: 1px solid #f9d777;
	border-radius: 3px;
	padding: 0 4px;
}

.serp-url {
	font-size: .78rem;
	color: #4d5156;
}

.serp-title {
	font-size: 1.25rem;
	line-height: 1.3;
	color: #1a0dab;
	margin: 4px 0 4px;
	font-weight: 400;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	cursor: pointer;
}

.serp-browser-frame[data-device="mobile"] .serp-title {
	font-size: 1.1rem;
	white-space: normal;
}

.serp-title:hover {
	text-decoration: underline;
}

.serp-title mark,
.serp-desc-line mark {
	background: transparent;
	font-weight: 700;
	color: inherit;
	padding: 0;
}

.serp-desc-line {
	font-size: .95rem;
	line-height: 1.45;
	color: #4d5156;
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.serp-date {
	color: #70757a;
}

.serp-rating {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: .82rem;
	color: #70757a;
	margin-bottom: 4px;
}

.serp-stars {
	color: #fbbc04;
	letter-spacing: 1px;
}

.serp-heatmap-overlay {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(120px 60px at 15% 55%, rgba(255, 0, 0, .35), transparent 70%),
		radial-gradient(180px 50px at 40% 78%, rgba(255, 140, 0, .3), transparent 70%),
		radial-gradient(90px 40px at 10% 20%, rgba(255, 210, 0, .25), transparent 70%);
	border-radius: 8px;
}

/* Resultados de relleno (skeleton) */
.serp-result-skel {
	border-top: 1px solid #f1f1f1;
}

.serp-skel-circle {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #e1e3e6;
	display: inline-block;
}

.serp-skel-line {
	height: 12px;
	border-radius: 4px;
	background: #e1e3e6;
	margin-top: 6px;
}

.serp-skel-line.serp-skel-title {
	height: 16px;
	background: #cfc6f7;
	margin-top: 10px;
}

.serp-result-skel .serp-result-head {
	align-items: center;
	gap: 8px;
}

.serp-result-skel .serp-result-head .serp-skel-line {
	margin-top: 0;
	flex: 1;
	max-width: 140px;
}

.w-30 { width: 30%; }
.w-60 { width: 60%; }
.w-70 { width: 70%; }
.w-90 { width: 90%; }
.w-100 { width: 100%; }

/* AI overview */
.serp-ai-overview {
	background: #fff;
	border-bottom: 1px solid #ebebeb;
	padding: 4px 0 18px;
	margin-bottom: 6px;
}

.serp-ai-overview-title {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: .82rem;
	font-weight: 600;
	color: #3c4043;
	margin-bottom: 10px;
}

.serp-ai-diamond {
	color: #1a73e8;
	font-size: .9rem;
}

.serp-ai-body {
	display: flex;
	gap: 20px;
}

.serp-ai-text {
	flex: 1 1 auto;
	min-width: 0;
	max-width: 600px;
	font-size: .92rem;
	line-height: 1.55;
	color: #3c4043;
}

.serp-ai-text p {
	margin: 0 0 10px;
}

.serp-ai-fade {
	position: relative;
	color: #3c4043;
	-webkit-mask-image: linear-gradient(to bottom, #000 55%, transparent 100%);
	mask-image: linear-gradient(to bottom, #000 55%, transparent 100%);
	max-height: 4.8em;
	overflow: hidden;
}

.serp-ai-fade.serp-ai-fade-expanded {
	-webkit-mask-image: none;
	mask-image: none;
	max-height: none;
}

.serp-ai-aside {
	flex: 0 0 220px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.serp-ai-card {
	border: 1px solid #ebebeb;
	border-radius: 10px;
	padding: 10px;
}

.serp-ai-card-thumb {
	height: 46px;
	border-radius: 6px;
	background: linear-gradient(135deg, #e8f0fe, #f4f0ff);
	margin-bottom: 8px;
}

.serp-ai-card-title {
	font-size: .78rem;
	font-weight: 500;
	color: #1a0dab;
	line-height: 1.3;
	margin-bottom: 4px;
}

.serp-ai-card-source {
	font-size: .72rem;
	color: #70757a;
}

.serp-ai-showmore {
	margin-top: 14px;
	border: 1px solid #dadce0;
	background: #fff;
	border-radius: 20px;
	padding: 7px 18px;
	font-size: .82rem;
	font-weight: 600;
	color: #3c4043;
	cursor: pointer;
}

.serp-ai-showmore:hover {
	background: #f8f9fa;
}

.serp-ai-chevron {
	display: inline-block;
	margin-left: 3px;
	vertical-align: middle;
	position: relative;
	top: -1px;
}

.serp-browser-frame[data-device="mobile"] .serp-ai-body {
	flex-direction: column;
}

/* Frame body: columna principal + panel derecho */
.serp-frame-body {
	display: flex;
	gap: 20px;
	align-items: flex-start;
}

.serp-frame-main {
	flex: 1 1 auto;
	min-width: 0;
}

/* Panel lateral derecho de AI Overview */
.serp-ai-right-panel {
	flex: 0 0 240px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding-top: 2px;
}

.serp-ai-rp-card {
	border: 1px solid #ebebeb;
	border-radius: 10px;
	padding: 10px 12px 10px;
	position: relative;
	background: #fff;
}

.serp-ai-rp-menu {
	position: absolute;
	top: 8px;
	right: 10px;
	color: #70757a;
	font-size: 0.9rem;
	line-height: 1;
	cursor: default;
}

.serp-ai-rp-thumb {
	width: 100%;
	height: 44px;
	border-radius: 6px;
	background: linear-gradient(135deg, #e8f0fe 0%, #f4f0ff 100%);
	margin-bottom: 8px;
}

.serp-ai-rp-meta {
	font-size: .71rem;
	color: #70757a;
	margin-bottom: 3px;
	padding-right: 18px;
}

.serp-ai-rp-title {
	font-size: .8rem;
	font-weight: 500;
	color: #1a0dab;
	line-height: 1.35;
	margin-bottom: 5px;
	padding-right: 18px;
}

.serp-ai-rp-snippet {
	font-size: .72rem;
	color: #70757a;
	line-height: 1.45;
	margin-bottom: 8px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.serp-ai-rp-source {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: .71rem;
	color: #70757a;
}

.serp-ai-rp-favicon {
	width: 14px;
	height: 14px;
	border-radius: 2px;
	background: #e8eaf0;
	flex-shrink: 0;
}

/* Ocultar panel derecho en modo móvil */
.serp-browser-frame[data-device="mobile"] .serp-ai-right-panel {
	display: none !important;
}

/* Map pack */
.serp-map-pack {
	border-top: 1px solid #f1f1f1;
	padding: 16px 0 8px;
}

.serp-map-pack-title {
	font-size: 1.1rem;
	font-weight: 400;
	color: #202124;
	margin: 0 0 10px;
}

.serp-map-img {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 4px;
	line-height: 0;
}

.serp-map-img svg {
	display: block;
	width: 100%;
}

.serp-map-expand {
	position: absolute;
	top: 8px;
	right: 8px;
	background: rgba(255,255,255,.92);
	border: none;
	border-radius: 6px;
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: #3c4043;
}

.serp-map-places {
	display: flex;
	flex-direction: column;
}

.serp-map-place {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 12px 0;
	border-bottom: 1px solid #f1f1f1;
}

.serp-map-place:last-child {
	border-bottom: none;
}

.serp-map-place-info {
	flex: 1 1 auto;
	min-width: 0;
}

.serp-map-place-name {
	font-size: 0.9rem;
	font-weight: 500;
	color: #202124;
	margin-bottom: 2px;
}

.serp-map-place-meta {
	font-size: .78rem;
	color: #70757a;
	display: flex;
	align-items: center;
	gap: 3px;
	flex-wrap: wrap;
	margin-bottom: 2px;
}

.serp-map-stars {
	color: #f5a623;
	font-size: .82rem;
	letter-spacing: -1px;
}

.serp-map-stars-empty {
	color: #dadce0;
	font-size: .82rem;
	letter-spacing: -1px;
}

.serp-map-rating {
	font-weight: 600;
	color: #3c4043;
}

.serp-map-reviews {
	color: #70757a;
}

.serp-map-dot {
	color: #dadce0;
}

.serp-map-price {
	color: #3c4043;
}

.serp-map-category {
	color: #70757a;
}

.serp-map-place-loc {
	font-size: .78rem;
	color: #70757a;
	margin-bottom: 2px;
}

.serp-map-place-desc {
	font-size: .78rem;
	color: #3c4043;
}

.serp-map-place-thumb {
	flex: 0 0 72px;
	height: 72px;
	border-radius: 8px;
	overflow: hidden;
}

.serp-map-more {
	display: flex;
	align-items: center;
	gap: 4px;
	margin-top: 4px;
	padding: 8px 0;
	background: none;
	border: none;
	font-size: .82rem;
	font-weight: 500;
	color: #1a73e8;
	cursor: pointer;
	width: 100%;
	justify-content: center;
	border-top: 1px solid #f1f1f1;
}

.serp-map-more:hover {
	text-decoration: underline;
}

.serp-hint {
	font-size: .78rem;
	color: #9aa0a6;
	max-width: 680px;
	margin: 14px auto 0;
	text-align: center;
}

/* ===== Qué es un snippet ===== */
.serp-snippet-info {
	padding: 64px 0;
	background: #F8F9FB;
}

.serp-info-text {
	font-size: 0.9rem;
	line-height: 1.7;
	color: #374155;
	margin-bottom: 1rem;
}

.serp-snippet-card {
	background: #fff;
	border: 1px solid #e6e8ec;
	border-radius: 14px;
	padding: 22px 24px;
	box-shadow: rgba(1,41,119,.07) 0px 1px 3px 0px, rgba(1,41,119,.04) 0px 1px 2px 0px;
}

.serp-sc-head {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 14px;
}

.serp-sc-favicon {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #e8f0fe;
	flex: 0 0 auto;
}

.serp-sc-sitename {
	font-size: .82rem;
	color: #3c4043;
	font-weight: 500;
}

.serp-sc-block {
	margin-bottom: 14px;
}

.serp-sc-block:last-child {
	margin-bottom: 0;
}

.serp-sc-title-text {
	font-size: 1.05rem;
	color: #1a0dab;
	font-weight: 400;
	line-height: 1.3;
	margin-bottom: 5px;
}

.serp-sc-url-text {
	font-size: .78rem;
	color: #4d5156;
	margin-bottom: 5px;
}

.serp-sc-desc-text {
	font-size: .85rem;
	color: #4d5156;
	line-height: 1.5;
	margin-bottom: 5px;
}

.serp-sc-badge {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: .7rem;
	font-weight: 600;
	padding: 3px 8px;
	border-radius: 20px;
}

.serp-sc-badge-blue  { background: #e8f0fe; color: #1a56db; }
.serp-sc-badge-green { background: #e6f4ea; color: #1e8e3e; }
.serp-sc-badge-orange{ background: #fef0e6; color: #c5601a; }

/* ===== Consejos ===== */
.serp-tips {
	background: #F8F9FB;
	padding: 64px 24px 70px;
	border-top: 1px solid #e2e6ef;
	border-bottom: 1px solid #e2e6ef;
}

.serp-tips-inner {
	max-width: 1320px;
	margin: 0 auto;
}

.serp-tips-intro {
	font-size: .95rem;
	color: #6b7592;
	max-width: 600px;
	margin: 0 auto 32px;
}

.tips-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
}

@media (max-width: 991px) {
	.tips-grid { grid-template-columns: repeat(2, 1fr); }
}

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

.feat-card {
	background: #ffffff;
	border: 1px solid #e2e6ef;
	border-radius: 14px;
	padding: 22px 18px;
	box-shadow: 0 1px 3px rgba(1,41,119,.07), 0 1px 2px rgba(1,41,119,.04);
	transition: box-shadow .2s, border-color .2s, transform .2s;
}

.feat-card:hover {
	box-shadow: 0 4px 16px rgba(1,41,119,.09), 0 1px 4px rgba(1,41,119,.05);
	border-color: #9aa3b8;
	transform: translateY(-2px);
}

.feat-icon {
	width: 50px;
	height: 50px;
	border-radius: 9px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	margin-bottom: 12px;
}

.feat-icon.mg { background: #f3e6f0; color: #c23aab; }
.feat-icon.bl { background: #e8f0fe; color: #1a56db; }
.feat-icon.tl { background: #e0f7fa; color: #0ea5b5; }
.feat-icon.gr { background: #e6f4ea; color: #1e8e3e; }
.feat-icon.pu { background: #ede7f6; color: #7c3aed; }
.feat-icon.or { background: #fff3e0; color: #c5601a; }

.feat-card h4 {
	font-size: 16px;
	font-weight: 700;
	color: #111827;
	margin-bottom: 10px;
}

.feat-text {
	font-size: 13.5px;
	color: #6b7592;
	line-height: 1.7;
	margin: 0;
}

/* How it works */
.serp-how {
	background: #ffffff;
	padding: 56px 0;
}

.serp-step {
	padding: 12px;
}

.serp-step-num {
	width: 30px;
	height: 30px;
	line-height: 30px;
	border-radius: 50%;
	background: #012977;
	color: #ffffff;
	font-size: 12px;
	font-weight: 800;
	margin: 0 auto 14px;
	font-family: sans-serif;
}

/* FAQ */
.serp-faq {
	padding: 56px 0 80px;
	background: #F8F9FB;
	border-top: 1px solid #e2e6ef;
}

.faq-header-block {
	text-align: center;
	margin-bottom: 40px;
}

.faq-header-block h2 {
	font-size: clamp(22px, 2.8vw, 32px);
	font-weight: 800;
	color: #111827;
	letter-spacing: -.02em;
	margin-bottom: 0;
}

.faq-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
	max-width: 780px;
	margin: 0 auto;
}

.faq-item {
	background: #ffffff;
	border: 1px solid #e2e6ef;
	border-radius: 14px;
	box-shadow: rgba(1,41,119,.07) 0px 1px 3px 0px, rgba(1,41,119,.04) 0px 1px 2px 0px;
	overflow: hidden;
	transition: border-color .2s, box-shadow .2s;
}

.faq-item[open] {
	border-color: #012977;
	box-shadow: 0 4px 14px rgba(1,41,119,.10);
}

.faq-item summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 18px 20px;
	cursor: pointer;
	list-style: none;
	user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-q {
	font-size: 15px;
	font-weight: 600;
	color: #111827;
	flex: 1;
}

.faq-chevron {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: #f1f3f7;
	border: 1px solid #e2e6ef;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: transform .22s, background .2s;
	color: #6B7592;
}

.faq-item[open] .faq-chevron {
	transform: rotate(180deg);
	background: rgba(1,41,119,.07);
	border-color: #012977;
	color: #012977;
}

.faq-body {
	padding: 14px 20px 16px;
	font-size: 14px;
	color: #6B7592;
	line-height: 1.65;
	border-top: 1px solid #f1f3f4;
}

.serp-how p { color: #374155;font-size: 0.9rem; }

/* Footer */
.serp-footer {
	background: #000522;
	color: #ffffff;
	padding: 24px 0;
	font-size: .85rem;
}

.serp-footer-logo {
	width: 26px;
	height: 26px;
}

@media (max-width: 991px) {
	.serp-layout {
		flex-direction: column;
	}

	.serp-sidebar {
		flex: 1 1 auto;
		max-width: none;
		width: 100%;
		border-right: none;
		border-bottom: 1px solid #e6e8ec;
	}

	.serp-browser {
		width: 100%;
		padding: 18px 14px 30px;
	}
}
.iso-logo{
    max-width: 55px;
    margin-right: 10px;
}

.title-1{
	color:#050a26;
}

.title-2{
	color:#012977;
}
