/* ============================================================
   cardetails.css — Redesigned Freemium Vehicle Report Page
   Modern SaaS style, mobile-first, conversion-optimized
   ============================================================ */

/* ---------- Base overrides for this page ---------- */
.cd-page { background: #f5f7fa; }
.cd-page .car-check-main { background: #f5f7fa; }

/* ---------- Hero Section ---------- */
.cd-hero {
	background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0f172a 100%);
	padding: 80px 0 40px; /* 80px top clears the fixed navbar */
	position: relative;
	overflow: hidden;
}

/* ---------- Not-found page offset (no hero) ---------- */
.cd-page .cd-content.cd-content--nohero {
	padding-top: 80px;
}
.cd-hero::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background: radial-gradient(circle at 70% 20%, rgba(99,102,241,0.15) 0%, transparent 50%),
	            radial-gradient(circle at 30% 80%, rgba(59,130,246,0.1) 0%, transparent 40%);
	pointer-events: none;
}
.cd-hero-inner {
	position: relative;
	z-index: 1;
	max-width: 900px;
	margin: 0 auto;
	padding: 0 16px;
}
.cd-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(34,197,94,0.15);
	border: 1px solid rgba(34,197,94,0.3);
	color: #4ade80;
	padding: 5px 14px;
	border-radius: 20px;
	font-size: 0.78rem;
	font-weight: 600;
	margin-bottom: 16px;
}
.cd-hero h1 {
	color: #fff;
	font-size: 1.6rem;
	font-weight: 800;
	margin: 0 0 6px;
	line-height: 1.3;
}
.cd-hero-sub {
	color: rgba(255,255,255,0.7);
	font-size: 0.95rem;
	margin: 0 0 24px;
	line-height: 1.5;
}

/* Vehicle Summary Card in hero */
.cd-vehicle-card {
	background: rgba(255,255,255,0.07);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: 16px;
	padding: 20px;
	margin-bottom: 24px;
}
.cd-vehicle-card-header {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 16px;
}
.cd-vehicle-logo {
	width: 56px;
	height: 56px;
	border-radius: 12px;
	object-fit: contain;
	background: rgba(255,255,255,0.1);
	padding: 6px;
	flex-shrink: 0;
}
.cd-vehicle-title {
	color: #fff;
	font-size: 1.15rem;
	font-weight: 700;
	margin: 0 0 2px;
}
.cd-vehicle-subtitle {
	color: rgba(255,255,255,0.6);
	font-size: 0.82rem;
	margin: 0;
}
.cd-reg-plate {
	display: inline-block;
	background: #fbbf24;
	color: #1a1a1a;
	font-weight: 800;
	font-size: 1.1rem;
	letter-spacing: 3px;
	padding: 6px 18px;
	border-radius: 6px;
	text-transform: uppercase;
}
.cd-vehicle-specs {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
	margin-top: 16px;
}
.cd-spec-item {
	background: rgba(255,255,255,0.06);
	border-radius: 10px;
	padding: 10px 12px;
	text-align: center;
}
.cd-spec-label {
	display: block;
	color: rgba(255,255,255,0.5);
	font-size: 0.68rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-weight: 600;
	margin-bottom: 4px;
}
.cd-spec-value {
	display: block;
	color: #fff;
	font-size: 0.9rem;
	font-weight: 700;
}

/* Hero CTA group */
.cd-hero-ctas {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.cd-cta-primary {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
	color: #fff;
	font-size: 1.05rem;
	font-weight: 700;
	padding: 16px 24px;
	border-radius: 12px;
	border: none;
	text-decoration: none;
	cursor: pointer;
	box-shadow: 0 4px 14px rgba(37,99,235,0.4);
	transition: all 0.2s ease;
}
.cd-cta-primary:hover {
	background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
	box-shadow: 0 6px 20px rgba(37,99,235,0.5);
	transform: translateY(-1px);
	color: #fff;
	text-decoration: none;
}
.cd-cta-secondary {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: transparent;
	color: rgba(255,255,255,0.8);
	font-size: 0.9rem;
	font-weight: 600;
	padding: 12px 24px;
	border-radius: 12px;
	border: 1px solid rgba(255,255,255,0.25);
	text-decoration: none;
	cursor: pointer;
	transition: all 0.2s ease;
}
.cd-cta-secondary:hover {
	background: rgba(255,255,255,0.08);
	border-color: rgba(255,255,255,0.4);
	color: #fff;
	text-decoration: none;
}

/* ---------- Content Container ---------- */
.cd-content {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 16px;
}

/* ---------- Section Titles ---------- */
.cd-section-title {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 32px 0 16px;
}
.cd-section-icon {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	flex-shrink: 0;
}
.cd-section-icon.green  { background: #dcfce7; color: #16a34a; }
.cd-section-icon.blue   { background: #dbeafe; color: #2563eb; }
.cd-section-icon.purple { background: #ede9fe; color: #7c3aed; }
.cd-section-icon.amber  { background: #fef3c7; color: #d97706; }
.cd-section-icon.red    { background: #fee2e2; color: #dc2626; }
.cd-section-title h2 {
	font-size: 1.15rem;
	font-weight: 700;
	color: #1e293b;
	margin: 0;
}
.cd-section-title .cd-free-badge {
	display: inline-block;
	background: #dcfce7;
	color: #15803d;
	font-size: 0.68rem;
	font-weight: 700;
	padding: 2px 8px;
	border-radius: 10px;
	text-transform: uppercase;
	letter-spacing: 0.3px;
}

/* ---------- Cards ---------- */
.cd-card {
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
	overflow: hidden;
	margin-bottom: 16px;
}
.cd-card-body {
	padding: 20px;
}

/* ---------- Data rows ---------- */
.cd-data-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
}
.cd-data-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 13px 0;
	border-bottom: 1px solid #f1f5f9;
}
.cd-data-row:last-child { border-bottom: none; }
.cd-data-label {
	color: #64748b;
	font-size: 0.88rem;
	font-weight: 500;
}
.cd-data-value {
	color: #1e293b;
	font-size: 0.92rem;
	font-weight: 600;
	text-align: right;
}

/* Status Pills */
.cd-status-pill {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
}
.cd-status-pill.pass { background: #dcfce7; color: #15803d; }
.cd-status-pill.fail { background: #fee2e2; color: #dc2626; }
.cd-status-pill.warn { background: #fef3c7; color: #b45309; }
.cd-status-pill.info { background: #dbeafe; color: #1d4ed8; }

/* ---------- Tax & MOT Status Cards ---------- */
.cd-status-cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-bottom: 16px;
}
.cd-status-card {
	background: #fff;
	border-radius: 14px;
	padding: 16px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.06);
	text-align: center;
	position: relative;
	overflow: hidden;
}
.cd-status-card::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 4px;
}
.cd-status-card.status-good::before { background: #22c55e; }
.cd-status-card.status-bad::before { background: #ef4444; }
.cd-status-card.status-info::before { background: #3b82f6; }
.cd-status-label {
	display: block;
	color: #94a3b8;
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-weight: 600;
	margin-bottom: 8px;
}
.cd-status-value {
	font-size: 0.92rem;
	font-weight: 700;
	line-height: 1.3;
}
.cd-status-card.status-good .cd-status-value { color: #15803d; }
.cd-status-card.status-bad .cd-status-value { color: #dc2626; }
.cd-status-card.status-info .cd-status-value { color: #1d4ed8; }
.cd-status-expiry {
	display: block;
	color: #94a3b8;
	font-size: 0.75rem;
	font-weight: 500;
	margin-top: 4px;
}

/* ---------- MOT History Timeline ---------- */
.cd-mot-timeline {
	position: relative;
}
.cd-mot-entry {
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.06);
	padding: 16px 20px;
	margin-bottom: 12px;
	border-left: 4px solid #22c55e;
	transition: box-shadow 0.2s;
}
.cd-mot-entry:hover {
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.cd-mot-entry.fail {
	border-left-color: #ef4444;
}
.cd-mot-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 8px;
}
.cd-mot-date {
	font-size: 0.88rem;
	font-weight: 700;
	color: #1e293b;
}
.cd-mot-result {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 0.78rem;
	font-weight: 700;
	padding: 3px 10px;
	border-radius: 20px;
}
.cd-mot-result.pass { background: #dcfce7; color: #15803d; }
.cd-mot-result.fail { background: #fee2e2; color: #dc2626; }
.cd-mot-mileage {
	display: flex;
	align-items: center;
	gap: 6px;
	color: #64748b;
	font-size: 0.82rem;
	font-weight: 500;
}
.cd-mot-mileage i { color: #94a3b8; font-size: 0.78rem; }
.cd-mot-defects {
	margin-top: 12px;
	padding-top: 10px;
	border-top: 1px solid #f1f5f9;
}
.cd-mot-defects h6 {
	font-size: 0.78rem;
	font-weight: 600;
	color: #64748b;
	text-transform: uppercase;
	letter-spacing: 0.3px;
	margin: 0 0 8px;
}
.cd-mot-defect-item {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	padding: 6px 0;
	font-size: 0.82rem;
	color: #475569;
	line-height: 1.4;
}
.cd-mot-defect-item i {
	margin-top: 3px;
	flex-shrink: 0;
}
.cd-mot-defect-item i.advisory   { color: #d97706; }
.cd-mot-defect-item i.dangerous  { color: #dc2626; }
.cd-mot-defect-item i.minor      { color: #3b82f6; }

/* Toggle for extra MOT entries */
.cd-mot-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	padding: 10px;
	font-size: 0.85rem;
	font-weight: 600;
	color: #3b82f6;
	cursor: pointer;
	transition: background 0.2s;
	margin-bottom: 12px;
}
.cd-mot-toggle:hover { background: #eff6ff; }

/* ---------- Conversion Divider (Paywall) ---------- */
.cd-paywall {
	background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
	border-radius: 16px;
	padding: 32px 24px;
	text-align: center;
	margin: 32px 0;
	position: relative;
	overflow: hidden;
}
.cd-paywall::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background: radial-gradient(circle at 50% 0%, rgba(59,130,246,0.2) 0%, transparent 60%);
	pointer-events: none;
}
.cd-paywall-icon {
	width: 56px;
	height: 56px;
	background: rgba(59,130,246,0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
	color: #60a5fa;
	font-size: 1.5rem;
	position: relative;
}
.cd-paywall h3 {
	color: #fff;
	font-size: 1.3rem;
	font-weight: 800;
	margin: 0 0 10px;
	position: relative;
}
.cd-paywall p {
	color: rgba(255,255,255,0.7);
	font-size: 0.9rem;
	margin: 0 0 24px;
	line-height: 1.6;
	position: relative;
}

/* ---------- Locked Features Grid ---------- */
.cd-locked-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
	margin-bottom: 24px;
}
.cd-locked-item {
	background: #fff;
	border-radius: 14px;
	padding: 16px 20px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.06);
	display: flex;
	align-items: center;
	gap: 14px;
	position: relative;
	overflow: hidden;
	border: 1px solid #f1f5f9;
	transition: all 0.2s;
}
.cd-locked-item:hover {
	border-color: #bfdbfe;
	box-shadow: 0 4px 12px rgba(59,130,246,0.08);
}
.cd-locked-icon {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	flex-shrink: 0;
}
.cd-locked-icon.red    { background: #fee2e2; color: #dc2626; }
.cd-locked-icon.amber  { background: #fef3c7; color: #d97706; }
.cd-locked-icon.blue   { background: #dbeafe; color: #2563eb; }
.cd-locked-icon.purple { background: #ede9fe; color: #7c3aed; }
.cd-locked-icon.green  { background: #dcfce7; color: #16a34a; }
.cd-locked-info { flex: 1; }
.cd-locked-info h4 {
	font-size: 0.92rem;
	font-weight: 700;
	color: #1e293b;
	margin: 0 0 2px;
}
.cd-locked-info p {
	font-size: 0.78rem;
	color: #94a3b8;
	margin: 0;
}
.cd-locked-badge {
	display: flex;
	align-items: center;
	gap: 4px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	padding: 4px 10px;
	font-size: 0.7rem;
	font-weight: 600;
	color: #64748b;
	white-space: nowrap;
	flex-shrink: 0;
}
.cd-locked-badge i { color: #94a3b8; }

/* Blurred teaser data */
.cd-teaser-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 16px;
	border-bottom: 1px solid #f1f5f9;
}
.cd-teaser-row:last-child { border-bottom: none; }
.cd-teaser-label {
	color: #64748b;
	font-size: 0.85rem;
	font-weight: 500;
}
.cd-teaser-value {
	color: #1e293b;
	font-size: 0.88rem;
	font-weight: 700;
	filter: blur(5px);
	user-select: none;
	pointer-events: none;
}

/* ---------- Mileage Paywall ---------- */
.cd-mileage-teaser {
	background: #f8fafc;
	border-radius: 10px;
	padding: 12px 16px;
	margin-top: 12px;
}
.cd-mileage-entry {
	display: flex;
	justify-content: space-between;
	padding: 8px 0;
	border-bottom: 1px solid #e2e8f0;
	font-size: 0.85rem;
}
.cd-mileage-entry:last-child { border-bottom: none; }
.cd-mileage-year { color: #64748b; font-weight: 500; }
.cd-mileage-val { font-weight: 700; color: #1e293b; }
.cd-mileage-val.locked {
	filter: blur(5px);
	user-select: none;
	pointer-events: none;
	color: #64748b;
}

/* ---------- Pricing Card ---------- */
.cd-pricing {
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.08);
	overflow: hidden;
	margin: 24px 0;
	border: 2px solid #3b82f6;
	position: relative;
}
.cd-pricing-header {
	background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
	padding: 20px 24px;
	text-align: center;
	color: #fff;
}
.cd-pricing-header h3 {
	font-size: 1.15rem;
	font-weight: 700;
	margin: 0 0 4px;
}
.cd-pricing-header p {
	font-size: 0.82rem;
	margin: 0;
	opacity: 0.9;
}
.cd-pricing-body {
	padding: 24px;
}
.cd-pricing-price {
	text-align: center;
	margin-bottom: 20px;
}
.cd-pricing-price .from {
	font-size: 0.82rem;
	color: #94a3b8;
	font-weight: 500;
}
.cd-pricing-price .amount {
	font-size: 2.8rem;
	font-weight: 800;
	color: #1e293b;
	line-height: 1;
}
.cd-pricing-price .per {
	font-size: 0.82rem;
	color: #94a3b8;
	font-weight: 500;
}
.cd-pricing-features {
	list-style: none;
	padding: 0;
	margin: 0 0 24px;
}
.cd-pricing-features li {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 9px 0;
	border-bottom: 1px solid #f1f5f9;
	font-size: 0.88rem;
	color: #334155;
	font-weight: 500;
}
.cd-pricing-features li:last-child { border-bottom: none; }
.cd-pricing-features li i {
	color: #22c55e;
	font-size: 0.85rem;
	flex-shrink: 0;
}
.cd-pricing-cta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
	color: #fff;
	font-size: 1.05rem;
	font-weight: 700;
	padding: 16px;
	border-radius: 12px;
	border: none;
	text-decoration: none;
	cursor: pointer;
	box-shadow: 0 4px 14px rgba(37,99,235,0.35);
	transition: all 0.2s;
}
.cd-pricing-cta:hover {
	background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
	box-shadow: 0 6px 20px rgba(37,99,235,0.5);
	transform: translateY(-1px);
	color: #fff;
	text-decoration: none;
}
.cd-pricing-micro {
	text-align: center;
	margin-top: 12px;
	font-size: 0.78rem;
	color: #94a3b8;
}
.cd-pricing-micro i { margin-right: 4px; }

/* ---------- Trust Section ---------- */
.cd-trust {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin: 24px 0;
}
.cd-trust-item {
	background: #fff;
	border-radius: 12px;
	padding: 16px 12px;
	text-align: center;
	box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.cd-trust-item i {
	font-size: 1.4rem;
	color: #3b82f6;
	margin-bottom: 8px;
	display: block;
}
.cd-trust-item span {
	font-size: 0.72rem;
	font-weight: 600;
	color: #64748b;
	line-height: 1.3;
	display: block;
}

/* ---------- Info Notice ---------- */
.cd-info-notice {
	background: #fff;
	border-radius: 14px;
	padding: 16px 20px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.06);
	margin-bottom: 16px;
}
.cd-info-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 8px 0;
}
.cd-info-item + .cd-info-item {
	border-top: 1px solid #f1f5f9;
}
.cd-info-icon {
	width: 32px;
	height: 32px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 0.85rem;
}
.cd-info-icon.amber { background: #fef3c7; color: #d97706; }
.cd-info-icon.blue  { background: #dbeafe; color: #2563eb; }
.cd-info-text {
	font-size: 0.82rem;
	color: #475569;
	line-height: 1.5;
}
.cd-info-text strong { color: #1e293b; }

/* ---------- Mid-page CTA banner ---------- */
.cd-mid-cta {
	background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
	border: 1px solid #bfdbfe;
	border-radius: 14px;
	padding: 20px;
	display: flex;
	align-items: center;
	gap: 16px;
	margin: 24px 0;
}
.cd-mid-cta-icon {
	width: 48px;
	height: 48px;
	background: #3b82f6;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 1.3rem;
	flex-shrink: 0;
}
.cd-mid-cta-text {
	flex: 1;
}
.cd-mid-cta-text h4 {
	font-size: 0.92rem;
	font-weight: 700;
	color: #1e293b;
	margin: 0 0 2px;
}
.cd-mid-cta-text p {
	font-size: 0.78rem;
	color: #64748b;
	margin: 0;
}
.cd-mid-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #3b82f6;
	color: #fff;
	padding: 10px 16px;
	border-radius: 10px;
	font-size: 0.82rem;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
	flex-shrink: 0;
	transition: all 0.2s;
}
.cd-mid-cta-btn:hover {
	background: #2563eb;
	color: #fff;
	text-decoration: none;
}

/* ---------- Not Found Card ---------- */
.cd-not-found {
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.08);
	padding: 40px 24px;
	text-align: center;
	max-width: 500px;
	margin: 40px auto;
}
.cd-not-found-icon {
	width: 80px;
	height: 80px;
	background: #fee2e2;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-size: 2.2rem;
	color: #dc2626;
}
.cd-not-found h2 {
	font-size: 1.4rem;
	font-weight: 700;
	color: #1e293b;
	margin: 0 0 10px;
}
.cd-not-found p {
	font-size: 0.92rem;
	color: #64748b;
	margin: 0 0 20px;
	line-height: 1.6;
}
.cd-not-found-tip {
	background: #f8fafc;
	border-radius: 10px;
	padding: 14px;
	margin-bottom: 20px;
	font-size: 0.85rem;
	color: #475569;
}
.cd-not-found-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: linear-gradient(135deg, #3b82f6, #2563eb);
	color: #fff;
	padding: 14px 28px;
	border-radius: 12px;
	text-decoration: none;
	font-weight: 700;
	font-size: 1rem;
	transition: all 0.2s;
}
.cd-not-found-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 6px 20px rgba(37,99,235,0.35);
	color: #fff;
	text-decoration: none;
}

/* ---------- Sticky bottom CTA (mobile) ---------- */
.cd-sticky-cta {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: #fff;
	border-top: 1px solid #e2e8f0;
	padding: 10px 16px;
	z-index: 1000;
	box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
}
.cd-sticky-inner {
	display: flex;
	align-items: center;
	gap: 12px;
	max-width: 900px;
	margin: 0 auto;
}
.cd-sticky-text {
	flex: 1;
}
.cd-sticky-text .price {
	font-size: 1.1rem;
	font-weight: 800;
	color: #1e293b;
}
.cd-sticky-text .label {
	font-size: 0.7rem;
	color: #94a3b8;
	font-weight: 500;
}
.cd-sticky-btn {
	display: flex;
	align-items: center;
	gap: 6px;
	background: #2563eb;
	color: #fff;
	padding: 12px 20px;
	border-radius: 10px;
	font-size: 0.88rem;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
	transition: background 0.2s;
}
.cd-sticky-btn:hover {
	background: #1d4ed8;
	color: #fff;
	text-decoration: none;
}

/* ---------- CO2 card override ---------- */
.cd-co2-card {
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.06);
	overflow: hidden;
	margin-bottom: 16px;
}
.cd-co2-header {
	background: linear-gradient(135deg, #10b981, #059669);
	padding: 14px 20px;
	display: flex;
	align-items: center;
	gap: 12px;
	color: #fff;
}
.cd-co2-header i {
	font-size: 1.2rem;
}
.cd-co2-header h5 {
	font-size: 0.95rem;
	font-weight: 700;
	margin: 0;
}

/* ---------- Responsive ---------- */
@media (min-width: 640px) {
	.cd-hero h1 { font-size: 2rem; }
	.cd-vehicle-specs { grid-template-columns: repeat(4, 1fr); }
	.cd-hero-ctas { flex-direction: row; }
	.cd-locked-grid { grid-template-columns: 1fr 1fr; }
	.cd-data-grid { grid-template-columns: repeat(2, 1fr); gap: 0 24px; }
	.cd-mid-cta { padding: 24px; }
}

@media (min-width: 768px) {
	.cd-hero { padding: 50px 0 60px; }
	.cd-hero h1 { font-size: 2.2rem; }
	.cd-paywall { padding: 48px 32px; }
	.cd-paywall h3 { font-size: 1.6rem; }
	.cd-pricing-body { padding: 32px; }
	.cd-pricing-price .amount { font-size: 3.2rem; }
}

@media (max-width: 767px) {
	.cd-sticky-cta { display: block; }
	.cd-page .car-check-main { padding-bottom: 80px; }
	.cd-mid-cta { flex-direction: column; text-align: center; }
	.cd-mid-cta-icon { margin: 0 auto; }
}

@media (max-width: 374px) {
	.cd-hero h1 { font-size: 1.3rem; }
	.cd-vehicle-specs { grid-template-columns: repeat(2, 1fr); gap: 8px; }
	.cd-spec-value { font-size: 0.8rem; }
}

/* ---------- Search Again link ---------- */
.cd-search-again {
	text-align: center;
	padding: 16px;
}
.cd-search-again a {
	color: #3b82f6;
	font-weight: 600;
	text-decoration: none;
	font-size: 0.88rem;
}
.cd-search-again a:hover { text-decoration: underline; }
.cd-search-again span {
	color: #94a3b8;
	font-size: 0.85rem;
	margin-right: 6px;
}
