/* Base */
.why-trust {
	width: 100%;
	max-width: none;
}

.why-trust__intro {
	margin-bottom: 32px;
	text-align: center;
}

.why-trust__title {
	font-family: var(--font-heading, 'Bebas Neue', sans-serif);
	font-size: clamp(2rem, 4vw, 2.75rem);
	font-weight: 400;
	line-height: 1.1;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--accent-color, #08203c);
	margin: 0 0 16px;
}

.why-trust__description {
	font-family: var(--font-body, 'Open Sans', sans-serif);
	font-size: 1rem;
	line-height: 1.6;
	color: var(--text-dark, #000);
	margin: 0;
	width: auto;
	max-width: none;
	padding-left: 0;
	padding-right: 0;
}

.why-trust__items {
	display: grid;
	gap: 1.5rem;
	margin-bottom: 32px;
}

.why-trust__items--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.why-trust__items--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.why-trust__items--5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.why-trust__items--6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }

.why-trust__item {
	display: flex;
	flex-direction: column;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.why-trust__item-image {
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.why-trust__item-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.why-trust__item-placeholder {
	width: 100%;
	height: 100%;
}

.why-trust__item-title {
	font-family: var(--font-heading, 'Bebas Neue', sans-serif);
	line-height: 1.15;
	letter-spacing: 0.03em;
}

.why-trust__item-text {
	font-family: var(--font-body, 'Open Sans', sans-serif);
	line-height: 1.6;
	margin: 0;
}

.why-trust__cta-wrap {
	text-align: center;
}

.why-trust__cta {
	display: inline-block;
	text-decoration: none;
	transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

/* Theme 1 - Elevated cards */
.why-trust--theme-1 .why-trust__item {
	text-align: center;
	align-items: center;
	padding: 1.75rem 1.25rem;
	background: var(--text-light, #fff);
	border-radius: 12px;
	border: 1px solid rgba(8, 32, 60, 0.1);
}

.why-trust--theme-1 .why-trust__item:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 32px rgba(8, 32, 60, 0.1);
	border-color: var(--primary-color, #d59a2b);
}

.why-trust--theme-1 .why-trust__item-image {
	width: 80px;
	height: 80px;
	margin-bottom: 1rem;
	border-radius: 50%;
	background-color: rgba(213, 154, 43, 0.12);
	padding: 10px;
}

.why-trust--theme-1 .why-trust__item:hover .why-trust__item-image {
	background-color: var(--primary-color, #d59a2b);
	transform: scale(1.05);
}

.why-trust--theme-1 .why-trust__item-placeholder {
	border-radius: 50%;
	background: var(--accent-color, #08203c);
	opacity: 0.15;
}

.why-trust--theme-1 .why-trust__item-title {
	font-size: 1.35rem;
	color: var(--accent-color, #08203c);
	margin-bottom: 0.5rem;
}

.why-trust--theme-1 .why-trust__item-text {
	font-size: 0.95rem;
	color: var(--text-dark, #000);
}

.why-trust--theme-1 .why-trust__cta {
	padding: 10px 24px;
	border-radius: 30px;
	background-color: var(--primary-color, #d59a2b);
	color: var(--text-dark, #000);
	font-family: var(--font-heading, 'Bebas Neue', sans-serif);
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.why-trust--theme-1 .why-trust__cta:hover {
	background-color: var(--primary-dark, #b88424);
}

/* Theme 2 - Accent columns */
.why-trust--theme-2 .why-trust__intro {
	text-align: left;
}

.why-trust--theme-2 .why-trust__items {
	gap: 1rem;
}

.why-trust--theme-2 .why-trust__item {
	text-align: left;
	align-items: flex-start;
	padding: 1.5rem 1.25rem 1.25rem;
	background: #f8f9fb;
	border-radius: 0;
	border: 1px solid rgba(8, 32, 60, 0.08);
	border-top: 4px solid var(--primary-color, #d59a2b);
}

.why-trust--theme-2 .why-trust__item:hover {
	background: #fff;
	box-shadow: 0 8px 24px rgba(8, 32, 60, 0.08);
}

.why-trust--theme-2 .why-trust__item-image {
	width: 56px;
	height: 56px;
	margin-bottom: 1rem;
	border-radius: 8px;
	background: var(--text-light, #fff);
	padding: 8px;
	border: 1px solid rgba(8, 32, 60, 0.08);
}

.why-trust--theme-2 .why-trust__item-placeholder {
	border-radius: 6px;
	background: var(--accent-color, #08203c);
	opacity: 0.12;
}

.why-trust--theme-2 .why-trust__item-title {
	font-size: 1.2rem;
	color: var(--accent-color, #08203c);
	margin-bottom: 0.4rem;
}

.why-trust--theme-2 .why-trust__item-text {
	font-size: 0.9rem;
	color: rgba(0, 0, 0, 0.72);
}

.why-trust--theme-2 .why-trust__cta-wrap {
	text-align: left;
}

.why-trust--theme-2 .why-trust__cta {
	padding: 12px 28px;
	border-radius: 4px;
	background-color: var(--accent-color, #08203c);
	color: var(--text-light, #fff);
	font-family: var(--font-heading, 'Bebas Neue', sans-serif);
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.why-trust--theme-2 .why-trust__cta:hover {
	background-color: var(--primary-color, #d59a2b);
	color: var(--text-dark, #000);
}

/* Theme 3 - Horizontal panels (light) */
.why-trust--theme-3 {
	padding: 2rem;
	border-radius: 16px;
}

.why-trust--theme-3 .why-trust__intro {
	text-align: left;
}

.why-trust--theme-3 .why-trust__items {
	gap: 1rem;
}

.why-trust--theme-3 .why-trust__item {
	display: grid;
	grid-template-columns: 72px 1fr;
	grid-template-rows: auto auto;
	column-gap: 1rem;
	row-gap: 0.25rem;
	align-items: start;
	text-align: left;
	padding: 1.25rem 1.35rem;
	background: var(--text-light, #fff);
	border-radius: 14px;
	border: 1px solid rgba(213, 154, 43, 0.22);
	box-shadow: 0 4px 16px rgba(8, 32, 60, 0.05);
}

.why-trust--theme-3 .why-trust__item:hover {
	border-color: var(--primary-color, #d59a2b);
	box-shadow: 0 10px 28px rgba(213, 154, 43, 0.15);
	transform: translateX(4px);
}

.why-trust--theme-3 .why-trust__item-image {
	grid-row: 1 / 3;
	align-self: center;
	width: 72px;
	height: 72px;
	margin-bottom: 0;
	border-radius: 12px;
	background: rgba(213, 154, 43, 0.14);
	padding: 10px;
}

.why-trust--theme-3 .why-trust__item-placeholder {
	border-radius: 10px;
	background: var(--primary-color, #d59a2b);
	opacity: 0.25;
}

.why-trust--theme-3 .why-trust__item-title {
	grid-column: 2;
	font-size: 1.2rem;
	color: var(--accent-color, #08203c);
	margin: 0;
}

.why-trust--theme-3 .why-trust__item-text {
	grid-column: 2;
	font-size: 0.9rem;
	color: rgba(0, 0, 0, 0.72);
}

.why-trust--theme-3 .why-trust__cta {
	padding: 10px 26px;
	border-radius: 8px;
	background-color: var(--primary-color, #d59a2b);
	color: var(--text-dark, #000);
	font-family: var(--font-heading, 'Bebas Neue', sans-serif);
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	box-shadow: 0 4px 0 var(--primary-dark, #b88424);
}

.why-trust--theme-3 .why-trust__cta:hover {
	background-color: var(--accent-color, #08203c);
	color: var(--text-light, #fff);
	box-shadow: 0 6px 0 #061528;
}

/* Theme 4 - Linear minimal */
.why-trust--theme-4 .why-trust__intro {
	text-align: left;
	margin-bottom: 24px;
}

.why-trust--theme-4 .why-trust__title {
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	text-transform: none;
	letter-spacing: 0.02em;
	border-bottom: 2px solid var(--primary-color, #d59a2b);
	padding-bottom: 12px;
	display: inline-block;
}

.why-trust--theme-4 .why-trust__description {
	font-size: 0.95rem;
}

.why-trust--theme-4 .why-trust__items {
	gap: 0;
	border-top: 1px solid rgba(8, 32, 60, 0.12);
	border-bottom: 1px solid rgba(8, 32, 60, 0.12);
}

.why-trust--theme-4 .why-trust__item {
	text-align: left;
	align-items: flex-start;
	padding: 1.5rem 1.25rem;
	background: transparent;
	border-radius: 0;
	border: none;
	border-right: 1px solid rgba(8, 32, 60, 0.12);
}

.why-trust--theme-4 .why-trust__item:last-child {
	border-right: none;
}

.why-trust--theme-4 .why-trust__item-image {
	width: 40px;
	height: 40px;
	margin-bottom: 0.75rem;
	border-radius: 0;
	background: transparent;
	padding: 0;
}

.why-trust--theme-4 .why-trust__item-placeholder {
	border-radius: 0;
	background: var(--primary-color, #d59a2b);
	opacity: 0.5;
	height: 3px;
}

.why-trust--theme-4 .why-trust__item-title {
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--accent-color, #08203c);
	margin-bottom: 0.35rem;
}

.why-trust--theme-4 .why-trust__item-text {
	font-size: 0.88rem;
	color: rgba(0, 0, 0, 0.7);
}

.why-trust--theme-4 .why-trust__cta-wrap {
	text-align: left;
}

.why-trust--theme-4 .why-trust__cta {
	padding: 0;
	border-radius: 0;
	background: transparent;
	color: var(--accent-color, #08203c);
	font-family: var(--font-body, 'Open Sans', sans-serif);
	font-size: 0.95rem;
	font-weight: 700;
	text-transform: none;
	letter-spacing: 0;
	border-bottom: 2px solid var(--primary-color, #d59a2b);
}

.why-trust--theme-4 .why-trust__cta:hover {
	color: var(--primary-color, #d59a2b);
	background: transparent;
}

/* Theme 5 - Top banner */
.why-trust--theme-5 .why-trust__intro {
	margin-bottom: 28px;
}

.why-trust--theme-5 .why-trust__items {
	gap: 1.25rem;
}

.why-trust--theme-5 .why-trust__item {
	text-align: left;
	align-items: stretch;
	padding: 0;
	background: var(--text-light, #fff);
	border-radius: 10px;
	border: none;
	overflow: hidden;
	box-shadow: 0 10px 28px rgba(8, 32, 60, 0.08);
}

.why-trust--theme-5 .why-trust__item:hover {
	transform: translateY(-5px);
	box-shadow: 0 18px 36px rgba(8, 32, 60, 0.14);
}

.why-trust--theme-5 .why-trust__item-image {
	width: 100%;
	height: 130px;
	margin-bottom: 0;
	border-radius: 0;
	background: linear-gradient(135deg, rgba(8, 32, 60, 0.08), rgba(213, 154, 43, 0.15));
	padding: 0;
}

.why-trust--theme-5 .why-trust__item-image img {
	object-fit: cover;
}

.why-trust--theme-5 .why-trust__item-placeholder {
	border-radius: 0;
	background: linear-gradient(135deg, var(--accent-color, #08203c), var(--primary-color, #d59a2b));
	opacity: 0.25;
}

.why-trust--theme-5 .why-trust__item-title,
.why-trust--theme-5 .why-trust__item-text {
	padding-left: 1.1rem;
	padding-right: 1.1rem;
}

.why-trust--theme-5 .why-trust__item-title {
	font-size: 1.25rem;
	color: var(--accent-color, #08203c);
	margin-top: 1rem;
	margin-bottom: 0.4rem;
}

.why-trust--theme-5 .why-trust__item-text {
	font-size: 0.9rem;
	color: var(--text-dark, #000);
	padding-bottom: 1.15rem;
}

.why-trust--theme-5 .why-trust__cta {
	padding: 11px 26px;
	border-radius: 8px;
	background-color: var(--accent-color, #08203c);
	color: var(--text-light, #fff);
	font-family: var(--font-heading, 'Bebas Neue', sans-serif);
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.why-trust--theme-5 .why-trust__cta:hover {
	background-color: var(--primary-color, #d59a2b);
	color: var(--text-dark, #000);
}

/* Responsive */
@media (max-width: 1024px) {
	.why-trust__items--4,
	.why-trust__items--5,
	.why-trust__items--6 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.why-trust--theme-4 .why-trust__item {
		border-right: none;
		border-bottom: 1px solid rgba(8, 32, 60, 0.12);
	}

	.why-trust--theme-4 .why-trust__item:last-child {
		border-bottom: none;
	}
}

@media (max-width: 640px) {
	.why-trust__items--3,
	.why-trust__items--4,
	.why-trust__items--5,
	.why-trust__items--6 {
		grid-template-columns: 1fr;
	}

	.why-trust--theme-3 {
		padding: 1.5rem 1rem;
	}

	.why-trust--theme-3 .why-trust__item {
		grid-template-columns: 56px 1fr;
		padding: 1rem;
	}

	.why-trust--theme-3 .why-trust__item-image {
		width: 56px;
		height: 56px;
	}
}
