.tab {
	display: none;
}

.tab.active-tab {
	display: block;
}

.tabs-nav {
	display: flex;
	align-items: center;
	gap: var(--gap--xs);
}

.tab-link {
	font-weight: 500;
	font-size: 16px;
	line-height: 100%;
	border: 2px solid #E5E7EB;
	border-radius: var(--radius--sm);

}

.tab-link.active-tab {
	border-color: var(--secondary);
}

:root {
	--table-header-color: #333;
	--table-cell-color: #666;
	--table-cell-background: #f0f0f0;
	--table-border-color: #ccc;
}


.row-group {
	display: flex;
	align-items: center;
}

.col-group {
	display: flex;
	flex-direction: column;
}

.hero-section {
	background-color: var(--gray);
	border-radius: 34px;
	padding: 8px;
}

.double-section {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 8px;
}

.hero-section__body {
	padding: 44px;
	border-radius: 28px;
	box-shadow: 0px 2px 4px 0px #00000014, 0px 0px 1px 0px #0000003D;
	background-color: var(--white);
}

.hero-section__badges {
	margin-bottom: 32px;
}

.badges {
	display: flex;
	gap: 8px;
	list-style: none;
	height: 32px;
	width: fit-content;
}

.badges--gradient {
	background:
		linear-gradient(var(--white), var(--white)) padding-box,
		linear-gradient(95.11deg,
			#05df72 -15.64%,
			#46ecd5 18.66%,
			#05df72 52.95%,
			#46ecd5 87.91%,
			#05df72 121.54%) border-box;

	border: 1.5px solid transparent;
	color: var(--success);
	padding: 2px 14px;
	border-radius: var(--radius--sm);

}

.badge {
	display: flex;
	align-items: center;
	color: inherit;
	font-weight: 500;
	font-size: var(--text--sm);
	line-height: 1;
	letter-spacing: -0.01em;
	flex-wrap: nowrap;
	gap: var(--gap--xs);
}

.badge .ico {
	--ico-size: 18px;
}

.badge:not(:last-child)::after {
	content: '';
	display: flex;
	width: 3px;
	height: 3px;
	min-width: 3;
	background-color: inherit;
	opacity: 0.4;
	border-radius: 360px;
	margin-left: 8px;
}

.hero-section__title {
	margin-bottom: 32px;
}

.hero-section__title-highlight {
	color: var(--secondary);
}

.hero-section__subtitle {
	font-weight: 400;
	font-size: var(--text--lg);
	line-height: 28px;
	letter-spacing: -1%;
	color: var(--muted);
	margin-bottom: 32px;
	max-width: 550px;
}

.hero-section__actions {
	display: flex;
	align-items: center;
	gap: var(--gap--xs);
	margin-bottom: 46px;
}

.stats {
	display: flex;
	gap: 8px;
	align-items: stretch;
}

.stats.stats--grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.stat {
	background-color: var(--gray);
	border-radius: var(--radius--md);
	padding: 18px;
	flex: 1;
}

.stat-icon {
	width: 84px;
	height: 36px;
}

.stats .stat-icon {
	margin-bottom: 20px;
}

.stat--highlight {
	background-color: var(--white);
}


.stat-label {
	font-weight: 600;
	font-size: var(--text--xl);
	line-height: 100%;
	letter-spacing: -1%;
	margin-bottom: 12px;
}

.stat-desc {
	font-weight: 400;
	font-size: var(--text--lg);
	line-height: 28px;
	letter-spacing: -1%;
	color: var(--muted);
}

.hero-section__image {
	overflow: hidden;
	border-radius: 28px;
}

.hero-section__image img {
	width: 100%;
	height: 100%;
}

.tabs-section {
	padding-top: 100px;
	padding-bottom: 100px;
}

.tabs-section-tabs {
	border: 2px solid #F3F4F6;
	padding: 8px;
	border-radius: var(--radius--xl);
	margin-top: 40px;
}

.heading-block {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.heading-block__description {
	font-weight: 400;
	font-size: 18px;
	line-height: 30px;
	color: var(--muted);
}

.stat-row {
	display: flex;
	gap: var(--gap--xs);
}

.stat-grid .stat-row:not(:last-child) {
	border-bottom: 1px solid var(--border-color);
	padding-bottom: 16px;
	margin-bottom: 16px;
}

.stat-col {
	display: flex;
	flex-direction: column;
	gap: var(--gap--xs);
	text-align: start;
	flex: 1;
}

.stat-col__label {
	font-weight: 400;
	font-size: 13px;
	line-height: 20px;
	color: var(--muted);
}

.stat-col__value {
	font-weight: 500;
	font-size: 15px;
	line-height: 20px;
	letter-spacing: -1px;
}

.top-cars-section__chart {
	overflow: hidden;
	padding: 26px;
}

.products-section {
	padding-top: 100px;
	padding-bottom: 100px;
	background-color: #162456;
	position: relative;
	background-position: bottom;
	background-repeat: no-repeat;
	background-size: 100% 50%;
}


.products-section .heading-block {
	color: var(--white);
}

.products-section .heading-block__description {
	color: #8EC5FF;
}

.swiper {
	width: 100%;
	height: 100%;
}

.swiper-slide {
	display: flex;
	justify-content: center;
	align-items: center;
	height: auto;
}

.swiper-nav-buttons {
	display: flex;
	align-items: center;
	gap: 12px;
}

.swiper-custom-button {
	background-color: #1C398E;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 360px;
	color: var(--white);
	position: static;
	cursor: pointer;

}

.product-swiper-section .product-swiper {
	margin-top: 40px;
	overflow: visible;
}

.card-product {
	padding: 32px;
	border-radius: var(--radius--xl);
	background-color: var(--white);
	box-shadow: 0px 2px 4px 0px #00000014, 0px 0px 1px 0px #0000003D;
	height: 100%;
}

.card-product__icon {
	border: 1px solid var(--border-color);
	width: 52px;
	height: 52px;
	min-width: 52px;
	border-radius: var(--radius--sm);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #0161EF;
	margin-bottom: 26px;

}

.card-product__icon .ico {
	--ico-size: 24px;
}

.card-product__title {
	font-family: DM Sans;
	font-weight: 600;
	font-style: SemiBold;
	font-size: 22px;
	line-height: 100%;
	letter-spacing: -1%;
	vertical-align: middle;
	margin-bottom: 12px;

}

.card-product__description {
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
	color: var(--muted);

}

.check-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.card-product__list {
	margin-top: 32px;
}

.check-list li {
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: -1%;
	list-style-position: inside;
	list-style-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.06023 9.00009L7.58864 12.5285L14.6455 5.47168' stroke='%230161EF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.tabs-nav-row {
	display: flex;
	align-items: flex-end;
	gap: var(--gap--sm);
	justify-content: space-between;
}

.table-wrapper {
	box-shadow: 0px 8px 16px -8px #00000033, 0px 13px 27px -5px #32325D0F;
	width: 100%;
	overflow-x: auto;
	border-radius: var(--radius--xl);
}

.table {
	width: 100%;
	border-collapse: collapse;
	border: 1px solid var(--border-color);
}

.table th,
.table td {
	border: 1px solid var(--border-color);
	height: 60px;
	padding: 8px 24px;
	color: var(--muted);
	text-align: left;
	vertical-align: middle;
	font-family: "DM Sans", sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 20px;
	letter-spacing: -0.01em;
	min-width: 245px;
}

.table td:first-child {
	background-color: #F5F5F5;
	font-weight: 500;
	font-style: medium;
	font-size: 15px;
	line-height: 20px;
	letter-spacing: -0.01em;
	color: var(--defaultTextColor);
	padding: 8px 18px;
}

.table td:not(:first-child) {
	text-align: center;
}

.table th:first-child {
	background-color: #F5F5F5;
	font-weight: 600;
	font-size: 18px;
	line-height: 20px;
	letter-spacing: -0.01em;
	color: var(--defaultTextColor);
	padding: 8px 18px;
}

.table th {
	background: #fff;
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
	font-size: 15px;
	line-height: 20px;
	letter-spacing: -0.01em;
	color: var(--muted);
}

.table th:not(:first-child) {
	text-align: center;
	vertical-align: middle;
}

.table th:not(:first-child)>* {
	height: 28px;
}

.compare-section {
	margin-top: 100px;
}

.compare-section .table-wrapper {
	margin-top: 40px;
}

.checked-item {
	display: flex;
	align-items: center;
	gap: 14px;
}

.checked-item::before {
	display: flex;
	width: 18px;
	height: 18px;
	min-width: 18px;
	content: '';
	background: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.06023 9.00009L7.58864 12.5285L14.6455 5.47168' stroke='%230161EF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
	background-repeat: no-repeat;
	background-size: 100%;
}

.pricing-section {
	padding-top: 100px;
}

.pricing-section .heading-block {
	margin-bottom: 40px;
}

.pricing-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--gap--xs);
	margin-top: 24px;
}

.pricing-card {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 36px;
	padding: 32px;
	border-radius: var(--radius--lg);
	border: 1px solid var(--border-color);
	box-shadow: 0px 8px 16px -8px #00000033, 0px 13px 27px -5px #32325D0F;
	margin-top: 30px;
	background-color: var(--white);
}

.pricing-card--highlight {
	margin: 30px 4px 4px 4px;
}

.pricing-card--highlight::before {
	position: absolute;
	top: -30px;
	left: -4px;
	right: -4px;
	bottom: -4px;
	content: attr(data-label);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	text-align: center;
	padding-top: 5px;
	border-radius: var(--radius--xl);
	background: linear-gradient(180deg, #FFC804 0%, #FFF085 100%);
	z-index: -1;
	font-weight: 500;
	font-style: Medium;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: -1%;
	text-align: center;
	color: #695200;
}

.pricing-card__title {
	font-weight: 600;
	font-size: 22px;
	line-height: 100%;
	letter-spacing: -1%;
	vertical-align: middle;

}

.pricing-card__description {
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
	color: var(--muted);
}

.pricing-card__value {
	font-weight: 600;
	font-size: 40px;
	line-height: 100%;
	vertical-align: middle;
}

.pricing-card__sub-value {
	font-weight: 500;
	font-size: 15px;
	line-height: 20px;
}

.pricing-card__action {
	margin-top: auto;
}

.faq-section {
	padding-top: 100px;
	padding-bottom: 100px;
}

.faq-section__row {
	display: flex;
	justify-content: space-between;
	gap: var(--gap--lg);
}

.faq-section__heading {
	max-width: 250px;
}

.accordion-group {
	display: flex;
	flex-direction: column;
	gap: var(--gap--md);
	flex: auto;
}

.accordion {
	padding: 26px;
	background-color: #F5F5F5;
	box-shadow: 0px 2px 4px 0px #00000014, 0px 0px 1px 0px #0000003D;
	border: 1px solid var(--border-color);
	border-radius: var(--radius--lg);
	cursor: pointer;
	width: 100%;

}

.accordion.active {
	background-color: var(--white);
}
.accordion.active .open-hide {
	display: none;
}

.accordion__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-weight: 500;
	font-size: 22px;
	line-height: 100%;
}

.accordion__body {
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
	color: var(--muted);
	padding-top: 16px;
}