/* ============================================================
   BIODRY BENEFITS SECTION — Biodry Core plugin
   Namespace: .biodry-benefits
   ============================================================ */

.biodry-benefits {
	--bd-red: #FF2D2D;
	--bd-red-dark: #e51d1d;
	--bd-ink: #101820;
	--bd-muted: #667085;
	--bd-border: rgba(16, 24, 32, .08);
	--bd-card: #ffffff;
	--bd-green: #34c879;
	--bd-ease: cubic-bezier(.22, 1, .36, 1);

	position: relative;
	overflow: hidden;
	padding: clamp(50px, 8vw, 50px) 20px;
	background: transparent;
	isolation: isolate;
}

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

/* Vypnuté dekoratívne pozadie sekcie */
.biodry-benefits::before,
.biodry-benefits::after {
	display: none;
}

.biodry-benefits__inner {
	width: min(1200px, 100%);
	margin: 0 auto;
}

/* HEADER */
.biodry-benefits__header {
	max-width: 760px;
	margin: 0 auto clamp(44px, 5vw, 70px);
	text-align: center;
}

.biodry-benefits__eyebrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	margin-bottom: 18px;
	color: var(--bd-muted);
	font-size: 13px;
	font-weight: 900;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.biodry-benefits__eyebrow i {
	display: block;
	width: 32px;
	height: 2px;
	background: var(--bd-red);
	border-radius: 999px;
}

.biodry-benefits__title {
	margin: 0 0 18px;
	color: var(--bd-ink);
	font-size: clamp(34px, 4.2vw, 54px);
	line-height: 1.08;
	font-weight: 900;
	letter-spacing: -0.035em;
}

.biodry-benefits__lead {
	max-width: 690px;
	margin: 0 auto;
	color: var(--bd-muted);
	font-size: 17px;
	line-height: 1.72;
}

/* GRID */
.biodry-benefits__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 26px;
}

/* CARD */
.biodry-benefit-card {
	position: relative;
	min-height: 330px;
	padding: 38px 34px 34px;
	background: rgba(255, 255, 255, .92);
	border: 1px solid var(--bd-border);
	border-radius: 28px;
	box-shadow:
		0 24px 70px rgba(16, 24, 32, .075),
		inset 0 1px 0 rgba(255,255,255,.95);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	overflow: hidden;
	opacity: 0;
	transform: translateY(26px);
	transition:
		opacity .72s ease,
		transform .72s var(--bd-ease),
		border-color .34s ease,
		box-shadow .34s ease,
		background .34s ease;
}

.biodry-benefit-card.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.biodry-benefit-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 25% 10%, rgba(255,45,45,.09), transparent 30%),
		linear-gradient(135deg, rgba(255,45,45,.025), transparent 52%);
	opacity: 0;
	transition: opacity .34s ease;
	pointer-events: none;
}

.biodry-benefit-card::after {
	content: "";
	position: absolute;
	left: 34px;
	right: 34px;
	bottom: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--bd-red), #ff6b6b);
	border-radius: 999px 999px 0 0;
	transform: scaleX(.22);
	transform-origin: left;
	transition: transform .42s var(--bd-ease);
}

.biodry-benefit-card:hover {
	transform: translateY(-8px);
	background: rgba(255, 255, 255, .98);
	border-color: rgba(255,45,45,.18);
	box-shadow:
		0 34px 90px rgba(16, 24, 32, .11),
		0 20px 44px rgba(255,45,45,.08);
}

.biodry-benefit-card:hover::before {
	opacity: 1;
}

.biodry-benefit-card:hover::after {
	transform: scaleX(1);
}

/* ICON */
.biodry-benefit-card__icon {
	position: relative;
	z-index: 2;
	width: 88px;
	height: 88px;
	margin-bottom: 30px;
	display: grid;
	place-items: center;
	border-radius: 24px;
	background: #ffffff;
	box-shadow:
		0 18px 42px rgba(16,24,32,.08),
		inset 0 0 0 1px rgba(16,24,32,.06);
	transition:
		transform .42s var(--bd-ease),
		box-shadow .34s ease;
}

.biodry-benefit-card__icon svg {
	width: 48px;
	height: 48px;
	display: block;
}

.biodry-benefit-card__icon--red {
	color: var(--bd-red);
}

.biodry-benefit-card__icon--green {
	color: var(--bd-green);
}

.biodry-benefit-card:hover .biodry-benefit-card__icon {
	transform: translateY(-4px) scale(1.06) rotate(-1.5deg);
	box-shadow:
		0 24px 58px rgba(16,24,32,.12),
		inset 0 0 0 1px rgba(255,45,45,.16);
}

/* CONTENT */
.biodry-benefit-card__content {
	position: relative;
	z-index: 2;
}

.biodry-benefit-card__content h3 {
	margin: 0 0 16px;
	color: var(--bd-ink);
	font-size: 24px;
	line-height: 1.18;
	font-weight: 900;
	letter-spacing: -0.02em;
}

.biodry-benefit-card__content p {
	margin: 0;
	color: var(--bd-muted);
	font-size: 16px;
	line-height: 1.75;
}

/* NUMBER */
.biodry-benefit-card__number {
	position: absolute;
	right: 28px;
	top: 28px;
	z-index: 1;
	color: rgba(16, 24, 32, .045);
	font-size: 72px;
	line-height: 1;
	font-weight: 900;
	letter-spacing: -0.06em;
	transition:
		color .34s ease,
		transform .42s var(--bd-ease);
}

.biodry-benefit-card:hover .biodry-benefit-card__number {
	color: rgba(255,45,45,.09);
	transform: translateY(-4px);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
	.biodry-benefits__grid {
		gap: 20px;
	}

	.biodry-benefit-card {
		padding: 32px 28px;
		min-height: 320px;
	}

	.biodry-benefit-card__content h3 {
		font-size: 22px;
	}
}

@media (max-width: 820px) {
	.biodry-benefits__header {
		text-align: left;
		margin-left: 0;
	}

	.biodry-benefits__header p {
		margin-left: 0;
	}

	.biodry-benefits__grid {
		grid-template-columns: 1fr;
	}

	.biodry-benefit-card {
		min-height: auto;
	}
}

@media (max-width: 560px) {
	.biodry-benefits {
		padding: 64px 16px;
	}

	.biodry-benefits__eyebrow {
		justify-content: flex-start;
		font-size: 11px;
		letter-spacing: .1em;
	}

	.biodry-benefits__eyebrow i {
		width: 24px;
	}

	.biodry-benefits__title {
		font-size: 34px;
	}

	.biodry-benefits__lead {
		font-size: 15px;
	}

	.biodry-benefit-card {
		border-radius: 22px;
		padding: 28px 24px 30px;
	}

	.biodry-benefit-card__icon {
		width: 78px;
		height: 78px;
		border-radius: 20px;
		margin-bottom: 24px;
	}

	.biodry-benefit-card__icon svg {
		width: 42px;
		height: 42px;
	}

	.biodry-benefit-card__content h3 {
		font-size: 21px;
	}

	.biodry-benefit-card__content p {
		font-size: 15px;
	}

	.biodry-benefit-card__number {
		font-size: 56px;
		right: 22px;
		top: 22px;
	}
}

/* NO ANIMATIONS */
@media (prefers-reduced-motion: reduce) {
	.biodry-benefits *,
	.biodry-benefits *::before,
	.biodry-benefits *::after {
		animation: none !important;
		transition-duration: .01ms !important;
	}

	.biodry-benefit-card {
		opacity: 1 !important;
		transform: none !important;
	}
}

/* Class-based no animation */
.biodry-benefits--no-anim .biodry-benefit-card {
	opacity: 1 !important;
	transform: none !important;
}

.biodry-benefits--no-anim .biodry-benefits *,
.biodry-benefits--no-anim .biodry-benefits *::before,
.biodry-benefits--no-anim .biodry-benefits *::after {
	animation: none !important;
	transition-duration: .01ms !important;
}
