:root {
	--cb-primary: #151257;
	--cb-primary-dark: #080f2e;
	--cb-accent: #ff3b12;
	--cb-accent-hover: #ff4a1c;
	--cb-dark: #10131c;
	--cb-white: #ffffff;
	--cb-light: #f8f8f8;
	--cb-muted-light: #c8ccd6;
	--cb-border-light: rgba(255, 255, 255, 0.14);
	--cb-font: "Poppins", sans-serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--cb-white);
	color: var(--cb-dark);
	font-family: var(--cb-font);
	-webkit-font-smoothing: antialiased;
}

img,
svg {
	display: block;
}

img {
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
}

.cb-container {
	width: min(100% - 40px, 1280px);
	margin-inline: auto;
}

/* Hero */

.cb-hero {
	position: relative;
	overflow: hidden;
	padding: clamp(64px, 7vw, 104px) 0;
	background: linear-gradient(135deg, #080f2e 0%, #151257 65%, #11143d 100%);
}

.cb-hero svg {
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.cb-hero::before {
	position: absolute;
	top: -200px;
	left: -200px;
	width: 460px;
	height: 460px;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 50%;
	content: "";
}

.cb-hero::after {
	position: absolute;
	right: -180px;
	bottom: -280px;
	width: 560px;
	height: 560px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.035);
	content: "";
	filter: blur(4px);
}

.cb-hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: clamp(42px, 5vw, 64px);
	align-items: center;
}

.cb-hero__content {
	min-width: 0;
}

.cb-hero__eyebrow {
	display: inline-flex;
	gap: 12px;
	align-items: center;
	margin: 0 0 20px;
	color: var(--cb-accent);
	font-size: 0.92rem;
	font-weight: 600;
	line-height: 1.4;
}

.cb-hero__eyebrow-icon {
        display: grid;
        flex: 0 0 auto;
        width: 34px;
        height: 34px;
        border: 1px solid rgba(255, 59, 18, 0.35);
        border-radius: 10px;
        transform: translateY(1px);
        place-items: center;
}

.cb-hero__eyebrow-icon svg {
	width: 18px;
	height: 18px;
}

.cb-hero__title {
	max-width: 640px;
	margin: 0;
	color: var(--cb-white);
	font-size: clamp(2.75rem, 4.2vw, 4rem);
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1.05;
	text-wrap: balance;
}

.cb-hero__description {
	max-width: 650px;
	margin: 26px 0 0;
	color: var(--cb-muted-light);
	font-size: clamp(1rem, 1.25vw, 1.12rem);
	font-weight: 400;
	line-height: 1.75;
}

.cb-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 32px;
}

.cb-button {
	display: inline-flex;
	gap: 10px;
	align-items: center;
	justify-content: center;
	min-height: 56px;
	padding: 14px 24px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-size: 0.96rem;
	font-weight: 600;
	line-height: 1;
	transition:
		transform 0.2s ease,
		background-color 0.2s ease,
		border-color 0.2s ease,
		box-shadow 0.2s ease;
}

.cb-button:hover {
	transform: translateY(-2px);
}

.cb-button:focus-visible,
.cb-hero__catalog-link:focus-visible {
	outline: 3px solid rgba(255, 255, 255, 0.8);
	outline-offset: 4px;
}

.cb-button--primary {
	background: var(--cb-accent);
	color: var(--cb-white);
	box-shadow: 0 14px 34px rgba(255, 59, 18, 0.23);
}

.cb-button--primary:hover {
	background: var(--cb-accent-hover);
	box-shadow: 0 18px 40px rgba(255, 59, 18, 0.3);
}

.cb-button--secondary {
	border-color: rgba(255, 255, 255, 0.4);
	background: var(--cb-white);
	color: var(--cb-primary);
}

.cb-button--secondary:hover {
	background: var(--cb-light);
}

.cb-button__icon svg {
	width: 20px;
	height: 20px;
	stroke-width: 2;
}

.cb-button__icon svg path[fill="currentColor"] {
	fill: currentColor;
	stroke: none;
}

.cb-hero__catalog-link {
	display: inline-flex;
	gap: 12px;
	align-items: center;
	margin-top: 24px;
	color: var(--cb-white);
	font-size: 0.95rem;
	font-weight: 600;
}

.cb-hero__catalog-link span {
	border-bottom: 1px solid var(--cb-accent);
}

.cb-hero__catalog-link svg {
	width: 22px;
	height: 22px;
	stroke: var(--cb-accent);
	transition: transform 0.2s ease;
}

.cb-hero__catalog-link:hover svg {
	transform: translateX(4px);
}

.cb-hero__helper {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	max-width: 650px;
	margin-top: 32px;
	padding-top: 24px;
	border-top: 1px solid var(--cb-border-light);
	color: #b8bdca;
	font-size: 0.9rem;
	line-height: 1.65;
}

.cb-hero__helper p {
	margin: 0;
}

.cb-hero__helper-icon {
	display: grid;
	flex: 0 0 auto;
	width: 24px;
	height: 24px;
	border: 1px solid rgba(255, 255, 255, 0.32);
	border-radius: 50%;
	color: var(--cb-white);
	place-items: center;
}

.cb-hero__helper-icon svg {
	width: 16px;
	height: 16px;
}

.cb-hero__benefits {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin-top: 8px;
}

.cb-benefit {
	display: flex;
	gap: 12px;
	align-items: center;
	min-height: 78px;
	padding: 15px;
	border: 1px solid var(--cb-border-light);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.045);
	color: var(--cb-white);
	font-size: 0.82rem;
	font-weight: 500;
	line-height: 1.4;
	backdrop-filter: blur(8px);
}

.cb-benefit__icon {
	display: grid;
	flex: 0 0 auto;
	width: 38px;
	height: 38px;
	border-radius: 12px;
	background: rgba(255, 59, 18, 0.13);
	color: var(--cb-accent);
	place-items: center;
}

.cb-benefit__icon svg {
	width: 22px;
	height: 22px;
	stroke-width: 2;
}

/* Imagen */

.cb-hero__visual {
	position: relative;
	min-width: 0;
}

.cb-hero__image-wrapper {
	position: relative;
	overflow: hidden;
	aspect-ratio: 1 / 1;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 30px;
	background: #0c1230;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

.cb-hero__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.cb-identify-card {
	position: absolute;
	right: 18px;
	bottom: 20px;
	width: min(340px, 72%);
	padding: 22px;
	border: 1px solid rgba(21, 18, 87, 0.08);
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.97);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.27);
	backdrop-filter: blur(14px);
}

.cb-identify-card__title {
	margin: 0;
	color: var(--cb-primary);
	font-size: 1.1rem;
	font-weight: 700;
	line-height: 1.45;
	text-wrap: balance;
}

.cb-identify-card__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin-top: 16px;
}

.cb-identify-card__item {
	display: flex;
	gap: 9px;
	align-items: center;
	min-height: 48px;
	padding: 10px 12px;
	border: 1px solid rgba(21, 18, 87, 0.08);
	border-radius: 12px;
	background: #f7f8fb;
	color: #272a34;
	font-size: 0.86rem;
	font-weight: 600;
	box-shadow: inset 3px 0 0 rgba(255, 59, 18, 0.78);
}

.cb-identify-card__item::after {
	margin-left: auto;
	color: var(--cb-accent);
	content: "*";
	font-size: 1rem;
	font-weight: 700;
	line-height: 1;
}

.cb-identify-card__icon {
	color: var(--cb-primary);
}

.cb-identify-card__icon svg {
	width: 19px;
	height: 19px;
	stroke-width: 2;
}

/* Tablet */

@media (max-width: 1080px) {
	.cb-hero {
		min-height: auto;
	}

	.cb-hero__grid {
		grid-template-columns: 1fr;
	}

	.cb-hero__benefits {
		margin-top: 0;
	}

	.cb-hero__content {
		max-width: 780px;
	}

	.cb-hero__visual {
		max-width: 780px;
	}

	.cb-identify-card {
		right: 24px;
		width: min(340px, 76%);
	}
}

/* Mobile */

@media (max-width: 760px) {
	.cb-container {
		width: min(100% - 28px, 1280px);
	}

	.cb-hero {
		padding: 48px 0 60px;
	}

	.cb-hero__grid {
		gap: 44px;
	}

        .cb-hero__eyebrow {
                align-items: center;
                font-size: 0.84rem;
        }

	.cb-hero__title {
		font-size: clamp(2.4rem, 12vw, 3.5rem);
		letter-spacing: -0.04em;
	}

	.cb-hero__description {
		margin-top: 22px;
		font-size: 1rem;
		line-height: 1.65;
	}

	.cb-hero__actions {
		flex-direction: column;
		margin-top: 28px;
	}

	.cb-button {
		width: 100%;
	}

	.cb-hero__benefits {
		grid-template-columns: 1fr;
	}

	.cb-benefit {
		min-height: 68px;
	}

	.cb-hero__image-wrapper {
		aspect-ratio: 4 / 5;
		border-radius: 22px;
	}

	.cb-identify-card {
		position: relative;
		right: auto;
		bottom: auto;
		width: calc(100% - 24px);
		max-width: 340px;
		margin: -28px auto 0;
		padding: 22px;
	}
}

@media (max-width: 460px) {
	.cb-identify-card__grid {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		scroll-behavior: auto !important;
		transition: none !important;
	}
}
/* Sección: encuentra tu batería */

.cb-find {
	padding: 72px 0;
	background: #f8f8f8;
}

.cb-find__header {
	max-width: 760px;
	margin: 0 auto;
	text-align: center;
}

.cb-section-eyebrow {
	margin: 0 0 12px;
	color: var(--cb-accent);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.cb-find__title {
	margin: 0;
	color: var(--cb-primary);
	font-size: clamp(1.9rem, 3vw, 2.375rem);
	font-weight: 700;
	letter-spacing: -0.025em;
	line-height: 1.15;
	text-wrap: balance;
}

.cb-find__description {
	max-width: 680px;
	margin: 14px auto 0;
	color: #5b6270;
	font-size: 1rem;
	line-height: 1.6;
}

.cb-find__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin-top: 36px;
}

.cb-find-card {
	display: flex;
	flex-direction: column;
	min-height: 230px;
	padding: 22px;
	border: 1px solid rgba(21, 18, 87, 0.1);
	border-radius: 22px;
	background: var(--cb-white);
	box-shadow: 0 12px 32px rgba(21, 18, 87, 0.05);
	transition:
		transform 0.2s ease,
		border-color 0.2s ease,
		box-shadow 0.2s ease;
}

.cb-find-card:hover {
	border-color: rgba(255, 59, 18, 0.55);
	box-shadow: 0 18px 40px rgba(21, 18, 87, 0.09);
	transform: translateY(-4px);
}

.cb-find-card:focus-visible {
	outline: 3px solid rgba(255, 59, 18, 0.35);
	outline-offset: 4px;
}

.cb-find-card--featured {
	border-color: rgba(255, 59, 18, 0.16);
	background:
		linear-gradient(
			145deg,
			rgba(255, 59, 18, 0.025),
			rgba(21, 18, 87, 0.02)
		),
		var(--cb-white);
}

.cb-find-card__icon {
	display: grid;
	width: 46px;
	height: 46px;
	border-radius: 14px;
	background: rgba(255, 59, 18, 0.1);
	color: var(--cb-accent);
	place-items: center;
}

.cb-find-card__icon svg {
	width: 25px;
	height: 25px;
	fill: none;
	stroke: currentcolor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.cb-find-card__content {
	margin-top: 20px;
}

.cb-find-card__title {
	margin: 0;
	color: var(--cb-primary);
	font-size: 1.28rem;
	font-weight: 600;
	line-height: 1.35;
}

.cb-find-card__text {
	margin: 10px 0 0;
	color: #646b78;
	font-size: 0.94rem;
	line-height: 1.55;
}

.cb-find-card__link {
	display: inline-flex;
	gap: 10px;
	align-items: center;
	margin-top: 20px;
	padding-top: 0;
	color: var(--cb-primary);
	font-size: 0.9rem;
	font-weight: 700;
}

.cb-find-card__link svg {
	width: 19px;
	height: 19px;
	fill: none;
	stroke: var(--cb-accent);
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.9;
	transition: transform 0.2s ease;
}

.cb-find-card:hover .cb-find-card__link svg {
	transform: translateX(5px);
}

@media (max-width: 980px) {
	.cb-find__grid {
		grid-template-columns: 1fr;
		max-width: 720px;
		margin-right: auto;
		margin-left: auto;
	}

	.cb-find-card {
		min-height: 230px;
	}
}

@media (max-width: 600px) {
	.cb-find {
		padding: 64px 0;
	}

	.cb-find__header {
		text-align: left;
	}

	.cb-find__description {
		margin-left: 0;
	}

	.cb-find__grid {
		gap: 16px;
		margin-top: 36px;
	}

	.cb-find-card {
		min-height: 0;
		padding: 24px;
		border-radius: 18px;
	}
}
/* Sección: productos destacados */

.cb-products {
	padding: clamp(72px, 8vw, 100px) 0;
	background: var(--cb-white);
}

.cb-products__header {
	display: flex;
	gap: 28px;
	align-items: center;
	justify-content: space-between;
}

.cb-products__heading {
	max-width: 760px;
}

.cb-products__title {
	max-width: 720px;
	margin: 0;
	color: var(--cb-primary);
	font-size: clamp(2rem, 3.4vw, 2.65rem);
	font-weight: 700;
	letter-spacing: -0.025em;
	line-height: 1.15;
	text-wrap: balance;
}

.cb-products__description {
	max-width: 680px;
	margin: 16px 0 0;
	color: #5b6270;
	font-size: 1rem;
	line-height: 1.7;
}

.cb-products__catalog {
	display: inline-flex;
	flex: 0 0 auto;
	gap: 10px;
	align-items: center;
	margin-top: 10px;
	padding-bottom: 3px;
	border-bottom: 1px solid var(--cb-accent);
	color: var(--cb-primary);
	font-size: 0.9rem;
	font-weight: 700;
}

.cb-products__catalog svg {
	width: 19px;
	height: 19px;
	fill: none;
	stroke: var(--cb-accent);
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.9;
	transition: transform 0.2s ease;
}

.cb-products__catalog:hover svg {
	transform: translateX(4px);
}

.cb-products__grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 20px;
        align-items: start;
        margin-top: 36px;
}

.cb-product-card {
        display: flex;
        flex-direction: column;
        overflow: hidden;
        height: auto;
        border: 1px solid rgba(21, 18, 87, 0.09);
        border-radius: 18px;
        background: var(--cb-white);
        box-shadow: 0 8px 20px rgba(21, 18, 87, 0.035);
        transition:
                transform 0.2s ease,
                border-color 0.2s ease,
                box-shadow 0.2s ease;
}

.cb-product-card:hover {
        border-color: rgba(255, 59, 18, 0.2);
        box-shadow: 0 12px 26px rgba(21, 18, 87, 0.055);
        transform: translateY(-3px);
}

.cb-product-card__image-link {
        position: relative;
        display: grid;
        overflow: hidden;
        height: 205px;
        padding: 20px 26px;
        border-bottom: 1px solid rgba(21, 18, 87, 0.07);
        background: #f7f7f9;
        place-items: center;
}

.cb-product-card__delivery {
        position: absolute;
        z-index: 1;
        top: 12px;
        left: 12px;
        padding: 6px 9px;
        border-radius: 999px;
        background: #eef0f5;
        color: var(--cb-primary);
        font-size: 11px;
        font-weight: 600;
        line-height: 1;
}

.cb-product-card__image {
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        object-position: center;
        transition: transform 0.3s ease;
}

.cb-product-card:hover .cb-product-card__image {
        transform: scale(1.02);
}

.cb-product-card__body {
        display: flex;
        flex: 1;
        flex-direction: column;
        padding: 20px 22px 22px;
}

.cb-product-card__brand {
        margin: 0 0 10px;
        color: var(--cb-accent);
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.06em;
        line-height: 1.2;
        text-transform: uppercase;
}

.cb-product-card__title {
        display: -webkit-box;
        min-height: 72px;
        overflow: hidden;
        margin: 0;
        color: #171923;
        font-size: 18px;
        font-weight: 700;
        line-height: 1.34;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        line-clamp: 3;
}

.cb-product-card__title a {
	transition: color 0.2s ease;
}

.cb-product-card__title a:hover {
	color: var(--cb-accent);
}

.cb-product-card__price {
        margin: 12px 0 0;
        color: #ff3b12;
        font-size: 25px;
        font-weight: 800;
        line-height: 1.1;
}

.cb-product-card__compatibility {
        margin: 16px 0 0;
        color: #697180;
        font-size: 13px;
        font-weight: 400;
        line-height: 1.5;
}

.cb-product-card__actions {
        display: grid;
        gap: 8px;
        margin-top: 22px;
        padding-top: 0;
}

.cb-product-card__button,
.cb-product-card__whatsapp {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 40px;
        padding: 10px 14px;
        border-radius: 12px;
        font-size: 0.78rem;
        font-weight: 600;
        text-align: center;
	transition:
		background-color 0.2s ease,
		border-color 0.2s ease,
		color 0.2s ease;
}

.cb-product-card__button {
        min-height: 44px;
        background: var(--cb-primary);
        color: var(--cb-white);
        font-size: 0.82rem;
        font-weight: 700;
}

.cb-product-card__button:hover {
	background: var(--cb-accent);
}

.cb-product-card__whatsapp {
        min-height: 40px;
        border: 1px solid #d9dce5;
        background: var(--cb-white);
        color: var(--cb-primary);
        font-size: 0.74rem;
        font-weight: 600;
}

.cb-product-card__whatsapp:hover {
	border-color: var(--cb-accent);
	color: var(--cb-accent);
}

.cb-products__footer {
	display: flex;
	gap: 24px;
	align-items: center;
	justify-content: space-between;
	margin-top: 28px;
	padding: 14px 18px;
	border: 1px solid rgba(21, 18, 87, 0.09);
	border-radius: 16px;
	background: #f8f8f8;
}

.cb-products__warranty {
	display: flex;
	gap: 10px;
	align-items: center;
	margin: 0;
	color: #5f6673;
	font-size: 0.82rem;
	line-height: 1.45;
}

.cb-products__warranty span {
	display: grid;
	flex: 0 0 auto;
	width: 30px;
	height: 30px;
	border-radius: 10px;
	background: rgba(255, 59, 18, 0.1);
	color: var(--cb-accent);
	place-items: center;
}

.cb-products__warranty svg {
	width: 17px;
	height: 17px;
	fill: none;
	stroke: currentcolor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.cb-products__help {
	flex: 0 0 auto;
	color: var(--cb-primary);
	font-size: 0.82rem;
	font-weight: 700;
	line-height: 1.35;
	text-decoration: underline;
	text-decoration-color: var(--cb-accent);
	text-underline-offset: 5px;
	text-decoration-thickness: 2px;
}

@media (max-width: 1100px) {
	.cb-products__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 760px) {
	.cb-products__header {
		align-items: flex-start;
		flex-direction: column;
		gap: 20px;
	}

	.cb-products__grid {
		gap: 16px;
		margin-top: 34px;
	}

	.cb-products__footer {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (max-width: 560px) {
	.cb-products {
		padding: 64px 0;
	}

	.cb-products__grid {
		grid-template-columns: 1fr;
	}

        .cb-product-card__image-link {
                height: 200px;
                padding: 20px 24px;
        }

        .cb-product-card__title {
                min-height: auto;
                font-size: 18px;
        }
}
/* Sección: servicios para tu batería */

.cb-services {
	position: relative;
	overflow: hidden;
	padding: clamp(76px, 8vw, 108px) 0;
	background:
		radial-gradient(
			circle at 85% 15%,
			rgba(255, 59, 18, 0.08),
			transparent 28%
		),
		linear-gradient(
			135deg,
			#10131c 0%,
			#11143d 48%,
			#151257 100%
		);
}

.cb-services::before {
	position: absolute;
	top: -240px;
	right: -180px;
	width: 520px;
	height: 520px;
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 50%;
	content: "";
}

.cb-services__layout {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
	gap: clamp(48px, 7vw, 96px);
	align-items: center;
}

.cb-services__intro {
	max-width: 470px;
}

.cb-services__eyebrow {
	margin: 0 0 14px;
	color: var(--cb-accent);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.cb-services__title {
	margin: 0;
	color: var(--cb-white);
	font-size: clamp(2.1rem, 3.5vw, 2.85rem);
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1.12;
	text-wrap: balance;
}

.cb-services__description {
	margin: 20px 0 0;
	color: #c7cad4;
	font-size: 1rem;
	line-height: 1.75;
}

.cb-services__whatsapp {
	display: inline-flex;
	gap: 10px;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	margin-top: 30px;
	padding: 13px 22px;
	border-radius: 999px;
	background: var(--cb-accent);
	color: var(--cb-white);
	font-size: 0.9rem;
	font-weight: 700;
	box-shadow: 0 14px 32px rgba(255, 59, 18, 0.2);
	transition:
		background-color 0.2s ease,
		transform 0.2s ease;
}

.cb-services__whatsapp:hover {
	background: var(--cb-accent-hover);
	transform: translateY(-2px);
}

.cb-services__button-icon svg {
	width: 20px;
	height: 20px;
}

.cb-services__button-icon svg path[fill="currentColor"] {
	fill: currentColor;
	stroke: none;
}

.cb-services__content {
	min-width: 0;
}

.cb-services__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.cb-service-card {
	display: flex;
	gap: 20px;
	min-height: 260px;
	padding: 26px;
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.055);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
	backdrop-filter: blur(8px);
	transition:
		background-color 0.2s ease,
		border-color 0.2s ease,
		transform 0.2s ease;
}

.cb-service-card:hover {
	border-color: rgba(255, 59, 18, 0.5);
	background: rgba(255, 255, 255, 0.075);
	transform: translateY(-4px);
}

.cb-service-card:focus-visible,
.cb-services__whatsapp:focus-visible,
.cb-services__decision a:focus-visible {
	outline: 3px solid rgba(255, 255, 255, 0.75);
	outline-offset: 4px;
}

.cb-service-card__icon {
	display: grid;
	flex: 0 0 auto;
	width: 50px;
	height: 50px;
	border: 1px solid rgba(255, 59, 18, 0.22);
	border-radius: 15px;
	background: rgba(255, 59, 18, 0.12);
	color: var(--cb-accent);
	place-items: center;
}

.cb-service-card__icon svg {
	width: 24px;
	height: 24px;
	fill: none;
	stroke: currentcolor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.cb-service-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	min-width: 0;
}

.cb-service-card__title {
	margin: 2px 0 0;
	color: var(--cb-white);
	font-size: 1.18rem;
	font-weight: 600;
	line-height: 1.4;
}

.cb-service-card__text {
	margin: 13px 0 0;
	color: #c2c6d0;
	font-size: 0.9rem;
	line-height: 1.65;
}

.cb-service-card__link {
	display: inline-flex;
	gap: 10px;
	align-items: center;
	margin-top: auto;
	padding-top: 24px;
	color: var(--cb-white);
	font-size: 0.84rem;
	font-weight: 700;
}

.cb-service-card__link svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: var(--cb-accent);
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.9;
	transition: transform 0.2s ease;
}

.cb-service-card:hover .cb-service-card__link svg {
	transform: translateX(5px);
}

.cb-services__decision {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	gap: 15px;
	align-items: center;
	margin-top: 18px;
	padding: 18px 20px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 17px;
	background: rgba(0, 0, 0, 0.13);
	color: var(--cb-white);
}

.cb-services__decision-icon {
	display: grid;
	width: 38px;
	height: 38px;
	border-radius: 11px;
	background: rgba(255, 59, 18, 0.12);
	color: var(--cb-accent);
	place-items: center;
}

.cb-services__decision-icon svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentcolor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.cb-services__decision strong {
	display: block;
	font-size: 0.88rem;
	font-weight: 600;
	line-height: 1.4;
}

.cb-services__decision p {
	margin: 3px 0 0;
	color: #bfc3ce;
	font-size: 0.78rem;
	line-height: 1.5;
}

.cb-services__decision a {
	flex: 0 0 auto;
	color: var(--cb-white);
	font-size: 0.8rem;
	font-weight: 700;
	text-decoration: underline;
	text-decoration-color: var(--cb-accent);
	text-underline-offset: 5px;
}

@media (max-width: 1050px) {
	.cb-services__layout {
		grid-template-columns: 1fr;
	}

	.cb-services__intro {
		max-width: 700px;
	}

	.cb-services__content {
		max-width: 900px;
	}
}

@media (max-width: 760px) {
	.cb-services {
		padding: 68px 0;
	}

	.cb-services__grid {
		grid-template-columns: 1fr;
	}

	.cb-service-card {
		min-height: 220px;
	}

	.cb-services__decision {
		grid-template-columns: auto minmax(0, 1fr);
	}

	.cb-services__decision a {
		grid-column: 2;
		justify-self: start;
	}
}

@media (max-width: 540px) {
	.cb-services__whatsapp {
		width: 100%;
	}

	.cb-service-card {
		gap: 16px;
		min-height: 0;
		padding: 22px;
	}

	.cb-service-card__icon {
		width: 44px;
		height: 44px;
	}

	.cb-services__decision {
		align-items: flex-start;
	}
}
/* Sección: cobertura en Bogotá */

.cb-coverage {
	padding: clamp(76px, 8vw, 104px) 0;
	background:
		radial-gradient(
			circle at 12% 18%,
			rgba(21, 18, 87, 0.035),
			transparent 30%
		),
		#f7f7f9;
}

.cb-coverage__layout {
	display: grid;
	grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
	gap: clamp(52px, 7vw, 96px);
	align-items: start;
}

.cb-coverage__intro {
	position: sticky;
	top: 32px;
	max-width: 500px;
}

.cb-coverage__title {
	margin: 0;
	color: var(--cb-primary);
	font-size: clamp(2.1rem, 3.6vw, 2.85rem);
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1.13;
	text-wrap: balance;
}

.cb-coverage__description {
	margin: 20px 0 0;
	color: #5d6472;
	font-size: 1rem;
	line-height: 1.75;
}

.cb-coverage__button {
	display: inline-flex;
	gap: 10px;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	margin-top: 30px;
	padding: 13px 22px;
	border-radius: 999px;
	background: var(--cb-accent);
	color: var(--cb-white);
	font-size: 0.9rem;
	font-weight: 700;
	box-shadow: 0 13px 30px rgba(255, 59, 18, 0.18);
	transition:
		background-color 0.2s ease,
		transform 0.2s ease;
}

.cb-coverage__button:hover {
	background: var(--cb-accent-hover);
	transform: translateY(-2px);
}

.cb-coverage__button:focus-visible,
.cb-coverage-link:focus-visible {
	outline: 3px solid rgba(255, 59, 18, 0.3);
	outline-offset: 4px;
}

.cb-coverage__button-icon {
	display: grid;
	width: 20px;
	height: 20px;
	place-items: center;
}

.cb-coverage__button-icon svg {
	width: 20px;
	height: 20px;
}

.cb-coverage__button-icon svg path[fill="currentColor"] {
	fill: currentColor;
	stroke: none;
}

.cb-coverage__notice {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	margin-top: 28px;
	padding-top: 22px;
	border-top: 1px solid rgba(21, 18, 87, 0.11);
	color: #6a7180;
	font-size: 0.82rem;
	line-height: 1.6;
}

.cb-coverage__notice p {
	margin: 0;
}

.cb-coverage__notice-icon {
	display: grid;
	flex: 0 0 auto;
	width: 28px;
	height: 28px;
	border-radius: 9px;
	background: rgba(255, 59, 18, 0.09);
	color: var(--cb-accent);
	place-items: center;
}

.cb-coverage__notice-icon svg {
	width: 16px;
	height: 16px;
	fill: none;
	stroke: currentcolor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.cb-coverage__content {
	min-width: 0;
}

.cb-coverage__zones {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.cb-coverage-card {
	padding: 24px;
	border: 1px solid rgba(21, 18, 87, 0.1);
	border-radius: 21px;
	background: var(--cb-white);
	box-shadow: 0 12px 30px rgba(21, 18, 87, 0.045);
}

.cb-coverage-card:first-child {
	border-color: rgba(255, 59, 18, 0.26);
}

.cb-coverage-card__header {
	display: flex;
	gap: 14px;
	align-items: center;
}

.cb-coverage-card__icon {
	display: grid;
	flex: 0 0 auto;
	width: 46px;
	height: 46px;
	border-radius: 14px;
	background: rgba(255, 59, 18, 0.1);
	color: var(--cb-accent);
	place-items: center;
}

.cb-coverage-card__icon svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentcolor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.cb-coverage-card__label {
	margin: 0 0 3px;
	color: var(--cb-accent);
	font-size: 0.67rem;
	font-weight: 700;
	letter-spacing: 0.055em;
	text-transform: uppercase;
}

.cb-coverage-card__title {
	margin: 0;
	color: var(--cb-primary);
	font-size: 1.12rem;
	font-weight: 600;
	line-height: 1.4;
}

.cb-coverage-card__list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px 14px;
	margin: 24px 0 0;
	padding: 0;
	list-style: none;
}

.cb-coverage-card__list li {
	position: relative;
	padding-left: 17px;
	color: #505765;
	font-size: 0.86rem;
	line-height: 1.45;
}

.cb-coverage-card__list li::before {
	position: absolute;
	top: 0.55em;
	left: 0;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--cb-accent);
	content: "";
	transform: translateY(-50%);
}

.cb-coverage__links {
	display: grid;
	gap: 10px;
	margin-top: 18px;
}

.cb-coverage-link {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	gap: 14px;
	align-items: center;
	padding: 17px 18px;
	border: 1px solid rgba(21, 18, 87, 0.09);
	border-radius: 15px;
	background: var(--cb-white);
	transition:
		border-color 0.2s ease,
		box-shadow 0.2s ease,
		transform 0.2s ease;
}

.cb-coverage-link:hover {
	border-color: rgba(255, 59, 18, 0.4);
	box-shadow: 0 12px 28px rgba(21, 18, 87, 0.065);
	transform: translateX(3px);
}

.cb-coverage-link__icon {
	display: grid;
	width: 38px;
	height: 38px;
	border-radius: 11px;
	background: rgba(21, 18, 87, 0.06);
	color: var(--cb-primary);
	place-items: center;
}

.cb-coverage-link__icon svg {
	width: 19px;
	height: 19px;
	fill: none;
	stroke: currentcolor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.75;
}

.cb-coverage-link__content {
	display: block;
	min-width: 0;
}

.cb-coverage-link__content strong {
	display: block;
	color: var(--cb-primary);
	font-size: 0.88rem;
	font-weight: 600;
	line-height: 1.4;
}

.cb-coverage-link__content small {
	display: block;
	margin-top: 3px;
	color: #757b87;
	font-size: 0.73rem;
	line-height: 1.45;
}

.cb-coverage-link__arrow {
	color: var(--cb-accent);
}

.cb-coverage-link__arrow svg {
	width: 19px;
	height: 19px;
	fill: none;
	stroke: currentcolor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.9;
	transition: transform 0.2s ease;
}

.cb-coverage-link:hover .cb-coverage-link__arrow svg {
	transform: translateX(4px);
}

@media (max-width: 1050px) {
	.cb-coverage__layout {
		grid-template-columns: 1fr;
	}

	.cb-coverage__intro {
		position: static;
		max-width: 720px;
	}

	.cb-coverage__content {
		max-width: 900px;
	}
}

@media (max-width: 720px) {
	.cb-coverage {
		padding: 68px 0;
	}

	.cb-coverage__zones {
		grid-template-columns: 1fr;
	}

	.cb-coverage-card__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 500px) {
	.cb-coverage__button {
		width: 100%;
	}

	.cb-coverage-card {
		padding: 21px;
	}

	.cb-coverage-card__list {
		grid-template-columns: 1fr;
	}

	.cb-coverage-link {
		grid-template-columns: auto minmax(0, 1fr);
	}

	.cb-coverage-link__arrow {
		display: none;
	}
}
/* Sección: marcas de baterías */

.cb-brands {
	padding: clamp(72px, 8vw, 100px) 0;
	background: var(--cb-white);
}

.cb-brands__header {
	display: flex;
	gap: 28px;
	align-items: flex-end;
	justify-content: flex-start;
}

.cb-brands__heading {
	max-width: 760px;
}

.cb-brands__title {
	max-width: 720px;
	margin: 0;
	color: var(--cb-primary);
	font-size: clamp(2rem, 3.4vw, 2.65rem);
	font-weight: 700;
	letter-spacing: -0.025em;
	line-height: 1.15;
	text-wrap: balance;
}

.cb-brands__description {
	max-width: 680px;
	margin: 17px 0 0;
	color: #5b6270;
	font-size: 1rem;
	line-height: 1.7;
}

.cb-brands__catalog-link {
	display: inline-flex;
	flex: 0 0 auto;
	gap: 10px;
	align-items: center;
	padding-bottom: 4px;
	border-bottom: 1px solid var(--cb-accent);
	color: var(--cb-primary);
	font-size: 0.9rem;
	font-weight: 700;
}

.cb-brands__catalog-link svg {
	width: 19px;
	height: 19px;
	fill: none;
	stroke: var(--cb-accent);
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.9;
	transition: transform 0.2s ease;
}

.cb-brands__catalog-link:hover svg {
	transform: translateX(4px);
}

.cb-brands__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
	margin-top: 42px;
}

.cb-brand-card {
	margin: 0;
}

.cb-brand-card__image-wrapper {
	display: grid;
	overflow: hidden;
	min-height: 130px;
	padding: 26px;
	border: 1px solid rgba(21, 18, 87, 0.08);
	border-radius: 18px;
	background: #ffffff;
	place-items: center;
	transition:
		border-color 0.2s ease,
		background-color 0.2s ease,
		box-shadow 0.2s ease,
		transform 0.2s ease;
}

.cb-brand-card:hover .cb-brand-card__image-wrapper {
	border-color: rgba(255, 59, 18, 0.35);
	background: var(--cb-white);
	box-shadow: 0 14px 30px rgba(21, 18, 87, 0.07);
	transform: translateY(-3px);
}

.cb-brand-card__image {
	display: block;
	width: 100%;
	max-width: 190px;
	height: 82px;
	object-fit: contain;
	object-position: center;
	transition:
		filter 0.2s ease,
		transform 0.2s ease;
}

.cb-brand-card:hover .cb-brand-card__image {
	transform: scale(1.035);
}

.cb-brand-card__name {
	margin-top: 10px;
	color: #676e7b;
	font-size: 0.78rem;
	font-weight: 600;
	text-align: center;
}

.cb-brands__footer {
	display: flex;
	gap: 28px;
	align-items: center;
	justify-content: space-between;
	margin-top: 28px;
	padding: 20px 22px;
	border: 1px solid rgba(21, 18, 87, 0.09);
	border-radius: 17px;
	background: #f8f8f8;
}

.cb-brands__footer-copy {
	display: flex;
	gap: 13px;
	align-items: center;
}

.cb-brands__footer-icon {
	display: grid;
	flex: 0 0 auto;
	width: 40px;
	height: 40px;
	border-radius: 12px;
	background: rgba(255, 59, 18, 0.1);
	color: var(--cb-accent);
	place-items: center;
}

.cb-brands__footer-icon svg {
	width: 21px;
	height: 21px;
	fill: none;
	stroke: currentcolor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.cb-brands__footer-copy strong {
	display: block;
	color: var(--cb-primary);
	font-size: 0.9rem;
	font-weight: 700;
	line-height: 1.4;
}

.cb-brands__footer-copy p {
	margin: 3px 0 0;
	color: #6b7280;
	font-size: 0.78rem;
	line-height: 1.5;
}

.cb-brands__actions {
	display: flex;
	flex: 0 0 auto;
	gap: 12px;
	align-items: center;
}

.cb-brands__guide {
	color: var(--cb-primary);
	font-size: 0.82rem;
	font-weight: 700;
	text-decoration: underline;
	text-decoration-color: var(--cb-accent);
	text-underline-offset: 5px;
}

.cb-brands__whatsapp {
	display: inline-flex;
	gap: 9px;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 11px 17px;
	border-radius: 999px;
	background: var(--cb-accent);
	color: var(--cb-white);
	font-size: 0.8rem;
	font-weight: 700;
	transition:
		background-color 0.2s ease,
		transform 0.2s ease;
}


.cb-brands__whatsapp-icon {
	display: grid;
	width: 19px;
	height: 19px;
	place-items: center;
}

.cb-brands__whatsapp-icon svg {
	width: 19px;
	height: 19px;
}

.cb-brands__whatsapp-icon svg path[fill="currentColor"] {
	fill: currentColor;
	stroke: none;
}
.cb-brands__whatsapp:hover {
	background: var(--cb-accent-hover);
	transform: translateY(-2px);
}


@media (max-width: 980px) {
	.cb-brands__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.cb-brands__footer {
		align-items: flex-start;
		flex-direction: column;
	}

	.cb-brands__actions {
		width: 100%;
	}
}

@media (max-width: 720px) {
	.cb-brands {
		padding: 66px 0;
	}

	.cb-brands__header {
		align-items: flex-start;
		flex-direction: column;
		gap: 20px;
	}

	.cb-brands__grid {
		margin-top: 34px;
	}
}

@media (max-width: 520px) {
	.cb-brands__grid {
		grid-template-columns: 1fr 1fr;
		gap: 12px;
	}

	.cb-brand-card__image-wrapper {
		min-height: 120px;
		padding: 18px;
	}

	.cb-brand-card__image {
		max-width: 130px;
		height: 65px;
	}

	.cb-brands__actions {
		align-items: stretch;
		flex-direction: column;
	}

	.cb-brands__guide,
	.cb-brands__whatsapp {
		width: 100%;
		text-align: center;
	}

	.cb-brands__guide {
		padding: 10px;
	}
}
/* Sección: reseñas de clientes */

.cb-reviews {
	padding: clamp(76px, 8vw, 104px) 0;
	background:
		radial-gradient(
			circle at 88% 12%,
			rgba(21, 18, 87, 0.035),
			transparent 26%
		),
		#f7f7f9;
}

.cb-reviews__layout {
	display: grid;
	grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
	gap: clamp(28px, 5vw, 68px);
	align-items: start;
}

/* Resumen izquierdo */

.cb-reviews__summary {
	position: sticky;
	top: 30px;
	padding: 34px;
	border-radius: 24px;
	background:
		radial-gradient(
			circle at 90% 10%,
			rgba(255, 59, 18, 0.12),
			transparent 35%
		),
		linear-gradient(
			145deg,
			#10131c 0%,
			#151257 100%
		);
	color: var(--cb-white);
	box-shadow: 0 24px 55px rgba(21, 18, 87, 0.16);
}

.cb-reviews__eyebrow {
	margin: 0 0 14px;
	color: var(--cb-accent);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.cb-reviews__title {
	margin: 0;
	color: var(--cb-white);
	font-size: clamp(1.9rem, 3vw, 2.45rem);
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1.13;
	text-wrap: balance;
}

.cb-reviews__description {
	margin: 20px 0 0;
	color: #d0d3dc;
	font-size: 0.96rem;
	line-height: 1.7;
}

.cb-reviews__summary-points {
	display: grid;
	gap: 12px;
	margin-top: 28px;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.cb-reviews__summary-point {
	display: flex;
	gap: 11px;
	align-items: center;
	color: #e0e2e8;
	font-size: 0.82rem;
	font-weight: 500;
	line-height: 1.5;
}

.cb-reviews__summary-point > span {
	display: grid;
	flex: 0 0 auto;
	width: 34px;
	height: 34px;
	border-radius: 10px;
	background: rgba(255, 59, 18, 0.12);
	color: var(--cb-accent);
	place-items: center;
}

.cb-reviews__summary-point svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentcolor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.cb-reviews__google-button {
	display: inline-flex;
	gap: 10px;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	margin-top: 28px;
	padding: 12px 20px;
	border-radius: 999px;
	background: var(--cb-accent);
	color: var(--cb-white);
	font-size: 0.86rem;
	font-weight: 700;
	transition:
		background-color 0.2s ease,
		transform 0.2s ease;
}

.cb-reviews__google-button:hover {
	background: var(--cb-accent-hover);
	transform: translateY(-2px);
}

.cb-reviews__google-button svg {
	width: 19px;
	height: 19px;
	fill: none;
	stroke: currentcolor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.9;
	transition: transform 0.2s ease;
}

.cb-reviews__google-button:hover svg {
	transform: translateX(4px);
}

.cb-reviews__google-button:focus-visible,
.cb-review-card:focus-within {
	outline: 3px solid rgba(255, 59, 18, 0.3);
	outline-offset: 4px;
}

.cb-reviews__disclaimer {
	margin: 18px 0 0;
	color: #aeb3c0;
	font-size: 0.7rem;
	line-height: 1.55;
}

/* Grid de reseñas */

.cb-reviews__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.cb-review-card {
	display: flex;
	flex-direction: column;
	min-height: 285px;
	padding: 24px;
	border: 1px solid rgba(21, 18, 87, 0.1);
	border-radius: 20px;
	background: var(--cb-white);
	box-shadow: 0 12px 30px rgba(21, 18, 87, 0.05);
	transition:
		border-color 0.2s ease,
		box-shadow 0.2s ease,
		transform 0.2s ease;
}

.cb-review-card:hover {
	border-color: rgba(255, 59, 18, 0.3);
	box-shadow: 0 18px 40px rgba(21, 18, 87, 0.08);
	transform: translateY(-3px);
}

.cb-review-card__header {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	gap: 12px;
	align-items: center;
}

.cb-review-card__avatar {
	display: grid;
	width: 43px;
	height: 43px;
	border-radius: 50%;
	background: var(--cb-primary);
	color: var(--cb-white);
	font-size: 0.92rem;
	font-weight: 700;
	place-items: center;
}

.cb-review-card:nth-child(2) .cb-review-card__avatar,
.cb-review-card:nth-child(4) .cb-review-card__avatar {
	background: var(--cb-accent);
}

.cb-review-card__author {
	min-width: 0;
}

.cb-review-card__author h3 {
	overflow: hidden;
	margin: 0;
	color: var(--cb-primary);
	font-size: 0.93rem;
	font-weight: 700;
	line-height: 1.35;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.cb-review-card__author p {
	margin: 3px 0 0;
	color: #777d89;
	font-size: 0.7rem;
	line-height: 1.4;
}

.cb-review-card__source {
	padding: 6px 9px;
	border-radius: 999px;
	background: #f1f2f5;
	color: #636a76;
	font-size: 0.62rem;
	font-weight: 600;
}

.cb-review-card__stars {
	display: flex;
	gap: 3px;
	margin-top: 20px;
	color: var(--cb-star, #f5a400);
}

.cb-review-card__stars svg {
	width: 17px;
	height: 17px;
	fill: currentcolor;
	stroke: currentcolor;
	stroke-linejoin: round;
	stroke-width: 1.2;
}

.cb-review-card__quote {
	margin: 16px 0 0;
}

.cb-review-card__quote p {
	margin: 0;
	color: #434956;
	font-size: 0.9rem;
	line-height: 1.7;
}

.cb-review-card__footer {
	display: flex;
	gap: 16px;
	align-items: center;
	justify-content: space-between;
	margin-top: auto;
	padding-top: 22px;
}

.cb-review-card__verified {
	display: inline-flex;
	gap: 7px;
	align-items: center;
	color: #7b818c;
	font-size: 0.66rem;
	font-weight: 500;
}

.cb-review-card__verified svg {
	width: 15px;
	height: 15px;
	fill: none;
	stroke: var(--cb-accent);
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.cb-review-card__quote-icon {
	color: rgba(21, 18, 87, 0.12);
}

.cb-review-card__quote-icon svg {
	width: 30px;
	height: 30px;
	fill: currentcolor;
	stroke: none;
}

/* Responsive */

@media (max-width: 1050px) {
	.cb-reviews__layout {
		grid-template-columns: 1fr;
	}

	.cb-reviews__summary {
		position: static;
		max-width: 720px;
	}
}

@media (max-width: 720px) {
	.cb-reviews {
		padding: 68px 0;
	}

	.cb-reviews__grid {
		grid-template-columns: 1fr;
	}

	.cb-review-card {
		min-height: 250px;
	}
}

@media (max-width: 500px) {
	.cb-reviews__summary {
		padding: 27px 23px;
		border-radius: 20px;
	}

	.cb-reviews__google-button {
		width: 100%;
	}

	.cb-review-card {
		min-height: 0;
		padding: 22px;
	}

	.cb-review-card__source {
		display: none;
	}
}
/* Sección: tipos de vehículo */

.cb-vehicles {
	padding: 72px 0;
	background: #f7f7f9;
}

.cb-vehicles__header {
	max-width: 760px;
}

.cb-vehicles__heading {
	max-width: 760px;
}

.cb-vehicles__title {
	max-width: 720px;
	margin: 0;
	color: var(--cb-primary);
	font-size: clamp(1.9rem, 3vw, 2.45rem);
	font-weight: 700;
	letter-spacing: -0.025em;
	line-height: 1.15;
	text-wrap: balance;
}

.cb-vehicles__description {
	max-width: 690px;
	margin: 14px 0 0;
	color: #5d6472;
	font-size: 1rem;
	line-height: 1.6;
}

.cb-vehicles__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	margin-top: 30px;
}

.cb-vehicle-card {
	position: relative;
	display: block;
	overflow: hidden;
	min-height: 175px;
	border: 1px solid rgba(21, 18, 87, 0.1);
	border-radius: 18px;
	background: #111827;
	box-shadow: 0 10px 28px rgba(21, 18, 87, 0.06);
	isolation: isolate;
	transition:
		border-color 0.2s ease,
		box-shadow 0.2s ease,
		transform 0.2s ease;
}

.cb-vehicle-card:hover {
	border-color: rgba(255, 59, 18, 0.45);
	box-shadow: 0 16px 36px rgba(21, 18, 87, 0.12);
	transform: translateY(-2px);
}

.cb-vehicle-card:focus-visible {
	outline: 3px solid rgba(255, 59, 18, 0.32);
	outline-offset: 4px;
}

.cb-vehicle-card__image {
	position: absolute;
	inset: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.35s ease;
}

.cb-vehicle-card:hover .cb-vehicle-card__image {
	transform: scale(1.035);
}

.cb-vehicle-card__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(
			180deg,
			rgba(8, 15, 46, 0.04) 25%,
			rgba(8, 15, 46, 0.78) 100%
		);
	pointer-events: none;
}

.cb-vehicle-card__content {
	position: absolute;
	z-index: 2;
	right: 18px;
	bottom: 16px;
	left: 18px;
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: space-between;
	color: var(--cb-white);
}

.cb-vehicle-card__title {
	font-size: 1.02rem;
	font-weight: 700;
	line-height: 1.25;
	text-shadow: 0 2px 16px rgba(0, 0, 0, 0.28);
}

.cb-vehicle-card__arrow {
	display: grid;
	flex: 0 0 auto;
	width: 30px;
	height: 30px;
	border: 1px solid rgba(255, 255, 255, 0.36);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	color: var(--cb-white);
	place-items: center;
	transition:
		background-color 0.2s ease,
		border-color 0.2s ease,
		transform 0.2s ease;
}

.cb-vehicle-card__arrow svg {
	width: 16px;
	height: 16px;
	fill: none;
	stroke: currentcolor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.9;
}

.cb-vehicle-card:hover .cb-vehicle-card__arrow {
	border-color: rgba(255, 59, 18, 0.65);
	background: rgba(255, 59, 18, 0.82);
	transform: translateX(3px);
}

@media (max-width: 980px) {
	.cb-vehicles__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 620px) {
	.cb-vehicles {
		padding: 60px 0;
	}

	.cb-vehicles__grid {
		grid-template-columns: 1fr;
		gap: 12px;
		margin-top: 24px;
	}

	.cb-vehicle-card {
		min-height: 150px;
		border-radius: 16px;
	}

	.cb-vehicle-card__content {
		right: 15px;
		bottom: 14px;
		left: 15px;
	}
}
/* Sección: punto físico */

.cb-location {
	padding: clamp(76px, 8vw, 104px) 0;
	background: var(--cb-white);
}

.cb-location__layout {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
	gap: clamp(46px, 6vw, 78px);
	align-items: center;
}

/* Imagen */

.cb-location__visual-column {
	min-width: 0;
}

.cb-location__visual {
	position: relative;
	overflow: hidden;
	aspect-ratio: 5 / 4;
	border: 1px solid rgba(21, 18, 87, 0.1);
	border-radius: 24px;
	background: #e9eaee;
	box-shadow: 0 22px 52px rgba(21, 18, 87, 0.11);
}

.cb-location__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.cb-location__visual-note {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 22px;
	margin-top: 16px;
	padding: 15px 18px;
	border: 1px solid rgba(21, 18, 87, 0.09);
	border-radius: 14px;
	background: #f7f7f9;
	color: var(--cb-primary);
	font-size: 0.76rem;
	font-weight: 600;
}

.cb-location__visual-note span {
	position: relative;
	padding-left: 14px;
}

.cb-location__visual-note span::before {
	position: absolute;
	top: 50%;
	left: 0;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--cb-accent);
	content: "";
	transform: translateY(-50%);
}

.cb-location__image-label {
	position: absolute;
	bottom: 20px;
	left: 20px;
	display: inline-flex;
	gap: 9px;
	align-items: center;
	padding: 10px 14px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 999px;
	background: rgba(16, 19, 28, 0.86);
	color: var(--cb-white);
	font-size: 0.76rem;
	font-weight: 600;
	backdrop-filter: blur(10px);
}

.cb-location__image-label-icon {
	color: var(--cb-accent);
}

.cb-location__image-label svg {
	width: 17px;
	height: 17px;
	fill: none;
	stroke: currentcolor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

/* Contenido */

.cb-location__content {
	min-width: 0;
}

.cb-location__title {
	max-width: 620px;
	margin: 0;
	color: var(--cb-primary);
	font-size: clamp(2.05rem, 3.4vw, 2.7rem);
	font-weight: 700;
	letter-spacing: -0.028em;
	line-height: 1.14;
	text-wrap: balance;
}

.cb-location__description {
	max-width: 610px;
	margin: 18px 0 0;
	color: #5d6472;
	font-size: 0.96rem;
	line-height: 1.72;
}

.cb-location__details {
	display: grid;
	gap: 2px;
	margin-top: 28px;
	border: 1px solid rgba(21, 18, 87, 0.09);
	border-radius: 18px;
	background: #f7f7f9;
}

.cb-location-detail {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 14px;
	align-items: center;
	padding: 17px 18px;
	border-bottom: 1px solid rgba(21, 18, 87, 0.08);
}

.cb-location-detail:last-child {
	border-bottom: 0;
}

.cb-location-detail__icon {
	display: grid;
	width: 40px;
	height: 40px;
	border-radius: 12px;
	background: rgba(255, 59, 18, 0.1);
	color: var(--cb-accent);
	place-items: center;
}

.cb-location-detail__icon svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentcolor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.cb-location-detail strong {
	display: block;
	margin-bottom: 3px;
	color: var(--cb-primary);
	font-size: 0.79rem;
	font-weight: 700;
}

.cb-location-detail p,
.cb-location-detail address,
.cb-location-detail a {
	margin: 0;
	color: #626976;
	font-size: 0.82rem;
	font-style: normal;
	line-height: 1.5;
}

.cb-location-detail a {
	font-weight: 600;
	transition: color 0.2s ease;
}

.cb-location-detail a:hover {
	color: var(--cb-accent);
}

/* Acciones */

.cb-location__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 11px;
	align-items: center;
	margin-top: 26px;
}

.cb-location__button {
	display: inline-flex;
	gap: 9px;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 12px 18px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-size: 0.8rem;
	font-weight: 700;
	transition:
		background-color 0.2s ease,
		border-color 0.2s ease,
		color 0.2s ease,
		transform 0.2s ease;
}

.cb-location__button:hover {
	transform: translateY(-2px);
}

.cb-location__button span,
.cb-location__button img,
.cb-location__button svg {
	display: block;
	width: 19px;
	height: 19px;
}


.cb-location__button svg path[fill="currentColor"] {
	fill: currentColor;
	stroke: none;
}

.cb-location__button svg {
	fill: none;
	stroke: currentcolor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.cb-location__button--primary {
	background: var(--cb-accent);
	color: var(--cb-white);
	box-shadow: 0 12px 28px rgba(255, 59, 18, 0.18);
}

.cb-location__button--primary:hover {
	background: var(--cb-accent-hover);
}

.cb-location__button--secondary {
	border-color: rgba(21, 18, 87, 0.17);
	background: var(--cb-white);
	color: var(--cb-primary);
}

.cb-location__button--secondary:hover {
	border-color: var(--cb-accent);
	color: var(--cb-accent);
}

.cb-location__maps {
	display: inline-flex;
	gap: 8px;
	align-items: center;
	padding: 10px 4px;
	color: var(--cb-primary);
	font-size: 0.79rem;
	font-weight: 700;
	text-decoration: underline;
	text-decoration-color: var(--cb-accent);
	text-underline-offset: 5px;
}

.cb-location__maps svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: var(--cb-accent);
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.9;
	transition: transform 0.2s ease;
}

.cb-location__maps:hover svg {
	transform: translateX(4px);
}

.cb-location__button:focus-visible,
.cb-location__maps:focus-visible {
	outline: 3px solid rgba(255, 59, 18, 0.3);
	outline-offset: 4px;
}

.cb-location__note {
	margin: 18px 0 0;
	color: #777e89;
	font-size: 0.72rem;
	line-height: 1.55;
}

/* Responsive */

@media (max-width: 980px) {
	.cb-location__layout {
		grid-template-columns: 1fr;
	}

	.cb-location__visual,
	.cb-location__content {
		max-width: 820px;
	}
}

@media (max-width: 620px) {
	.cb-location {
		padding: 68px 0;
	}

	.cb-location__layout {
		gap: 36px;
	}

	.cb-location__visual {
		aspect-ratio: 4 / 3;
		border-radius: 19px;
	}

	.cb-location__image-label {
		right: 14px;
		bottom: 14px;
		left: 14px;
		justify-content: center;
	}

	.cb-location__actions {
		align-items: stretch;
		flex-direction: column;
	}

	.cb-location__button,
	.cb-location__maps {
		width: 100%;
		justify-content: center;
	}

	.cb-location__maps {
		min-height: 44px;
	}
}
/* Componente reutilizable: preguntas frecuentes */

.cb-faq {
	padding: clamp(76px, 8vw, 104px) 0;
	background:
		radial-gradient(
			circle at 8% 10%,
			rgba(21, 18, 87, 0.035),
			transparent 28%
		),
		#f7f7f9;
}

.cb-faq__layout {
	display: grid;
	grid-template-columns: minmax(0, 0.68fr) minmax(0, 1.32fr);
	gap: clamp(48px, 7vw, 92px);
	align-items: start;
}

/* Introducción */

.cb-faq__intro {
	position: sticky;
	top: 30px;
	max-width: 470px;
}

.cb-faq__title {
	margin: 0;
	color: var(--cb-primary);
	font-size: clamp(2rem, 3.3vw, 2.6rem);
	font-weight: 700;
	letter-spacing: -0.028em;
	line-height: 1.14;
	text-wrap: balance;
}

.cb-faq__description {
	margin: 19px 0 0;
	color: #5d6472;
	font-size: 0.96rem;
	line-height: 1.72;
}

/* Caja de ayuda */

.cb-faq__help {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 15px;
	margin-top: 30px;
	padding: 20px;
	border: 1px solid rgba(21, 18, 87, 0.1);
	border-radius: 18px;
	background: var(--cb-white);
	box-shadow: 0 12px 28px rgba(21, 18, 87, 0.045);
}

.cb-faq__help-icon {
	display: grid;
	width: 44px;
	height: 44px;
	border-radius: 13px;
	background: rgba(255, 59, 18, 0.1);
	color: var(--cb-accent);
	place-items: center;
}

.cb-faq__help-icon svg {
        width: 22px;
        height: 22px;
        fill: none;
        stroke: currentcolor;
	stroke-linecap: round;
	stroke-linejoin: round;
        stroke-width: 1.8;
}

.cb-faq__help-icon svg path[fill="currentColor"],
.cb-faq__whatsapp-icon svg path[fill="currentColor"] {
        fill: currentcolor;
        stroke: none;
}

.cb-faq__help-content strong {
        display: block;
        color: var(--cb-primary);
        font-size: 0.9rem;
	font-weight: 700;
	line-height: 1.4;
}

.cb-faq__help-content p {
	margin: 5px 0 0;
	color: #6b7280;
	font-size: 0.78rem;
	line-height: 1.55;
}

.cb-faq__help-content a {
	display: inline-flex;
	gap: 8px;
	align-items: center;
	margin-top: 14px;
	color: var(--cb-primary);
	font-size: 0.78rem;
	font-weight: 700;
	text-decoration: underline;
	text-decoration-color: var(--cb-accent);
	text-underline-offset: 5px;
}

.cb-faq__help-content a svg,
.cb-faq__whatsapp-icon svg {
        width: 17px;
        height: 17px;
        fill: none;
        stroke: var(--cb-accent);
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.9;
        transition: transform 0.2s ease;
}

.cb-faq__whatsapp-icon {
        display: inline-grid;
        width: 17px;
        height: 17px;
        flex: 0 0 auto;
        place-items: center;
}

.cb-faq__help-content a:hover svg {
        transform: translateX(4px);
}

/* Acordeón */

.cb-faq__accordion {
	display: grid;
	gap: 12px;
	min-width: 0;
}

.cb-faq-item {
	overflow: hidden;
	border: 1px solid rgba(21, 18, 87, 0.1);
	border-radius: 17px;
	background: var(--cb-white);
	box-shadow: 0 9px 24px rgba(21, 18, 87, 0.035);
	transition:
		border-color 0.2s ease,
		box-shadow 0.2s ease;
}

.cb-faq-item:hover {
	border-color: rgba(255, 59, 18, 0.3);
}

.cb-faq-item[open] {
	border-color: rgba(255, 59, 18, 0.34);
	box-shadow: 0 14px 32px rgba(21, 18, 87, 0.06);
}

.cb-faq-item__summary {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	gap: 16px;
	align-items: center;
	min-height: 76px;
	padding: 17px 20px;
	color: var(--cb-primary);
	cursor: pointer;
	list-style: none;
}

.cb-faq-item__summary::-webkit-details-marker {
	display: none;
}

.cb-faq-item__summary::marker {
	display: none;
	content: "";
}

.cb-faq-item__summary:focus-visible {
	outline: 3px solid rgba(255, 59, 18, 0.3);
	outline-offset: -4px;
}

.cb-faq-item__number {
	display: grid;
	width: 38px;
	height: 38px;
	border-radius: 11px;
	background: rgba(21, 18, 87, 0.06);
	color: var(--cb-primary);
	font-size: 0.7rem;
	font-weight: 700;
	place-items: center;
	transition:
		background-color 0.2s ease,
		color 0.2s ease;
}

.cb-faq-item[open] .cb-faq-item__number {
	background: rgba(255, 59, 18, 0.11);
	color: var(--cb-accent);
}

.cb-faq-item__question {
	font-size: 0.94rem;
	font-weight: 600;
	line-height: 1.45;
}

/* Símbolo más/menos */

.cb-faq-item__toggle {
	position: relative;
	display: grid;
	width: 32px;
	height: 32px;
	border: 1px solid rgba(21, 18, 87, 0.11);
	border-radius: 50%;
	background: #f7f7f9;
	place-items: center;
}

.cb-faq-item__toggle::before,
.cb-faq-item__toggle::after {
	position: absolute;
	width: 12px;
	height: 2px;
	border-radius: 999px;
	background: var(--cb-primary);
	content: "";
	transition:
		background-color 0.2s ease,
		transform 0.2s ease;
}

.cb-faq-item__toggle::after {
	transform: rotate(90deg);
}

.cb-faq-item[open] .cb-faq-item__toggle {
	border-color: rgba(255, 59, 18, 0.25);
	background: rgba(255, 59, 18, 0.09);
}

.cb-faq-item[open] .cb-faq-item__toggle::before,
.cb-faq-item[open] .cb-faq-item__toggle::after {
	background: var(--cb-accent);
}

.cb-faq-item[open] .cb-faq-item__toggle::after {
	transform: rotate(90deg) scaleX(0);
}

/* Respuesta */

.cb-faq-item__answer {
	padding: 0 68px 22px 74px;
	border-top: 1px solid transparent;
}

.cb-faq-item[open] .cb-faq-item__answer {
	border-top-color: rgba(21, 18, 87, 0.07);
	padding-top: 18px;
}

.cb-faq-item__answer p {
	max-width: 720px;
	margin: 0;
	color: #606775;
	font-size: 0.86rem;
	line-height: 1.72;
}

/* Responsive */

@media (max-width: 980px) {
	.cb-faq__layout {
		grid-template-columns: 1fr;
	}

	.cb-faq__intro {
		position: static;
		max-width: 720px;
	}
}

@media (max-width: 620px) {
	.cb-faq {
		padding: 66px 0;
	}

	.cb-faq__layout {
		gap: 38px;
	}

	.cb-faq-item__summary {
		grid-template-columns: minmax(0, 1fr) auto;
		gap: 12px;
		min-height: 68px;
		padding: 16px 17px;
	}

	.cb-faq-item__number {
		display: none;
	}

	.cb-faq-item__question {
		font-size: 0.9rem;
	}

	.cb-faq-item__answer {
		padding: 0 54px 20px 17px;
	}

	.cb-faq-item[open] .cb-faq-item__answer {
		padding-top: 16px;
	}
}
/* Sección final: CTA */

.cb-final-cta {
	padding: clamp(64px, 7vw, 88px) 0;
	background: var(--cb-white);
}

.cb-final-cta__box {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 32px 56px;
	align-items: center;
	overflow: hidden;
	padding: clamp(38px, 5vw, 58px);
	border-radius: 28px;
	background:
		radial-gradient(
			circle at 92% 10%,
			rgba(255, 59, 18, 0.16),
			transparent 32%
		),
		linear-gradient(
			135deg,
			#10131c 0%,
			#151257 62%,
			#11143d 100%
		);
	box-shadow: 0 28px 65px rgba(21, 18, 87, 0.18);
}

.cb-final-cta__box::before {
	position: absolute;
	top: -190px;
	right: -120px;
	width: 420px;
	height: 420px;
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 50%;
	content: "";
}

.cb-final-cta__content,
.cb-final-cta__actions,
.cb-final-cta__details {
	position: relative;
	z-index: 1;
}

.cb-final-cta__content {
	max-width: 760px;
}

.cb-final-cta__eyebrow {
	margin: 0 0 12px;
	color: var(--cb-accent);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.cb-final-cta__title {
	margin: 0;
	color: var(--cb-white);
	font-size: clamp(2rem, 3.7vw, 3rem);
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1.12;
	text-wrap: balance;
}

.cb-final-cta__description {
	max-width: 710px;
	margin: 18px 0 0;
	color: #d0d3dc;
	font-size: 0.96rem;
	line-height: 1.72;
}

.cb-final-cta__actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
	min-width: 230px;
}

.cb-final-cta__button {
	display: inline-flex;
	gap: 10px;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 13px 21px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-size: 0.86rem;
	font-weight: 700;
	transition:
		background-color 0.2s ease,
		border-color 0.2s ease,
		color 0.2s ease,
		transform 0.2s ease;
}

.cb-final-cta__button:hover {
	transform: translateY(-2px);
}

.cb-final-cta__button span,
.cb-final-cta__button img,
.cb-final-cta__button svg {
	display: block;
	width: 20px;
	height: 20px;
}

.cb-final-cta__button svg {
	fill: none;
	stroke: currentcolor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.cb-final-cta__button--primary {
	background: var(--cb-accent);
	color: var(--cb-white);
	box-shadow: 0 14px 32px rgba(255, 59, 18, 0.24);
}

.cb-final-cta__button--primary:hover {
	background: var(--cb-accent-hover);
}

.cb-final-cta__button--secondary {
	border-color: rgba(255, 255, 255, 0.3);
	background: rgba(255, 255, 255, 0.08);
	color: var(--cb-white);
}

.cb-final-cta__button--secondary:hover {
	border-color: rgba(255, 255, 255, 0.65);
	background: rgba(255, 255, 255, 0.13);
}

.cb-final-cta__button:focus-visible {
	outline: 3px solid rgba(255, 255, 255, 0.75);
	outline-offset: 4px;
}

.cb-final-cta__details {
	grid-column: 1 / -1;
	display: flex;
	flex-wrap: wrap;
	gap: 12px 28px;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.cb-final-cta__details span {
	display: inline-flex;
	gap: 8px;
	align-items: center;
	color: #c8ccd6;
	font-size: 0.78rem;
	font-weight: 500;
}

.cb-final-cta__details svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: var(--cb-accent);
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

@media (max-width: 850px) {
	.cb-final-cta__box {
		grid-template-columns: 1fr;
	}

	.cb-final-cta__actions {
		flex-direction: row;
		min-width: 0;
	}

	.cb-final-cta__button {
		flex: 1;
	}
}

@media (max-width: 560px) {
	.cb-final-cta {
		padding: 56px 0;
	}

	.cb-final-cta__box {
		gap: 28px;
		padding: 32px 22px;
		border-radius: 22px;
	}

	.cb-final-cta__actions {
		flex-direction: column;
	}

	.cb-final-cta__button {
		width: 100%;
	}

	.cb-final-cta__details {
		display: grid;
		grid-template-columns: 1fr;
		gap: 13px;
	}
}
