/**
 * Bullet Cards Block Styles
 */

.bullet-cards-block {
	position: relative;
	background-color: var(--bullet-bg, #20a6a9);
	padding: 80px 0 120px;
	margin-top: 0;
	overflow: visible;
	z-index: 40;
	color: var(--bullet-text, #ffffff);
}

.bullet-cards__top-curve {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 120px;
	pointer-events: none;
	z-index: 1;
	transform: translateY(-100%);
}

.bullet-cards__top-curve svg {
	width: 100%;
	height: auto;
	display: block;
}

.bullet-cards__top-curve path {
	fill: var(--bullet-bg, #20a6a9);
}

.bullet-cards__container {
	position: relative;
	z-index: 2;
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
	padding: 0 1.5rem;
}

.bullet-cards__title {
	font-size: clamp(2.25rem, 5vw, 3.5rem);
	line-height: 1.2;
	text-align: center;
	margin: 0 auto 2em;
	font-weight: 500;
	max-width: 900px;
	color: var(--bullet-text, #ffffff);
}

.bullet-cards__intro {
	font-size: 18px;
	line-height: 1.6;
	text-align: center;
	max-width: 911px;
	margin: 0 auto 60px;
	color: var(--bullet-text, #ffffff);
}

.bullet-cards__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 40px 60px;
	margin-bottom: 80px;
}

.bullet-cards__grid--four {
	grid-template-columns: repeat(2, minmax(320px, 1fr));
	justify-content: center;
	gap: 40px 60px;
}

.bullet-card {
	text-align: left;
	color: var(--bullet-text, #ffffff);
	opacity: 0;
	transform: translateY(40px);
}

.bullet-card__icon {
	width: 88px;
	height: 88px;
	background-color: #f8f8f5;
	border-radius: 12px;
	padding: 18px;
	margin: 0 0 24px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.bullet-card__icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.bullet-card__title {
	font-size: clamp(1.25rem, 2vw, 1.5rem);
	font-weight: 500;
	line-height: 1.3;
	color: inherit;
	margin: 0 0 12px;
	text-align: left;
}

.bullet-card__content {
	font-size: clamp(0.95rem, 1.5vw, 1.0625rem);
	line-height: 1.6;
	color: inherit;
	margin: 0;
	opacity: 0.95;
	text-align: left;
}

.bullet-cards__button-wrapper {
	margin-top: 40px;
}

.bullet-cards-block .bullet-cards__button-wrapper.btn-group {
	display: flex;
	grid-column-gap: 3em;
	grid-row-gap: 3em;
	justify-content: center;
	font-size: 2em;
}

.bullet-cards-block .bullet-cards__button-wrapper .btn-bubble-arrow {
	transform: scale(0.5);
}

/* Bubble Button Styles */
.bubble-button {
	display: inline-flex;
	align-items: center;
	gap: 16px;
	background-color: var(--button-bg, #43308a);
	color: var(--button-text, #ffffff);
	padding: 14px 24px 14px 32px;
	border-radius: 50px;
	text-decoration: none;
	font-size: 1rem;
	font-weight: 600;
	transition: transform 0.3s ease;
	cursor: pointer;
}

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

.bubble-button__text {
	color: var(--button-text, #ffffff);
}

.bubble-button__arrow {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background-color: var(--arrow-bg, #f7f7f2);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: transform 0.3s ease;
	color: var(--arrow-color, #0b0b0b);
}

.bubble-button:hover .bubble-button__arrow {
	transform: translateX(4px);
}

.bubble-button__arrow svg {
	width: 20px;
	height: 20px;
}

/* Responsive */
@media (max-width: 768px) {
	.bullet-cards-block {
		padding: 60px 0 100px;
	}

	.bullet-cards__container {
		padding-top: 20px;
	}

	.bullet-cards__title {
		margin-bottom: 40px;
	}

	.bullet-cards__grid {
		grid-template-columns: repeat(1, minmax(0, 1fr));
		gap: 40px;
		margin-bottom: 60px;
	}

	.bullet-card__icon {
		width: 72px;
		height: 72px;
		padding: 14px;
		margin-bottom: 20px;
	}
}

@media (max-width: 480px) {
	.bullet-cards-block {
		padding: 40px 0 80px;
		margin-top: -10%;
	}

	.bullet-cards__container {
		padding-top: 40px;
	}

	.bullet-cards__grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.bubble-button {
		padding: 12px 20px 12px 28px;
		font-size: 0.9375rem;
	}

	.bubble-button__arrow {
		width: 42px;
		height: 42px;
	}
}
