/* ═════════════════════════════════════════════════════
   Fleet (Safety & Tracking Solutions) Main Store Styles
   ═════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────
   Container — also defines fleet-scoped CSS variables
   (grey scale not in global, cobalt alias for --solera-blue)
   ───────────────────────────────────────────────────── */
/* Break out of Astra's .ast-container (max-width constraint) */
.ast-container:has(.solera-fleet-container) {
	max-width: none !important;
	width: 100% !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
}

.solera-fleet-container {
	--solera-grey-90: rgba(0,0,0,0.9);
	--solera-grey-80: rgba(0,0,0,0.8);
	--solera-grey-70: rgba(0,0,0,0.7);
	--solera-grey-50: rgba(0,0,0,0.5);
	--solera-grey-30: rgba(0,0,0,0.3);
	--solera-grey-10: rgba(0,0,0,0.1);
	--solera-grey-05: rgba(0,0,0,0.05);
	--solera-max-width: 1180px;
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: none;
	background: var(--solera-white);
}

/* Shared: tinted-background sections */
.solera-fleet-roi-section,
.solera-fleet-comparison-bg,
.solera-fleet-use-cases-bg,
.solera-fleet-video {
	background: var(--solera-grey-05);
	border-top: 1px solid var(--solera-grey-10);
	border-bottom: 1px solid var(--solera-grey-10);
}

/* Shared: white card base */
.solera-fleet-product-card,
.solera-fleet-use-case,
.solera-fleet-testimonial,
.solera-fleet-faq-item {
	background: var(--solera-white);
	border: 1px solid var(--solera-grey-10);
}

/* Shared: hover border darkening */
.solera-fleet-product-card:hover,
.solera-fleet-use-case:hover,
.solera-fleet-faq-item:hover {
	border-color: var(--solera-grey-30);
}

/* Shared: body text style */
.solera-fleet-step-desc,
.solera-fleet-use-case-desc,
.solera-fleet-faq-answer {
	font-size: 14px;
	color: var(--solera-grey-70);
	line-height: 1.6;
}

/* Shared: checkmark pseudo-element */
.solera-fleet-product-features li::before,
.solera-fleet-faq-question::before {
	content: "✓";
	color: var(--solera-viridian);
	font-weight: 700;
	flex-shrink: 0;
}

.solera-fleet-section {
	padding: 80px 40px;
	max-width: var(--solera-max-width);
	margin: 0 auto;
	width: 100%;
}

.solera-fleet-section-header {
	text-align: center;
	margin-bottom: 52px;
}

.solera-fleet-section-label {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--solera-pelorous);
	margin-bottom: 12px;
	font-family: 'Stolzl', 'Segoe UI', sans-serif;
	font-weight: 300;
}

.solera-fleet-section-title {
	font-size: 36px;
	line-height: 1.2;
	margin-bottom: 12px;
	color: var(--solera-grey-90);
	font-family: 'Stolzl', 'Segoe UI', sans-serif;
	font-weight: 500;
}

.solera-fleet-section-subtitle {
	font-size: 16px;
	color: var(--solera-grey-70);
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.7;
}

/* ═════════════════════════════════════════════════════
   Hero Section
   ═════════════════════════════════════════════════════ */

.solera-fleet-hero-wrapper {
	background: linear-gradient(180deg, #f7f5fb 0%, var(--solera-white) 100%);
}

.solera-fleet-hero {
	padding: 72px 40px;
	max-width: var(--solera-max-width);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: center;
}

.solera-fleet-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(25,79,161,0.08);
	border: 1px solid rgba(25,79,161,0.15);
	padding: 6px 16px;
	border-radius: 100px;
	font-size: 13px;
	color: var(--solera-cobalt);
	font-family: 'Stolzl', sans-serif;
	font-weight: 300;
	letter-spacing: 0.3px;
	margin-bottom: 20px;
}

.solera-fleet-hero-title {
	font-size: 46px;
	line-height: 1.12;
	margin-bottom: 18px;
	font-family: 'Stolzl', 'Segoe UI', sans-serif;
	font-weight: 500;
	color: var(--solera-grey-90);
}


.solera-fleet-hero-subtitle {
	font-size: 17px;
	margin-bottom: 1.5rem !important;
	color: var(--solera-grey-70);
	max-width: 480px;
	line-height: 1.7;
}

.solera-fleet-hero-ctas {
	display: flex;
	gap: 14px;
	margin-bottom: 44px;
}

.solera-fleet-hero-stats {
	display: flex;
	gap: 36px;
}

.solera-fleet-hero-stat {
	display: flex;
	flex-direction: column;
}

.solera-fleet-stat-value {
	font-family: 'Stolzl', sans-serif;
	font-weight: 500;
	font-size: 26px;
	color: var(--solera-jacarta);
}

.solera-fleet-stat-label {
	font-size: 13px;
	color: var(--solera-grey-50);
	margin-top: 2px;
	letter-spacing: 0.3px;
}

.solera-fleet-hero-visual {
	position: relative;
	display: flex;
	justify-content: center;
}

.solera-fleet-hero-image-wrapper {
	width: 100%;
	max-width: 500px;
	border-radius: var(--solera-radius);
	overflow: hidden;	
}

.solera-fleet-hero-image-wrapper img {
	width: 100%;
	height: auto;
	display: block;
}

.solera-fleet-float-card {
	position: absolute;
	bottom: -18px;
	left: -24px;
	background: var(--solera-white);
	border: 1px solid var(--solera-grey-10);
	border-radius: var(--solera-radius-sm);
	padding: 14px 18px;
	display: flex;
	align-items: center;
	gap: 12px;
	box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}

.solera-fleet-float-icon {
	width: 38px;
	height: 38px;
	background: rgba(58,139,107,0.1);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
}

.solera-fleet-float-text {
	font-size: 12px;
	color: var(--solera-grey-70);
}

.solera-fleet-float-text strong {
	display: block;
	color: var(--solera-viridian);
	font-size: 14px;
	font-weight: 500;
}

/* ═════════════════════════════════════════════════════
   Trust Bar
   ═════════════════════════════════════════════════════ */

.solera-fleet-trust-bar {
	border-top: 1px solid var(--solera-grey-10);
	border-bottom: 1px solid var(--solera-grey-10);
	padding: 24px 40px;
	background: var(--solera-white);
}

.solera-fleet-trust-bar-inner {
	max-width: var(--solera-max-width);
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 44px;
	flex-wrap: wrap;
}

.solera-fleet-trust-item {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--solera-grey-50);
	font-size: 13px;
	font-family: 'Stolzl', sans-serif;
	font-weight: 300;
	letter-spacing: 0.3px;
}

/* ═════════════════════════════════════════════════════
   ROI Strip
   ═════════════════════════════════════════════════════ */

.solera-fleet-roi-strip {
	max-width: var(--solera-max-width);
	margin: 0 auto;
	padding: 48px 40px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.solera-fleet-roi-item { text-align: center; }

.solera-fleet-roi-value {
	font-family: 'Stolzl', sans-serif;
	font-weight: 500;
	font-size: 34px;
	margin-bottom: 4px;
}

/* ROI value colors per position */
.solera-fleet-roi-item:nth-child(1) .solera-fleet-roi-value { color: var(--solera-cobalt); }
.solera-fleet-roi-item:nth-child(2) .solera-fleet-roi-value { color: var(--solera-eminence); }
.solera-fleet-roi-item:nth-child(3) .solera-fleet-roi-value { color: var(--solera-rose); }

.solera-fleet-roi-label {
	font-size: 14px;
	color: var(--solera-grey-70);
	line-height: 1.5;
}

.solera-fleet-roi-footer {
	text-align: center;
	padding: 0 40px 40px;
	max-width: var(--solera-max-width);
	margin: 0 auto;
}

.solera-fleet-roi-footer p {
	font-size: 15px;
	color: var(--solera-grey-70);
}

.solera-fleet-roi-footer span {
	color: var(--solera-viridian);
	font-weight: 500;
}

/* ═════════════════════════════════════════════════════
   Product Grid & Cards
   ═════════════════════════════════════════════════════ */

.solera-fleet-products-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.solera-fleet-product-card {
	border-radius: var(--solera-radius-lg);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: box-shadow 0.3s, border-color 0.3s, transform 0.3s;
	box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.solera-fleet-product-card:hover {
	box-shadow: 0 8px 28px rgba(50,37,94,0.08);
	transform: translateY(-3px);
}

.solera-fleet-product-card.featured {
	border-color: var(--solera-cobalt);
	box-shadow: 0 4px 20px rgba(25,79,161,0.12);
}

.solera-fleet-product-image {
	width: 100%;
	height: 140px;
	background: var(--solera-grey-05);
	display: flex;
	align-items: center;
	justify-content: center;
	border-bottom: 1px solid var(--solera-grey-10);
}

.solera-fleet-product-badge {
	background: var(--solera-gradient-h);
	color: var(--solera-white);
	text-align: center;
	font-family: 'Stolzl', sans-serif;
	font-weight: 500;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	padding: 7px;
}

.solera-fleet-product-image img {
	max-width: 70%;
	max-height: 90%;
	height: auto;
	object-fit: contain;
}

.solera-fleet-product-body {
	padding: 26px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.solera-fleet-product-name {
	font-size: 19px;
	margin-bottom: 4px;
	font-family: 'Stolzl', 'Segoe UI', sans-serif;
	font-weight: 500;
	color: var(--solera-grey-90);
}

.solera-fleet-product-tagline {
	font-size: 14px;
	color: var(--solera-cobalt);
	line-height: 1.7;
	margin-bottom: 14px;
}

.solera-fleet-product-desc {
	font-size: 14px;
	color: var(--solera-grey-70);
	line-height: 1.7;
	margin-bottom: 18px;
}

.solera-fleet-product-body ul.solera-fleet-product-desc {
	list-style: none;
	padding-left: 0;
	margin: 0 0 18px 0;
}

.solera-fleet-product-body ul.solera-fleet-product-desc li {
	list-style: none;
	padding-left: 0;
	margin-bottom: 4px;
}

.solera-fleet-product-body ul.solera-fleet-product-desc li::before {
	content: "✓ ";
	color: var(--solera-viridian);
	font-weight: 700;
	margin-right: 6px;
}

.solera-fleet-product-access {
	text-align: center;
	font-size: 12px;
	color: var(--solera-viridian);
	margin-top: 12px;
	margin-bottom: 0;
	line-height: 1.5;
}

.solera-fleet-product-features {
	list-style: none;
	margin-bottom: 22px;
}

.solera-fleet-product-features li {
	font-size: 14px;
	color: var(--solera-grey-70);
	padding: 4px 0;
	display: flex;
	align-items: flex-start;
	gap: 9px;
}

.solera-fleet-product-pricing {
	margin-top: auto;
}

.solera-fleet-product-price {
	display: flex;
	align-items: baseline;
	gap: 8px;
	margin-bottom: 4px;
}

.solera-fleet-price-original {
	font-size: 17px;
	color: var(--solera-grey-50);
	text-decoration: line-through;
}

.solera-fleet-price-current {
	font-family: 'Stolzl', sans-serif;
	font-weight: 500;
	font-size: 30px;
	color: var(--solera-jacarta);
}

.solera-fleet-price-period {
	font-size: 14px;
	color: var(--solera-grey-50);
}

.solera-fleet-price-save {
	font-size: 12px;
	color: var(--solera-viridian);
	background: rgba(58,139,107,0.08);
	padding: 3px 10px;
	border-radius: 100px;
	font-weight: 500;
	display: inline-block;
	margin-bottom: 14px;
}

.solera-fleet-product-cta {
	width: 100%;
	padding: 12px;
	border-radius: 5px;
	font-family: 'Stolzl', sans-serif;
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 0.3px;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	display: block;
	transition: all 0.2s;
	border: none;
}

.solera-fleet-product-cta.primary {
	background: var(--solera-cobalt);
	color: var(--solera-white);
}

.solera-fleet-product-cta.primary:hover {
	background: var(--solera-jacarta);
}

.solera-fleet-product-cta.outline {
	background: transparent;
	color: var(--solera-cobalt);
	border: 1px solid rgba(25,79,161,0.25);
}

.solera-fleet-product-cta.outline:hover {
	background: rgba(25,79,161,0.04);
	border-color: var(--solera-cobalt);
}

.solera-fleet-product-roi-tag {
	text-align: center;
	font-size: 12px;
	color: var(--solera-viridian);
	font-family: 'Stolzl', sans-serif;
	font-weight: 300;
	letter-spacing: 0.3px;
	margin-top: 10px;
}

.solera-fleet-geo-notice {
	text-align: center;
	font-size: 13px;
	color: var(--solera-grey-50);
	padding: 14px;
	background: var(--solera-grey-05);
	border-radius: var(--solera-radius-sm);
	margin-top: 28px;
	font-family: 'Stolzl', sans-serif;
	font-weight: 300;
	letter-spacing: 0.3px;
}

/* ═════════════════════════════════════════════════════
   Comparison Table
   ═════════════════════════════════════════════════════ */

.solera-fleet-table-scroll {
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.solera-fleet-comparison-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
	min-width: 580px;
}

.solera-fleet-comparison-table thead th {
	padding: 16px 18px;
	text-align: center;
	font-family: 'Stolzl', sans-serif;
	font-weight: 500;
	color: var(--solera-grey-90);
	border-bottom: 2px solid var(--solera-grey-10);
	font-size: 15px;
}

.solera-fleet-comparison-table thead th:first-child {
	text-align: left;
	color: var(--solera-grey-50);
	font-weight: 300;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1.5px;
}

.solera-fleet-comparison-table thead th span {
	font-size: 12px;
	color: var(--solera-grey-50);
	font-weight: 300;
	display: block;
}

.solera-fleet-comparison-table thead th.solera-fleet-highlight {
	color: var(--solera-cobalt);
}

.solera-fleet-comparison-table tbody td {
	padding: 12px 18px;
	text-align: center;
	border-bottom: 1px solid var(--solera-grey-10);
	color: var(--solera-grey-70);
}

.solera-fleet-comparison-table tbody td:first-child {
	text-align: left;
	color: var(--solera-grey-80);
	font-weight: 500;
}

.solera-fleet-check { color: var(--solera-viridian); font-size: 18px; }
.solera-fleet-dash  { color: var(--solera-grey-30); font-size: 14px; }

/* More Details Row */
.solera-fleet-compare-more-details td {
	padding: 18px !important;
}

.solera-fleet-compare-more-link {
	display: inline-block;	
	background: transparent;
	color: var(--solera-cobalt);
	font-size: 13px;
	font-family: 'Stolzl', sans-serif;
	font-weight: 500;
	letter-spacing: 0.3px;
	text-decoration: none;
	transition: all 0.2s;
}

.solera-fleet-compare-more-link:hover {
	background: rgba(25, 79, 161, 0.04);
	border-color: var(--solera-cobalt);
	color: var(--solera-jacarta);
}

.solera-fleet-comparison-footer {
	text-align: center;
	padding: 24px 40px 0px 0px;
	max-width: var(--solera-max-width);
	margin: 0 auto;
}

.solera-fleet-comparison-footer p { font-size: 14px; color: var(--solera-grey-70); }

.solera-fleet-comparison-highlight {
	font-size: 15px;
	color: var(--solera-cobalt);
	font-family: 'Stolzl', sans-serif;
	font-weight: 500;
	margin-top: 4px !important;
}

/* ═════════════════════════════════════════════════════
   Steps
   ═════════════════════════════════════════════════════ */

.solera-fleet-steps-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
	position: relative;
}

.solera-fleet-steps-grid::before {
	content: "";
	position: absolute;
	top: 34px;
	left: 56px;
	right: 56px;
	height: 2px;
	background: var(--solera-gradient-h);
	opacity: 0.2;
}

.solera-fleet-step-card {
	text-align: center;
	position: relative;
}

.solera-fleet-step-number {
	width: 68px;
	height: 68px;
	border-radius: 50%;
	background: var(--solera-white);
	border: 2px solid var(--solera-grey-10);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 18px;
	font-family: 'Stolzl', sans-serif;
	font-weight: 500;
	font-size: 24px;
	color: var(--solera-cobalt);
	position: relative;
	z-index: 2;
}

.solera-fleet-step-title {
	font-size: 15px;
	color: var(--solera-grey-90);
	margin-bottom: 6px;
	letter-spacing: 0.2px;
	font-family: 'Stolzl', 'Segoe UI', sans-serif;
	font-weight: 500;
}

/* ═════════════════════════════════════════════════════
   Use Cases
   ═════════════════════════════════════════════════════ */

.solera-fleet-use-cases-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
	max-width: var(--solera-max-width);
	margin: 0 auto;
}

.solera-fleet-use-case {
	border-radius: var(--solera-radius);
	padding: 26px;
	display: flex;
	gap: 16px;
	transition: border-color 0.2s;
}

.solera-fleet-use-case-icon {
	width: 42px;
	height: 42px;
	background: rgba(25,79,161,0.06);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	flex-shrink: 0;
}

.solera-fleet-use-case-title {
	font-family: 'Stolzl', sans-serif;
	font-weight: 500;
	font-size: 15px;
	color: var(--solera-grey-90);
	margin-bottom: 5px;
}

/* ═════════════════════════════════════════════════════
   Testimonials
   ═════════════════════════════════════════════════════ */

.solera-fleet-testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.solera-fleet-testimonial {
	border-radius: var(--solera-radius);
	padding: 26px;
}

.solera-fleet-testimonial-stars {
	color: var(--solera-sun);
	font-size: 15px;
	letter-spacing: 2px;
	margin-bottom: 14px;
}

.solera-fleet-testimonial-quote {
	font-size: 15px;
	line-height: 1.7;
	color: var(--solera-grey-80);
	margin-bottom: 18px;
	font-style: italic;
}

.solera-fleet-testimonial-quote strong {
	color: var(--solera-cobalt);
	font-style: normal;
}

.solera-fleet-testimonial-author {
	font-size: 13px;
	color: var(--solera-grey-50);
}

.solera-fleet-testimonial-author strong {
	color: var(--solera-grey-70);
	display: block;
	font-size: 14px;
	margin-bottom: 2px;
}

/* ═════════════════════════════════════════════════════
   Video Section
   ═════════════════════════════════════════════════════ */

.solera-fleet-video-section { text-align: center; }

.solera-fleet-video-wrapper {
	max-width: 780px;
	margin: 0 auto;
	border-radius: var(--solera-radius);
	overflow: hidden;
	aspect-ratio: 16/9;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;

}

.solera-fleet-video-wrapper video {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.solera-fleet-video-play {
	display: none;
	width: 72px;
	height: 72px;
	background: var(--solera-cobalt);
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	color: var(--solera-white);
	box-shadow: 0 4px 20px rgba(25,79,161,0.25);
	transition: transform 0.2s;
}

.solera-fleet-video-wrapper:hover .solera-fleet-video-play {
	transform: scale(1.06);
}

.solera-fleet-video-label {
	display: none;
	position: absolute;
	bottom: 14px;
	left: 14px;
	background: rgba(50,37,94,0.75);
	padding: 5px 12px;
	border-radius: 4px;
	font-size: 12px;
	color: var(--solera-white);
	font-family: 'Stolzl', sans-serif;
	font-weight: 300;
}

/* ═════════════════════════════════════════════════════
   FAQ
   ═════════════════════════════════════════════════════ */

.solera-fleet-faq-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
	max-width: 880px;
	margin: 0 auto;
}

.solera-fleet-faq-item {
	border-radius: var(--solera-radius-sm);
	padding: 20px;
	transition: border-color 0.2s;
}

.solera-fleet-faq-question {
	font-size: 14px;
	color: var(--solera-grey-90);
	margin-bottom: 6px;
	display: flex;
	align-items: flex-start;
	gap: 9px;
	font-family: 'Stolzl', 'Segoe UI', sans-serif;
	font-weight: 300;
}

.solera-fleet-faq-answer { padding-left: 22px; }

/* ═════════════════════════════════════════════════════
   Final CTA
   ═════════════════════════════════════════════════════ */

.solera-fleet-final-cta {
	text-align: center;
	padding: 80px 40px;
	width: 100%;
}

.solera-fleet-final-cta-box {
	background: var(--solera-grey-05);
	border: 1px solid var(--solera-grey-10);
	border-radius: 14px;
	padding: 64px 52px;
	position: relative;
	overflow: hidden;
	max-width: var(--solera-max-width);
	margin: 0 auto;
}

.solera-fleet-final-cta-box::before {
	content: "";
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 3px;
	background: var(--solera-gradient-h);
}

.solera-fleet-final-cta h2 {
	font-size: 36px;
	margin-bottom: 12px;
	font-family: 'Stolzl', 'Segoe UI', sans-serif;
	font-weight: 500;
	color: var(--solera-grey-90);
}

.solera-fleet-final-cta p {
	font-size: 16px;
	color: var(--solera-grey-70);
	margin-bottom: 28px;
	max-width: 460px;
	margin-left: auto;
	margin-right: auto;
}

.solera-fleet-final-cta-buttons {
	display: flex;
	gap: 14px;
	justify-content: center;
}

/* ═════════════════════════════════════════════════════
   Gradient Divider
   ═════════════════════════════════════════════════════ */

.solera-fleet-gradient-divider {
	height: 3px;
	background: var(--solera-gradient-h);
	opacity: 0.35;
}

/* ═════════════════════════════════════════════════════
   Buttons — fleet-scoped overrides
   (global .btn-secondary = sun/yellow; fleet needs transparent/outlined)
   ═════════════════════════════════════════════════════ */

/* CTA groups should not be full-width (global .btn has width:100%) */
.solera-fleet-hero-ctas .btn,
.solera-fleet-final-cta-buttons .btn {
	width: auto;
	font-family: 'Stolzl', sans-serif;
	font-weight: 500;
	letter-spacing: 0.3px;
	border-radius: 5px;
	transition: all 0.2s;
}

.solera-fleet-container .btn-primary:hover {
	background: var(--solera-jacarta);
}

.solera-fleet-container .btn-secondary {
	background: transparent;
	color: var(--solera-jacarta);
	border: 1px solid var(--solera-grey-30);
}

.solera-fleet-container .btn-secondary:hover {
	border-color: var(--solera-cobalt);
	color: var(--solera-cobalt);
	background: transparent;
}

/* ═════════════════════════════════════════════════════
   Responsive — Tablet (1024px)
   ═════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
	.solera-fleet-hero { grid-template-columns: 1fr; padding: 56px 24px; gap: 2rem; }
	.solera-fleet-hero-title { font-size: 34px; }
	.solera-fleet-hero-visual { display: none; }
	.solera-fleet-products-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
	.solera-fleet-roi-strip { grid-template-columns: 1fr; gap: 24px; }
	.solera-fleet-steps-grid { grid-template-columns: repeat(2, 1fr); }
	.solera-fleet-steps-grid::before { display: none; }
	.solera-fleet-use-cases-grid,
	.solera-fleet-faq-grid { grid-template-columns: 1fr; }
	.solera-fleet-testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
	.solera-fleet-section { padding: 52px 24px; }
}

/* ═════════════════════════════════════════════════════
   Responsive — Mobile (600px)
   ═════════════════════════════════════════════════════ */

@media (max-width: 600px) {
	/* Hero */
	.solera-fleet-hero { padding: 40px 20px 48px; gap: 0; }
	.solera-fleet-hero-badge { font-size: 12px; padding: 5px 12px; margin-bottom: 16px; }
	.solera-fleet-hero-title { font-size: 28px; margin-bottom: 14px; }
	.solera-fleet-hero-subtitle { font-size: 15px; margin-bottom: 28px; line-height: 1.65; }
	.solera-fleet-hero-ctas { flex-direction: column; margin-bottom: 36px; }
	.solera-fleet-hero-ctas .btn,
	.solera-fleet-final-cta-buttons .btn { width: 100%; }
	.solera-fleet-hero-stats { flex-direction: column; gap: 20px; }
	.solera-fleet-stat-value { font-size: 24px; }

	/* Trust bar */
	.solera-fleet-trust-bar { padding: 20px; }
	.solera-fleet-trust-bar-inner { flex-direction: column; gap: 10px; align-items: flex-start; padding-left: 8px; }

	/* ROI */
	.solera-fleet-roi-strip { padding: 32px 20px 16px; gap: 28px; }
	.solera-fleet-roi-value { font-size: 28px; }
	.solera-fleet-roi-label { font-size: 13px; }
	.solera-fleet-roi-footer { padding: 0 20px 32px; }

	/* Sections */
	.solera-fleet-section { padding: 48px 20px; }
	.solera-fleet-section-header { margin-bottom: 36px; }
	.solera-fleet-section-label { font-size: 11px; letter-spacing: 1.8px; margin-bottom: 10px; }
	.solera-fleet-section-title { font-size: 26px; margin-bottom: 10px; }
	.solera-fleet-section-subtitle { font-size: 15px; }

	/* Product cards */
	.solera-fleet-products-grid { max-width: 100%; gap: 20px; }
	.solera-fleet-product-image { height: 110px; }
	.solera-fleet-product-body { padding: 22px; }
	.solera-fleet-product-name { font-size: 18px; }
	.solera-fleet-product-desc { font-size: 13px; margin-bottom: 16px; }
	.solera-fleet-product-features li { font-size: 13px; padding: 3px 0; }
	.solera-fleet-price-current { font-size: 28px; }
	.solera-fleet-geo-notice { margin-top: 24px; font-size: 12px; padding: 12px; }

	/* Table */
	.solera-fleet-table-scroll { margin: 0 -20px; padding: 0 20px; width: calc(100% + 40px); }
	.solera-fleet-comparison-table { font-size: 13px; }
	.solera-fleet-comparison-table thead th { padding: 12px 14px; font-size: 13px; }
	.solera-fleet-comparison-table tbody td { padding: 10px 14px; }
	.solera-fleet-compare-more-details td { padding: 14px !important; }
	.solera-fleet-compare-more-link { padding: 8px 12px; font-size: 12px; }

	/* Steps */
	.solera-fleet-steps-grid { grid-template-columns: 1fr 1fr; gap: 24px 16px; }
	.solera-fleet-step-number { width: 56px; height: 56px; font-size: 20px; margin-bottom: 14px; }
	.solera-fleet-step-title { font-size: 14px; }
	.solera-fleet-step-desc { font-size: 13px; }

	/* Use cases */
	.solera-fleet-use-cases-bg { padding: 48px 20px; }
	.solera-fleet-use-case { padding: 20px; gap: 14px; }
	.solera-fleet-use-case-icon { width: 36px; height: 36px; font-size: 18px; }
	.solera-fleet-use-case-title { font-size: 14px; }
	.solera-fleet-use-case-desc { font-size: 13px; }

	/* Testimonials */
	.solera-fleet-testimonials-grid { max-width: 100%; }
	.solera-fleet-testimonial { padding: 22px; }
	.solera-fleet-testimonial-quote { font-size: 14px; margin-bottom: 14px; }

	/* Video */
	.solera-fleet-video-wrapper { border-radius: var(--solera-radius-sm); }
	.solera-fleet-video-play { width: 60px; height: 60px; font-size: 24px; }
	.solera-fleet-video-label { font-size: 11px; padding: 4px 10px; }

	/* FAQ */
	.solera-fleet-faq-grid { gap: 10px; }
	.solera-fleet-faq-item { padding: 16px; }
	.solera-fleet-faq-question { font-size: 13px; }
	.solera-fleet-faq-answer { font-size: 13px; padding-left: 20px; }

	/* Final CTA */
	.solera-fleet-final-cta { padding: 48px 20px; }
	.solera-fleet-final-cta-box { padding: 40px 20px; border-radius: 10px; }
	.solera-fleet-final-cta h2 { font-size: 24px; }
	.solera-fleet-final-cta p { font-size: 14px; margin-bottom: 24px; }
	.solera-fleet-final-cta-buttons { flex-direction: column; gap: 10px; }
}

