/* ==========================================================================
   Section: Solution 03 — Turn Attention Into Customers
   Depends on solution-01.css for the shared section, typography and card shell.
   ========================================================================== */

/* Keep the supporting line self-contained even when this section is reused
   without solution-02.css. */

.wb-solution--03 .wb-solution__row-sub {
	font-size: 14px;
	font-weight: 500;
	color: var(--color-heading, #111827);
	line-height: 1.5;
}

/* --------------------------------------------------------------------------
   Desktop composition — reputation -> enquiry -> follow-up
   -------------------------------------------------------------------------- */

.wb-solution__stage--conversion {
	height: 570px;
}

.wb-solution__conversion-card--reputation {
	top: 18px;
	left: 0;
	width: 228px;
}

.wb-solution__conversion-card--enquiries {
	top: 112px;
	right: 0;
	width: 320px;
	box-shadow:
		0 1px 2px rgba(17, 24, 39, 0.05),
		0 16px 42px rgba(17, 24, 39, 0.08);
}

.wb-solution__conversion-card--followup {
	top: 408px;
	left: 56px;
	width: 272px;
}

/* Quiet flow lines. The cards remain the visual focus. */

.wb-solution__conversion-path {
	stroke: rgba(73, 106, 249, 0.26);
	stroke-width: 1.25;
	stroke-linecap: round;
	stroke-dasharray: 190;
	stroke-dashoffset: 190;
	transition: stroke-dashoffset 0.85s cubic-bezier(0.4, 0, 0.2, 1);
}

.wb-solution--03.is-inview .wb-solution__conversion-path--a {
	stroke-dashoffset: 0;
	transition-delay: 0.62s;
}

.wb-solution--03.is-inview .wb-solution__conversion-path--b {
	stroke-dashoffset: 0;
	transition-delay: 1.42s;
}

@keyframes wb-conversion-path-drift {
	from { stroke-dashoffset: 0; }
	to   { stroke-dashoffset: -30; }
}

.wb-solution--03.is-live .wb-solution__conversion-path {
	stroke-dasharray: 4 10;
	animation: wb-conversion-path-drift 7s linear infinite;
	transition: none;
}

/* Reveal order: reputation -> enquiry -> follow-up */

.wb-solution--03.is-inview .wb-solution__conversion-card--reputation { transition-delay: 0s; }
.wb-solution--03.is-inview .wb-solution__conversion-card--enquiries  { transition-delay: 0.8s; }
.wb-solution--03.is-inview .wb-solution__conversion-card--followup   { transition-delay: 1.65s; }

/* --------------------------------------------------------------------------
   Reputation card
   -------------------------------------------------------------------------- */

.wb-solution__review-summary {
	display: flex;
	align-items: center;
	gap: 12px;
	padding-bottom: 12px;
	border-bottom: 1px solid rgba(17, 24, 39, 0.07);
}

.wb-solution__review-score {
	font-size: 30px;
	line-height: 1;
	font-weight: 700;
	letter-spacing: -0.04em;
	color: var(--color-heading, #111827);
	font-variant-numeric: tabular-nums;
}

.wb-solution__review-meta {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.wb-solution__review-count {
	font-size: 10px;
	line-height: 1.3;
	color: var(--color-text-muted, #6B7280);
}

.wb-solution__review-quote {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px;
	border-radius: 10px;
	background: rgba(73, 106, 249, 0.055);
	border: 1px solid rgba(73, 106, 249, 0.1);
}

.wb-solution__review-avatar {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: rgba(73, 106, 249, 0.16);
	flex: 0 0 auto;
}

.wb-solution__review-lines {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 6px;
}

/* --------------------------------------------------------------------------
   Enquiry card
   -------------------------------------------------------------------------- */

.wb-solution__form-card-body {
	gap: 10px;
	padding-top: 14px;
}

.wb-solution__form-heading {
	font-size: 18px;
	line-height: 1.25;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--color-heading, #111827);
}

.wb-solution__form-copy {
	font-size: 11px;
	line-height: 1.55;
	color: var(--color-text-muted, #6B7280);
	max-width: 31ch;
}

.wb-solution__mini-form {
	display: flex;
	flex-direction: column;
	gap: 9px;
	margin-top: 2px;
}

.wb-solution__field-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
}

.wb-solution__field {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.wb-solution__field-label {
	font-size: 9px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--color-text-muted, #6B7280);
}

.wb-solution__field-value {
	position: relative;
	height: 29px;
	border-radius: 7px;
	border: 1px solid rgba(17, 24, 39, 0.1);
	background: #FFFFFF;
}

.wb-solution__field-value::before {
	content: "";
	position: absolute;
	left: 9px;
	top: 10px;
	width: 46%;
	height: 7px;
	border-radius: 4px;
	background: rgba(17, 24, 39, 0.055);
}

.wb-solution__field-value--select::after {
	content: "";
	position: absolute;
	right: 10px;
	top: 10px;
	width: 6px;
	height: 6px;
	border-right: 1.5px solid rgba(17, 24, 39, 0.32);
	border-bottom: 1.5px solid rgba(17, 24, 39, 0.32);
	transform: rotate(45deg);
}

.wb-solution__form-button {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 2px;
	padding: 9px 12px;
	border-radius: 8px;
	background: var(--color-primary, #496AF9);
	color: #FFFFFF;
	font-size: 11px;
	font-weight: 600;
	box-shadow: 0 6px 16px rgba(73, 106, 249, 0.18);
}

.wb-solution__form-button span {
	font-size: 14px;
	line-height: 1;
}

/* --------------------------------------------------------------------------
   Follow-up card
   -------------------------------------------------------------------------- */

.wb-solution__message-card-body {
	gap: 9px;
}

.wb-solution__message {
	font-size: 10px;
	line-height: 1.45;
	padding: 9px 10px;
	border-radius: 10px;
}

.wb-solution__followup-actions {
	display: flex;
	gap: 7px;
	margin-top: 1px;
}

.wb-solution__followup-chip {
	font-size: 9px;
	font-weight: 600;
	color: var(--color-primary, #496AF9);
	border: 1px solid rgba(73, 106, 249, 0.24);
	border-radius: 100px;
	padding: 4px 9px;
	background: rgba(73, 106, 249, 0.04);
}

.wb-solution__followup-chip--muted {
	color: var(--color-text-muted, #6B7280);
	border-color: rgba(17, 24, 39, 0.11);
	background: transparent;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 960px) {
	.wb-solution__stage--conversion {
		height: auto;
		max-width: 356px;
		margin: 0 auto;
		display: flex;
		flex-direction: column;
		gap: 24px;
	}

	.wb-solution--03 .wb-solution__conversion-card,
	.wb-solution--03 .wb-solution__conversion-card--reputation,
	.wb-solution--03 .wb-solution__conversion-card--enquiries,
	.wb-solution--03 .wb-solution__conversion-card--followup {
		position: relative;
		top: auto;
		left: auto;
		right: auto;
		width: 100%;
	}

	.wb-solution--03 .wb-solution__conversion-card--reputation { order: 1; }
	.wb-solution--03 .wb-solution__conversion-card--enquiries  { order: 2; }
	.wb-solution--03 .wb-solution__conversion-card--followup   { order: 3; }

	.wb-solution--03.is-inview .wb-solution__conversion-card--reputation { transition-delay: 0s; }
	.wb-solution--03.is-inview .wb-solution__conversion-card--enquiries  { transition-delay: 0.15s; }
	.wb-solution--03.is-inview .wb-solution__conversion-card--followup   { transition-delay: 0.3s; }
}

@media (max-width: 480px) {
	.wb-solution__field-row {
		grid-template-columns: 1fr 1fr;
	}

	}

/* --------------------------------------------------------------------------
   Reduced motion
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
	.wb-solution__conversion-path {
		transition: none !important;
		animation: none !important;
		stroke-dashoffset: 0;
		stroke-dasharray: none;
	}
}


/* --------------------------------------------------------------------------
   Follow-up card — editorial timeline, intentionally not an AI status pill
   -------------------------------------------------------------------------- */
.wb-solution__followup-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	padding-bottom: 9px;
	border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}
.wb-solution__followup-title {
	font-size: 11px;
	font-weight: 650;
	color: var(--color-heading, #111827);
}
.wb-solution__followup-meta {
	font-size: 8px;
	color: var(--color-text-muted, #6B7280);
	white-space: nowrap;
}
.wb-solution__followup-step {
	display: grid;
	grid-template-columns: 58px 1fr;
	gap: 8px;
	align-items: start;
}
.wb-solution__followup-time {
	font-size: 8px;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--color-text-muted, #6B7280);
	padding-top: 7px;
}
.wb-solution__followup-step .wb-solution__message {
	display: block;
	margin: 0;
	padding: 7px 9px;
	border-radius: 7px;
	background: rgba(17, 24, 39, 0.04);
	border: 1px solid rgba(17, 24, 39, 0.06);
	color: var(--color-heading, #111827);
}

/* Compact phone presentation: same vertical order, no overlaps or collage layout. */
/* @media (max-width: 480px) {
	.wb-solution--03 .wb-solution__stage--conversion {
		max-width: 320px;
		gap: 14px;
	}

	.wb-solution--03 .wb-solution__review-summary {
		gap: 9px;
		padding-bottom: 8px;
	}

	.wb-solution--03 .wb-solution__review-score {
		font-size: 25px;
	}

	.wb-solution--03 .wb-solution__review-quote {
		padding: 7px 8px;
	}

	.wb-solution--03 .wb-solution__review-avatar {
		width: 23px;
		height: 23px;
	}

	.wb-solution--03 .wb-solution__form-card-body {
		padding-top: 10px;
		gap: 7px;
	}

	.wb-solution--03 .wb-solution__form-heading {
		font-size: 15px;
	}

	.wb-solution--03 .wb-solution__form-copy {
		display: none;
	}

	.wb-solution--03 .wb-solution__mini-form {
		gap: 6px;
		margin-top: 0;
	}

	.wb-solution--03 .wb-solution__field {
		gap: 3px;
	}

	.wb-solution--03 .wb-solution__field-label {
		font-size: 7px;
	}

	.wb-solution--03 .wb-solution__field-value {
		height: 23px;
	}

	.wb-solution--03 .wb-solution__field-value::before {
		top: 8px;
		height: 5px;
	}

	.wb-solution--03 .wb-solution__field-value--select::after {
		top: 7px;
	}

	.wb-solution--03 .wb-solution__form-button {
		padding: 7px 10px;
		font-size: 10px;
	}

	.wb-solution--03 .wb-solution__message-card-body {
		gap: 7px;
	}

	.wb-solution--03 .wb-solution__followup-head {
		padding-bottom: 6px;
	}

	.wb-solution--03 .wb-solution__followup-title {
		font-size: 10px;
	}

	.wb-solution--03 .wb-solution__followup-meta {
		font-size: 7px;
	}

	.wb-solution--03 .wb-solution__followup-step {
		grid-template-columns: 52px 1fr;
		gap: 6px;
	}

	.wb-solution--03 .wb-solution__followup-time {
		font-size: 7px;
		padding-top: 6px;
	}

	.wb-solution--03 .wb-solution__followup-step .wb-solution__message {
		font-size: 8.5px;
		padding: 6px 8px;
	}

	.wb-solution--03 .wb-solution__followup-chip {
		font-size: 8px;
		padding: 3px 7px;
	}
} */
