/**
 * Crispy Theme - CSS Mockup Graphics
 * 
 * Pure CSS illustrations and graphics used on landing pages.
 * Extracted from crispy-theme.css for maintainability.
 */

/* ============================================
   HERO CSS GRAPHICS - Calendar + Chart
   ============================================ */

.hero-graphic-wrapper {
	position: relative;
	padding: 2.5rem 1rem 1rem;
}

/* Floating Benefit Callouts */
.hero-callout {
	position: absolute;
	background: white;
	border-radius: 50px;
	padding: 0.5rem 0.9rem;
	display: flex;
	align-items: center;
	gap: 0.4rem;
	box-shadow:
		0 4px 15px rgba(0, 0, 0, 0.1),
		0 0 0 1px rgba(0, 0, 0, 0.05);
	z-index: 20;
	font-size: 0.8rem;
	font-weight: 600;
	color: #1e293b;
	max-width: 140px;
}

.hero-callout .callout-icon {
	font-size: 0.9rem;
}

/* Calendar Mockup - Matching How It Works card style */
.hero-calendar-mockup {
	background: #ffffff;
	border-radius: 16px;
	box-shadow:
		0 25px 80px rgba(0, 0, 0, 0.15),
		0 10px 30px rgba(79, 70, 229, 0.1),
		0 0 0 1px rgba(0, 0, 0, 0.05);
	padding: 1rem;
}

.hero-cal-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 0.5rem;
	row-gap: 0.75rem;
}

.hero-cal-cell {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.hero-cal-date {
	font-size: 0.65rem;
	font-weight: 600;
	color: #94a3b8;
	text-transform: uppercase;
	margin-bottom: 0.1rem;
	letter-spacing: 0.02em;
}

.hero-cal-today .hero-cal-date {
	color: #4338ca;
}

.hero-cal-card {
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 6px;
	padding: 0.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-cal-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.hero-cal-card.hero-cal-published {
	border-color: #10b981;
	border-width: 2px;
}

.hero-cal-badge {
	font-size: 0.55rem;
	font-weight: 700;
	color: #10b981;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.hero-cal-card-title {
	font-size: 0.7rem;
	color: #1e293b;
	font-weight: 500;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.hero-cal-meta {
	font-size: 0.6rem;
	color: #94a3b8;
	line-height: 1.1;
}

.hero-cal-view-btn {
	font-size: 0.55rem;
	color: #4338ca;
	font-weight: 600;
	margin-top: 0.25rem;
	cursor: pointer;
	background: #eef2ff;
	padding: 0.25rem 0.5rem;
	border-radius: 4px;
	display: inline-block;
}

.hero-cal-faded {
	opacity: 0.5;
}

.hero-cal-faded .hero-cal-card {
	padding: 0.4rem;
}

/* Chart Overlay */
.hero-chart-overlay {
	position: absolute;
	bottom: -1rem;
	right: -1rem;
	width: 200px;
	background: white;
	border-radius: 12px;
	padding: 1rem;
	box-shadow:
		0 20px 50px rgba(0, 0, 0, 0.15),
		0 8px 20px rgba(124, 58, 237, 0.15),
		0 0 0 1px rgba(0, 0, 0, 0.05);
	z-index: 10;
	transform: rotate(4deg);
}

.hero-chart-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 0.75rem;
}

.hero-chart-title {
	font-size: 0.75rem;
	font-weight: 600;
	color: #374151;
}

.hero-chart-growth {
	font-size: 0.85rem;
	font-weight: 700;
	color: #22c55e;
	background: #f0fdf4;
	padding: 0.15rem 0.5rem;
	border-radius: 4px;
}

.hero-chart-visual {
	position: relative;
}

.hero-chart-svg {
	width: 100%;
	height: 50px;
}

.hero-chart-line {
	fill: none;
	stroke: #7c3aed;
	stroke-width: 2.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.hero-chart-area {
	opacity: 0.8;
}

.hero-chart-labels {
	display: flex;
	justify-content: space-between;
	margin-top: 0.35rem;
	font-size: 0.6rem;
	color: #9ca3af;
}

/* Responsive adjustments for hero graphics */
@media (max-width: 1100px) {
	.hero-cal-grid {
		grid-template-columns: repeat(5, 1fr);
		gap: 0.4rem;
	}

	.hero-cal-card {
		padding: 0.4rem;
	}

	.hero-chart-overlay {
		width: 170px;
		padding: 0.75rem;
		right: -0.5rem;
		bottom: -0.5rem;
	}
}

@media (max-width: 900px) {
	.hero-graphic-wrapper {
		max-width: 500px;
		margin: 0 auto;
	}

	.hero-cal-grid {
		grid-template-columns: repeat(5, 1fr);
		gap: 0.35rem;
	}

	.hero-chart-overlay {
		width: 150px;
		right: 0;
		bottom: -0.5rem;
	}
}

@media (max-width: 600px) {
	/* Fix overflow: constrain all hero elements to available width (viewport - parent padding) */
	.hero-split-container,
	.hero-split-image,
	.hero-graphic-wrapper,
	.hero-calendar-mockup,
	.hero-chart-overlay {
		max-width: 350px;
		margin-left: auto;
		margin-right: auto;
	}

	.hero-graphic-wrapper {
		overflow: hidden;
		padding: 1rem;
		position: relative;
	}

	.hero-calendar-mockup {
		padding: 0.75rem;
	}

	.hero-cal-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 0.35rem;
		row-gap: 0.5rem;
	}

	/* Show Today (published) + 2 scheduled days on mobile */
	.hero-cal-cell:nth-child(-n+4) {
		display: none; /* Hide first 4 cells (Mon-Thu published) */
	}
	.hero-cal-cell:nth-child(n+8) {
		display: none; /* Hide cells 8+ */
	}

	.hero-cal-cell {
		max-width: 95px;
	}

	.hero-cal-card {
		padding: 0.4rem;
	}

	.hero-cal-card-title {
		font-size: 0.6rem;
	}

	.hero-cal-meta {
		font-size: 0.5rem;
	}

	.hero-cal-badge {
		font-size: 0.5rem;
	}

	.hero-cal-view-btn {
		font-size: 0.5rem;
	}

	.hero-cal-date {
		font-size: 0.55rem;
	}

	.hero-chart-overlay {
		position: relative;
		bottom: auto;
		right: auto;
		margin: 1rem auto 0;
		transform: none;
		display: block;
	}

	/* Hide callouts on mobile - too cramped */
	.hero-callout,
	.meta-ads-landing .hero-callout,
	.page-template-page-cold-email-landing .hero-callout {
		display: none !important;
	}
}

/* Mobile: Stack layout */
@media (max-width: 900px) {
	.meta-ads-landing .hero-split-container,
	.page-template-page-cold-email-landing .hero-split-container {
		grid-template-columns: 1fr;
		gap: 2rem;
		text-align: center;
	}

	.meta-ads-landing .hero-split-text,
	.page-template-page-cold-email-landing .hero-split-text {
		order: 1;
		align-items: center;
	}

	.meta-ads-landing .hero-title-left,
	.meta-ads-landing .hero-description-left,
	.meta-ads-landing .meta-ads-guarantee-left,
	.page-template-page-cold-email-landing .hero-title-left,
	.page-template-page-cold-email-landing .hero-description-left,
	.page-template-page-cold-email-landing .meta-ads-guarantee-left {
		text-align: center !important;
	}

	.meta-ads-landing .meta-ads-social-proof-left,
	.page-template-page-cold-email-landing .meta-ads-social-proof-left {
		justify-content: center !important;
	}

	.meta-ads-landing .hero-split-text .wp-block-buttons,
	.page-template-page-cold-email-landing .hero-split-text .wp-block-buttons {
		justify-content: center !important;
	}

	.meta-ads-landing .hero-split-image,
	.page-template-page-cold-email-landing .hero-split-image {
		order: 2;
	}

	.meta-ads-landing .hero-screenshot-wrapper,
	.page-template-page-cold-email-landing .hero-screenshot-wrapper {
		padding: 3rem 0.5rem 1rem;
		margin-left: 0;
		margin-right: 0;
	}

	.meta-ads-landing .hero-split-image .hero-product-image img,
	.page-template-page-cold-email-landing .hero-split-image .hero-product-image img {
		width: 100%;
	}

	/* Adjust callout positions for mobile */
	.meta-ads-landing .hero-callout,
	.page-template-page-cold-email-landing .hero-callout {
		font-size: 0.8rem;
		padding: 0.5rem 0.75rem;
	}

	.meta-ads-landing .hero-callout-1,
	.page-template-page-cold-email-landing .hero-callout-1 {
		top: 0;
		right: 5%;
	}

	.meta-ads-landing .hero-callout-2,
	.page-template-page-cold-email-landing .hero-callout-2 {
		top: 25%;
		left: -5px;
	}

	.meta-ads-landing .hero-callout-3,
	.page-template-page-cold-email-landing .hero-callout-3 {
		bottom: 10%;
		right: 0;
	}

}

/* Callouts all visible on mobile - removed hide rule */

main.meta-ads-landing > .wp-block-group:first-of-type p,
.page-template-page-cold-email-landing main.wp-block-group > .wp-block-group:first-of-type p {
    color: #e5e7eb;
}

main.meta-ads-landing > .wp-block-group:first-of-type ul {
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

main.meta-ads-landing > .wp-block-group:first-of-type li {
    color: #e5e7eb;
}

/* Hero CTA button */
main.meta-ads-landing > .wp-block-group:first-of-type a.wp-block-button__link {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    color: #4338ca;
    border-radius: 12px;
    padding: 1.1rem 2.75rem;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: 
		0 0 0 3px rgba(255, 255, 255, 0.2),
		0 20px 50px rgba(0, 0, 0, 0.25),
		0 10px 25px rgba(79, 70, 229, 0.3);
    transition: all 0.2s ease;
	letter-spacing: -0.01em;
}

main.meta-ads-landing > .wp-block-group:first-of-type a.wp-block-button__link:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
		0 0 0 3px rgba(255, 255, 255, 0.3),
		0 25px 60px rgba(0, 0, 0, 0.3),
		0 15px 35px rgba(79, 70, 229, 0.4);
    background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 100%);
}

/* Guarantee line under hero CTA */
main.meta-ads-landing > .wp-block-group:first-of-type p:last-child {
    margin-top: 0.75rem;
    font-size: 0.925rem;
    opacity: 0.85;
	font-weight: 500;
}


/* ===== CSS Mockup Graphics ===== */

/* Mockup 1: Site Analysis */
.mockup-analysis {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	width: 100%;
	max-width: 260px;
}

.mockup-label {
	font-size: 0.7rem;
	color: #94a3b8;
	font-weight: 500;
}

.mockup-input {
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 6px;
	padding: 0.625rem 0.875rem;
	font-size: 0.85rem;
	color: #1e293b;
}

.mockup-site-status {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.25rem;
	flex-wrap: nowrap;
}

.mockup-site-url {
	font-size: 0.9rem;
	color: #1e293b;
	font-weight: 600;
	white-space: nowrap;
}

.mockup-connected {
	font-size: 0.65rem;
	color: #10b981;
	font-weight: 600;
	background: #ecfdf5;
	padding: 0.15rem 0.4rem;
	border-radius: 4px;
	white-space: nowrap;
}

.mockup-button {
	background: #4338ca;
	color: #fff;
	padding: 0.625rem 1rem;
	border-radius: 6px;
	font-size: 0.8rem;
	font-weight: 600;
	text-align: center;
	cursor: default;
}

/* Mockup 2: Content Calendar */
.mockup-calendar {
	width: 100%;
	max-width: 240px;
}

.mockup-cal-header {
	display: flex;
	gap: 2rem;
	margin-bottom: 0.75rem;
	padding-left: 0.5rem;
}

.mockup-cal-day {
	font-size: 0.7rem;
	color: #94a3b8;
	font-weight: 600;
}

.mockup-cal-item {
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	padding: 0.75rem;
	margin-bottom: 0.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.mockup-cal-published {
	border-color: #10b981;
	border-width: 2px;
}

.mockup-cal-badge {
	font-size: 0.6rem;
	font-weight: 700;
	color: #10b981;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.mockup-cal-title {
	font-size: 0.8rem;
	color: #1e293b;
	font-weight: 500;
}

.mockup-cal-meta {
	font-size: 0.65rem;
	color: #94a3b8;
}

/* Mockup 2 V2: Calendar Grid */
.how-it-works-card-graphic.calendar-graphic {
	border-radius: 12px !important;
	padding: 0.75rem 0 0 1rem !important;
	align-items: flex-start !important;
	justify-content: flex-start !important;
	overflow: hidden !important;
	height: 228px !important;
	box-sizing: border-box !important;
}

.calendar-graphic .mockup-cal-meta {
	line-height: 1.1;
	margin-top: -0.1rem;
}

.mockup-calendar-v2 {
	width: calc(100% + 1rem);
	margin-right: -1rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.mockup-cal-row {
	display: flex;
	gap: 0.5rem;
}


.mockup-cal-cell {
	flex: 1;
	min-width: 0;
}

.mockup-cal-tomorrow {
	flex: 0.7;
	overflow: visible;
	margin-right: -1rem;
	padding-right: 1rem;
}

.mockup-cal-date {
	font-size: 0.65rem;
	font-weight: 600;
	color: #94a3b8;
	margin-bottom: 0.35rem;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.mockup-cal-today .mockup-cal-date {
	color: #4338ca;
}

.mockup-cal-card {
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 6px;
	padding: 0.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}

.mockup-cal-card.mockup-cal-published {
	border-color: #10b981;
	border-width: 2px;
}

.mockup-cal-card .mockup-cal-badge {
	font-size: 0.55rem;
	font-weight: 700;
	color: #10b981;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.mockup-cal-card .mockup-cal-title {
	font-size: 0.7rem;
	color: #1e293b;
	font-weight: 500;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.mockup-cal-card .mockup-cal-meta {
	font-size: 0.6rem;
	color: #94a3b8;
}

.mockup-cal-view-btn {
	font-size: 0.55rem;
	font-weight: 600;
	color: #4338ca;
	background: #eef2ff;
	padding: 0.25rem 0.5rem;
	border-radius: 4px;
	margin-top: 0.25rem;
	display: inline-block;
}

.mockup-cal-nextweek {
	opacity: 0.5;
}

.mockup-cal-nextweek .mockup-cal-card {
	padding: 0.4rem;
}

/* Mockup 3: SEO Gauge */
.mockup-gauge {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
}

.mockup-gauge-label {
	font-size: 0.75rem;
	color: #64748b;
	font-weight: 500;
}

.mockup-gauge-circle {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: conic-gradient(#10b981 0deg 349deg, #e2e8f0 349deg 360deg);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.mockup-gauge-circle::before {
	content: '';
	position: absolute;
	width: 70px;
	height: 70px;
	background: #f8fafc;
	border-radius: 50%;
}

.mockup-gauge-value {
	position: relative;
	font-size: 1.5rem;
	font-weight: 700;
	color: #10b981;
}

.mockup-gauge-meta {
	font-size: 0.7rem;
	color: #94a3b8;
}

/* Mockup 3 V2: Search Console Chart */
.how-it-works-card-graphic.search-console-graphic {
	padding: 1rem !important;
	align-items: stretch !important;
	justify-content: stretch !important;
}

.mockup-search-console {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.mockup-sc-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.mockup-sc-title {
	font-size: 0.8rem;
	font-weight: 600;
	color: #1e293b;
}

.mockup-sc-period {
	font-size: 0.65rem;
	color: #94a3b8;
	background: #f1f5f9;
	padding: 0.2rem 0.5rem;
	border-radius: 4px;
}

.mockup-sc-stats {
	display: flex;
	gap: 1.5rem;
	margin-bottom: -0.6rem;
	position: relative;
	z-index: 1;
}

.mockup-sc-stat {
	display: flex;
	flex-direction: column;
	gap: 0.1rem;
}

.mockup-sc-stat-value {
	font-size: 1.25rem;
	font-weight: 700;
}

.mockup-sc-stat-label {
	font-size: 0.65rem;
	font-weight: 500;
}

.mockup-sc-clicks .mockup-sc-stat-value,
.mockup-sc-clicks .mockup-sc-stat-label {
	color: #0d9488;
}

.mockup-sc-impressions .mockup-sc-stat-value,
.mockup-sc-impressions .mockup-sc-stat-label {
	color: #7c3aed;
}

.mockup-sc-chart {
	flex: 1;
	display: flex;
	flex-direction: column;
	min-height: 80px;
}

.mockup-sc-svg {
	flex: 1;
	width: 100%;
	overflow: visible;
}

.mockup-sc-line-impressions {
	fill: none;
	stroke: #7c3aed;
	stroke-width: 2.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.mockup-sc-line-clicks {
	fill: none;
	stroke: #0d9488;
	stroke-width: 2.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.mockup-sc-xaxis {
	display: flex;
	justify-content: space-between;
	padding-top: 0.25rem;
	font-size: 0.6rem;
	color: #94a3b8;
}

/* Keyword Strategy Mockup - Table Layout */
.mockup-keyword-strategy {
	background: #ffffff;
	border-radius: 12px;
	box-shadow:
		0 25px 80px rgba(0, 0, 0, 0.12),
		0 10px 30px rgba(79, 70, 229, 0.08),
		0 0 0 1px rgba(0, 0, 0, 0.05);
	max-width: 580px;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	overflow: hidden;
}

/* Keyword Table */
.keyword-table-wrapper {
	overflow-x: auto;
}

.keyword-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.75rem;
}

.keyword-table thead {
	background: #f8fafc;
	border-bottom: 1px solid #e2e8f0;
}

.keyword-table thead tr th:first-child {
	border-top-left-radius: 12px;
}

.keyword-table thead tr th:last-child {
	border-top-right-radius: 12px;
}

.keyword-table th {
	padding: 0.5rem 0.5rem;
	text-align: left;
	font-weight: 600;
	color: #64748b;
	font-size: 0.65rem;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	white-space: nowrap;
}

.keyword-table td {
	padding: 0.625rem 0.5rem;
	border-bottom: 1px solid #f1f5f9;
	color: #334155;
}

.keyword-table tbody tr:last-child td {
	border-bottom: none;
}

/* Column widths */
.col-select {
	width: 32px;
	text-align: center !important;
}

.col-keyword {
	min-width: 180px;
}

.col-type {
	width: 70px;
}

.col-volume,
.col-difficulty {
	width: 50px;
	text-align: right !important;
}

.col-intent {
	width: 95px;
}

/* Checkbox styling */
.keyword-checkbox {
	display: inline-block;
	width: 16px;
	height: 16px;
	border: 2px solid #cbd5e1;
	border-radius: 4px;
	background: #ffffff;
	position: relative;
	cursor: pointer;
}

.keyword-checkbox.checked {
	background: #6366f1;
	border-color: #6366f1;
}

.keyword-checkbox.checked::after {
	content: '✓';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #ffffff;
	font-size: 10px;
	font-weight: 700;
}

/* Row states */
.keyword-row.selected {
	background: #faf5ff;
}

.keyword-row:hover {
	background: #f5f3ff;
}

/* Keyword type badges */
.keyword-type {
	display: inline-block;
	font-size: 0.6rem;
	font-weight: 600;
	padding: 0.15rem 0.4rem;
	border-radius: 4px;
	white-space: nowrap;
}

.type-pillar {
	background: #fae8ff;
	color: #a21caf;
}

.type-spoke {
	background: #e0e7ff;
	color: #4338ca;
}

.type-longtail {
	background: #f1f5f9;
	color: #475569;
}

/* Intent chips */
.keyword-intent {
	display: inline-block;
	font-size: 0.6rem;
	font-weight: 600;
	padding: 0.15rem 0.4rem;
	border-radius: 4px;
	white-space: nowrap;
}

.intent-informational {
	background: #dbeafe;
	color: #1d4ed8;
}

.intent-commercial {
	background: #fef3c7;
	color: #b45309;
}

.intent-transactional {
	background: #d1fae5;
	color: #047857;
}

/* Table footer */
.keyword-table-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.75rem 1rem;
	background: #f8fafc;
	border-top: 1px solid #e2e8f0;
}

.keyword-summary {
	font-size: 0.7rem;
	color: #64748b;
}

.keyword-add-btn {
	background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
	color: #ffffff;
	border: none;
	padding: 0.5rem 1rem;
	border-radius: 6px;
	font-size: 0.7rem;
	font-weight: 600;
	cursor: pointer;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.keyword-add-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

/* Responsive adjustments */
@media (max-width: 600px) {
	.mockup-keyword-strategy {
		max-width: 100%;
	}

	.keyword-table {
		font-size: 0.65rem;
	}

	.keyword-table th,
	.keyword-table td {
		padding: 0.4rem 0.35rem;
	}

	.col-intent {
		display: none;
	}
}

/* SEO Post Mockup */
.mockup-seo-post {
	position: relative;
	background: #ffffff;
	border-radius: 12px;
	box-shadow:
		0 25px 80px rgba(0, 0, 0, 0.12),
		0 10px 30px rgba(79, 70, 229, 0.08),
		0 0 0 1px rgba(0, 0, 0, 0.05);
	max-width: 480px;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	overflow: visible;
}

.seo-post-content {
	padding: 1.25rem;
}

.seo-post-header {
	margin-bottom: 1rem;
}

.seo-post-category {
	display: inline-block;
	font-size: 0.6rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #6366f1;
	background: #eef2ff;
	padding: 0.2rem 0.5rem;
	border-radius: 4px;
	margin-bottom: 0.5rem;
}

.seo-post-title {
	font-size: 0.95rem;
	font-weight: 700;
	color: #1e293b;
	line-height: 1.3;
	margin: 0;
}

.seo-post-image {
	margin: 0.75rem 0;
	border-radius: 6px;
	overflow: hidden;
}

.seo-post-image img {
	width: 100%;
	height: 100px !important;
	object-fit: cover;
	display: block;
}

.seo-post-body {
	font-size: 0.7rem;
	line-height: 1.5;
	color: #475569;
}

.seo-post-intro {
	margin-bottom: 0.75rem;
	color: #64748b;
}

.seo-post-h2 {
	font-size: 0.75rem;
	font-weight: 600;
	color: #1e293b;
	margin: 0.75rem 0 0.35rem;
}

.seo-post-text {
	margin: 0 0 0.5rem;
}

.seo-internal-link {
	color: #6366f1;
	text-decoration: none;
	background: linear-gradient(120deg, #eef2ff 0%, #e0e7ff 100%);
	padding: 0.1rem 0.25rem;
	border-radius: 3px;
	border-bottom: 1px dashed #6366f1;
}

/* SEO Checklist Overlay */
.seo-checklist-overlay {
	position: absolute;
	bottom: -12px;
	right: -12px;
	background: #ffffff;
	border-radius: 8px;
	padding: 0.6rem 0.75rem;
	box-shadow:
		0 10px 40px rgba(0, 0, 0, 0.15),
		0 0 0 1px rgba(0, 0, 0, 0.05);
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.seo-checklist-overlay .seo-check-item {
	font-size: 0.65rem;
	color: #334155;
	display: flex;
	align-items: center;
	gap: 0.4rem;
	white-space: nowrap;
}

.seo-checklist-overlay .check-icon {
	color: #10b981;
	font-weight: 700;
	font-size: 0.7rem;
}

.seo-overlay-header {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding-bottom: 0.4rem;
	margin-bottom: 0.3rem;
	border-bottom: 1px solid #e2e8f0;
}

.seo-score-ring {
	position: relative;
	width: 32px;
	height: 32px;
}

.seo-donut {
	width: 100%;
	height: 100%;
	transform: rotate(-90deg);
}

.seo-donut-bg {
	fill: none;
	stroke: #e2e8f0;
	stroke-width: 3;
}

.seo-donut-fill {
	fill: none;
	stroke: #10b981;
	stroke-width: 3;
	stroke-linecap: round;
}

.seo-score-value {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 0.6rem;
	font-weight: 700;
	color: #10b981;
}

.seo-overlay-label {
	font-size: 0.6rem;
	color: #64748b;
	font-weight: 500;
	line-height: 1.2;
}

/* ===== Feature 3: AI Agent Activity Mockup ===== */
.mockup-agent-activity {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	padding: 1.25rem;
	max-width: 420px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.agent-activity-header {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 1rem;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid #e2e8f0;
}

.agent-activity-icon {
	font-size: 1.25rem;
}

.agent-activity-title {
	font-weight: 600;
	font-size: 0.95rem;
	color: #1e293b;
}

.agent-activity-status {
	margin-left: auto;
	font-size: 0.65rem;
	color: #10b981;
	background: #ecfdf5;
	padding: 0.2rem 0.5rem;
	border-radius: 10px;
	font-weight: 500;
}

.agent-actions-list {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.agent-action-item {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.4rem;
	padding: 0.6rem 0.75rem;
	background: #f8fafc;
	border-radius: 8px;
	font-size: 0.8rem;
	line-height: 1.4;
}

.agent-action-item.extracted {
	background: #eef2ff;
}

.agent-action-item.external {
	background: #fefce8;
}

.agent-action-content {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}

.action-label {
	color: #64748b;
}

.action-value {
	color: #334155;
}

.agent-action-item.external .action-value {
	color: #a16207;
}

.action-check {
	color: #10b981;
	font-weight: 600;
	flex-shrink: 0;
}

.agent-message {
	padding: 0.5rem 0.75rem;
	font-size: 0.8rem;
	line-height: 1.4;
	color: #334155;
}

.agent-action-item.creating {
	background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
}

.agent-action-item.creating .action-value {
	color: #4f46e5;
	font-weight: 500;
}

.action-spinner {
	flex-shrink: 0;
}

/* Chat Editor Mockup (Feature 4) */
.mockup-chat-editor {
	background: #ffffff;
	border-radius: 16px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
	padding: 1.25rem;
	max-width: 420px;
}

.chat-conversation {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.chat-message {
	display: flex;
}

.chat-message.chat-user {
	justify-content: flex-end;
}

.chat-message.chat-agent {
	justify-content: flex-start;
}

.chat-bubble {
	max-width: 90%;
	padding: 0.75rem 1rem;
	border-radius: 12px;
	font-size: 0.85rem;
	line-height: 1.5;
}

.user-bubble {
	background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
	color: #ffffff;
	border-bottom-right-radius: 4px;
}

.agent-bubble {
	background: transparent;
	color: #334155;
	padding: 0.5rem 0.75rem;
}

.agent-bubble-text {
	display: block;
	margin-bottom: 0.5rem;
}

.agent-links-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.agent-links-list li {
	display: flex;
	align-items: baseline;
	gap: 0.35rem;
	font-size: 0.8rem;
}

.agent-links-list li::before {
	content: "→";
	color: #10b981;
	flex-shrink: 0;
}

.agent-links-list a {
	color: #4f46e5;
	text-decoration: none;
	font-weight: 500;
}

.agent-links-list a:hover {
	text-decoration: underline;
}

.link-location {
	color: #94a3b8;
	font-size: 0.75rem;
}

.chat-message.chat-agent .agent-actions-list {
	max-width: 90%;
}

/* Autopilot Cards Mockup (Feature 5) */
.mockup-autopilot-cards {
	position: relative;
	height: 320px;
	width: 340px;
}

.autopilot-card {
	position: absolute;
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	padding: 1rem 1.25rem;
	width: 280px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.autopilot-card.card-published {
	top: 0;
	left: 40px;
	transform: rotate(-6deg);
	z-index: 1;
}

.autopilot-card.card-scheduled {
	top: 90px;
	left: 0;
	transform: rotate(3deg);
	z-index: 2;
}

.autopilot-card.card-keywords {
	top: 200px;
	left: 50px;
	transform: rotate(-4deg);
	z-index: 3;
}

.autopilot-card:hover {
	transform: rotate(0deg) scale(1.02);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
	z-index: 10;
}

.autopilot-card-header {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.6rem;
}

.autopilot-card-icon {
	font-size: 0.9rem;
}

.autopilot-card-icon.published {
	color: #10b981;
	font-weight: 700;
}

.autopilot-card-title {
	font-size: 0.8rem;
	font-weight: 600;
	color: #1e293b;
}

.autopilot-card-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.autopilot-card-list li {
	font-size: 0.8rem;
	color: #334155;
	line-height: 1.4;
}

.schedule-day {
	display: inline-block;
	background: #f1f5f9;
	color: #64748b;
	font-size: 0.65rem;
	font-weight: 500;
	padding: 0.15rem 0.4rem;
	border-radius: 4px;
	margin-right: 0.35rem;
}

.autopilot-keywords {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
}

.keyword-tag {
	background: #eef2ff;
	color: #4f46e5;
	font-size: 0.7rem;
	font-weight: 500;
	padding: 0.25rem 0.5rem;
	border-radius: 6px;
}

.keyword-tag-more {
	color: #64748b;
	font-size: 0.7rem;
	font-weight: 500;
	padding: 0.25rem 0.3rem;
}

/* Responsive */
@media (max-width: 900px) {
	.how-it-works-header {
		grid-template-columns: 1fr;
		gap: 2rem;
		text-align: center;
	}

	.how-it-works-header-left {
		align-items: center;
	}

	.how-it-works-header-right {
		align-items: center;
		padding-top: 0;
	}

	.how-it-works-headline {
		font-size: 2.25rem;
	}

	.how-it-works-cards {
		grid-template-columns: 1fr;
		max-width: 400px;
	}
}

@media (max-width: 600px) {
	.how-it-works-section {
		padding: 3rem 1.5rem;
	}

	.how-it-works-headline {
		font-size: 1.875rem;
	}
}

