.wp-block-eticsoft-card:not( .has-background ) {
	--eticsoft-card-border: #d8dee8;
	--eticsoft-card-muted: #5d6778;
	--eticsoft-card-surface: #ffffff;
	--eticsoft-card-shadow: 0 16px 36px rgba( 15, 23, 42, 0.08 );
	background-color: var( --eticsoft-card-surface );
}

.wp-block-eticsoft-card:not( .has-text-color ) {
	color: #111827;
}

.wp-block-eticsoft-card {
	--eticsoft-card-border: #d8dee8;
	--eticsoft-card-muted: #5d6778;
	--eticsoft-card-shadow: 0 16px 36px rgba( 15, 23, 42, 0.08 );
	border: 1px solid var( --eticsoft-card-border );
	border-radius: 8px;
	box-shadow: var( --eticsoft-card-shadow );
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	max-width: 100%;
	overflow: hidden;
	overflow-wrap: anywhere;
	width: 100%;
}

.wp-block-eticsoft-card .eticsoft-card__header,
.wp-block-eticsoft-card .eticsoft-card__body,
.wp-block-eticsoft-card .eticsoft-card__footer {
	box-sizing: border-box;
	width: 100%;
}

.wp-block-eticsoft-card .eticsoft-card__header {
	border-bottom: 1px solid var( --eticsoft-card-border );
	font-size: clamp( 1rem, 0.96rem + 0.2vw, 1.125rem );
	font-weight: 700;
	line-height: 1.35;
	padding: clamp( 1rem, 0.82rem + 0.9vw, 1.5rem );
}

.wp-block-eticsoft-card .eticsoft-card__body {
	font-size: clamp( 0.95rem, 0.91rem + 0.2vw, 1.0625rem );
	line-height: 1.65;
	padding: clamp( 1rem, 0.78rem + 1.1vw, 1.75rem );
}

.wp-block-eticsoft-card .eticsoft-card__header > *,
.wp-block-eticsoft-card .eticsoft-card__body > * {
	margin-bottom: 1em;
	margin-top: 0;
}

.wp-block-eticsoft-card .eticsoft-card__header > :last-child,
.wp-block-eticsoft-card .eticsoft-card__body > :last-child {
	margin-bottom: 0;
}

.wp-block-eticsoft-card .eticsoft-card__footer {
	background: #f8fafc;
	border-top: 1px solid var( --eticsoft-card-border );
	color: var( --eticsoft-card-muted );
	font-size: clamp( 0.875rem, 0.84rem + 0.18vw, 1rem );
	line-height: 1.45;
	padding: clamp( 0.875rem, 0.74rem + 0.7vw, 1.25rem ) clamp( 1rem, 0.82rem + 0.9vw, 1.5rem );
}

.wp-block-eticsoft-card .eticsoft-card__footer > * {
	margin-bottom: 0.75em;
	margin-top: 0;
}

.wp-block-eticsoft-card .eticsoft-card__footer > :last-child {
	margin-bottom: 0;
}

.wp-block-eticsoft-card.has-no-footer .eticsoft-card__footer {
	display: none;
}

@media ( max-width: 600px ) {
	.wp-block-eticsoft-card {
		border-radius: 6px;
		box-shadow: 0 10px 24px rgba( 15, 23, 42, 0.07 );
	}
}

.wp-block-eticsoft-grid {
	--eticsoft-grid-columns: 12;
	--eticsoft-grid-column-gap: 24px;
	--eticsoft-grid-row-gap: 24px;
	--eticsoft-grid-tablet-columns: 6;
	--eticsoft-grid-mobile-columns: 1;
	align-items: stretch;
	box-sizing: border-box;
	display: grid;
	gap: var( --eticsoft-grid-row-gap ) var( --eticsoft-grid-column-gap );
	grid-template-columns: repeat( var( --eticsoft-grid-columns ), minmax( 0, 1fr ) );
	max-width: 100%;
	width: 100%;
}

.wp-block-eticsoft-grid.eticsoft-grid--align-start {
	align-items: start;
}

.wp-block-eticsoft-grid.eticsoft-grid--align-center {
	align-items: center;
}

.wp-block-eticsoft-grid.eticsoft-grid--align-end {
	align-items: end;
}

.wp-block-eticsoft-grid.eticsoft-grid--justify-start {
	justify-items: start;
}

.wp-block-eticsoft-grid.eticsoft-grid--justify-center {
	justify-items: center;
}

.wp-block-eticsoft-grid.eticsoft-grid--justify-end {
	justify-items: end;
}

.wp-block-eticsoft-grid.eticsoft-grid--justify-stretch {
	justify-items: stretch;
}

.wp-block-eticsoft-grid-column {
	--eticsoft-grid-column-span: 6;
	--eticsoft-grid-column-order: 0;
	box-sizing: border-box;
	grid-column: span var( --eticsoft-grid-column-span );
	min-width: 0;
	order: var( --eticsoft-grid-column-order );
	width: 100%;
}

.wp-block-eticsoft-grid-column > * {
	margin-top: 0;
}

.wp-block-eticsoft-grid-column > :last-child {
	margin-bottom: 0;
}

@media ( max-width: 1024px ) {
	.wp-block-eticsoft-grid {
		grid-template-columns: repeat( var( --eticsoft-grid-tablet-columns ), minmax( 0, 1fr ) );
	}

	.wp-block-eticsoft-grid-column {
		grid-column: span var( --eticsoft-grid-column-tablet-span, var( --eticsoft-grid-column-span ) );
		order: var( --eticsoft-grid-column-tablet-order, var( --eticsoft-grid-column-order ) );
	}
}

@media ( max-width: 600px ) {
	.wp-block-eticsoft-grid {
		grid-template-columns: repeat( var( --eticsoft-grid-mobile-columns ), minmax( 0, 1fr ) );
	}

	.wp-block-eticsoft-grid-column {
		grid-column: span var( --eticsoft-grid-column-mobile-span, 1 );
		order: var( --eticsoft-grid-column-mobile-order, var( --eticsoft-grid-column-tablet-order, var( --eticsoft-grid-column-order ) ) );
	}
}

.wp-block-eticsoft-logo-grid {
	--eticsoft-logo-grid-border: #dbe3ef;
	--eticsoft-logo-grid-columns: 5;
	--eticsoft-logo-grid-gap: 1px;
	--eticsoft-logo-grid-logo-height: 68px;
	--eticsoft-logo-grid-logo-width: 220px;
	--eticsoft-logo-grid-max-height: 220px;
	--eticsoft-logo-grid-min-height: 112px;
	background: transparent;
	box-sizing: border-box;
	display: grid;
	gap: 0;
	grid-template-columns: repeat( var( --eticsoft-logo-grid-columns ), minmax( 0, 1fr ) );
	max-width: 100%;
	overflow: hidden;
	width: 100%;
}

.wp-block-eticsoft-logo-grid .eticsoft-logo-grid__item {
	align-items: center;
	background: #ffffff;
	border-bottom: var( --eticsoft-logo-grid-gap ) solid var( --eticsoft-logo-grid-border );
	border-right: var( --eticsoft-logo-grid-gap ) solid var( --eticsoft-logo-grid-border );
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	max-height: max( var( --eticsoft-logo-grid-max-height ), var( --eticsoft-logo-grid-min-height ) );
	min-height: var( --eticsoft-logo-grid-min-height );
	min-width: 0;
	padding: clamp( 1rem, 0.8rem + 1vw, 1.625rem );
	text-align: center;
}

.wp-block-eticsoft-logo-grid .eticsoft-logo-grid__image {
	display: block;
	filter: grayscale( 1 );
	height: auto;
	max-height: min( var( --eticsoft-logo-grid-logo-height ), 100% );
	max-width: min( 100%, var( --eticsoft-logo-grid-logo-width ) );
	object-fit: contain;
	opacity: 0.78;
	width: auto;
}

.wp-block-eticsoft-logo-grid .eticsoft-logo-grid__text {
	color: #364152;
	display: block;
	font-size: clamp( 1.05rem, 0.76rem + 1.45vw, 2rem );
	font-weight: 700;
	line-height: 1.1;
	max-width: 100%;
	overflow-wrap: anywhere;
	text-transform: none;
}

.wp-block-eticsoft-logo-grid.is-mixed-widths .eticsoft-logo-grid__item:nth-child( 6n + 1 ),
.wp-block-eticsoft-logo-grid.is-mixed-widths .eticsoft-logo-grid__item:nth-child( 6n + 4 ) {
	grid-column: span 2;
}

.wp-block-eticsoft-logo-grid .eticsoft-logo-grid__item.is-desktop-row-end {
	border-right: 0;
}

.wp-block-eticsoft-logo-grid .eticsoft-logo-grid__item.is-desktop-last-row {
	border-bottom: 0;
}

@media ( max-width: 1024px ) {
	.wp-block-eticsoft-logo-grid {
		grid-template-columns: repeat( var( --eticsoft-logo-grid-tablet-columns, 3 ), minmax( 0, 1fr ) );
	}

	.wp-block-eticsoft-logo-grid .eticsoft-logo-grid__item {
		border-bottom: var( --eticsoft-logo-grid-gap ) solid var( --eticsoft-logo-grid-border );
		border-right: var( --eticsoft-logo-grid-gap ) solid var( --eticsoft-logo-grid-border );
	}

	.wp-block-eticsoft-logo-grid.is-mixed-widths .eticsoft-logo-grid__item:nth-child( 6n + 1 ),
	.wp-block-eticsoft-logo-grid.is-mixed-widths .eticsoft-logo-grid__item:nth-child( 6n + 4 ) {
		grid-column: span 2;
	}

	.wp-block-eticsoft-logo-grid .eticsoft-logo-grid__item.is-tablet-row-end {
		border-right: 0;
	}

	.wp-block-eticsoft-logo-grid .eticsoft-logo-grid__item.is-tablet-last-row {
		border-bottom: 0;
	}
}

@media ( max-width: 600px ) {
	.wp-block-eticsoft-logo-grid {
		grid-template-columns: repeat( var( --eticsoft-logo-grid-mobile-columns, 2 ), minmax( 0, 1fr ) );
	}

	.wp-block-eticsoft-logo-grid .eticsoft-logo-grid__item {
		border-bottom: var( --eticsoft-logo-grid-gap ) solid var( --eticsoft-logo-grid-border );
		border-right: var( --eticsoft-logo-grid-gap ) solid var( --eticsoft-logo-grid-border );
		min-height: max( 76px, calc( var( --eticsoft-logo-grid-min-height ) * 0.74 ) );
		padding: 1rem;
	}

	.wp-block-eticsoft-logo-grid.is-mixed-widths .eticsoft-logo-grid__item:nth-child( n ) {
		grid-column: span 1;
	}

	.wp-block-eticsoft-logo-grid .eticsoft-logo-grid__item.is-mobile-row-end {
		border-right: 0;
	}

	.wp-block-eticsoft-logo-grid .eticsoft-logo-grid__item.is-mobile-last-row {
		border-bottom: 0;
	}
}

/* ============================================================
   Trust Pills Block
   ============================================================ */
.eticsoft-trust-pills {
	--etp-cols-desktop: 5;
	--etp-cols-tablet: 4;
	--etp-cols-mobile: 2;
	--etp-gap: 16px;
	--etp-pill-w: 84px;
	--etp-pill-h: 92px;
	--etp-logo-w: 56px;
	--etp-logo-h: 56px;
	--etp-container-bg: #f3f4f6;
	--etp-pill-bg: #ffffff;
	--etp-title-color: #6b7280;
	--etp-radius: 32px;
	--etp-padding: 32px;

	background: var( --etp-container-bg );
	border-radius: var( --etp-radius );
	padding: var( --etp-padding );
	box-shadow: 0 10px 30px rgba( 0, 0, 0, 0.05 );
	box-sizing: border-box;
}

.eticsoft-trust-pills *,
.eticsoft-trust-pills *::before,
.eticsoft-trust-pills *::after {
	box-sizing: border-box;
}

.eticsoft-trust-pills__grid {
	display: grid;
	grid-template-columns: repeat( var( --etp-cols-desktop ), minmax( 0, 1fr ) );
	gap: var( --etp-gap );
	justify-items: center;
	align-items: start;
}

.eticsoft-trust-pills__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: inherit;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	max-width: 100%;
}

.eticsoft-trust-pills__pill {
	width: var( --etp-pill-w );
	height: var( --etp-pill-h );
	background: var( --etp-pill-bg );
	display: grid;
	place-items: center;
	box-shadow: 0 4px 12px rgba( 0, 0, 0, 0.06 );
	overflow: hidden;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.eticsoft-trust-pills.shape-pill .eticsoft-trust-pills__pill {
	border-radius: 999px;
}

.eticsoft-trust-pills.shape-rounded .eticsoft-trust-pills__pill {
	border-radius: 18px;
}

.eticsoft-trust-pills.shape-square .eticsoft-trust-pills__pill {
	border-radius: 6px;
}

.eticsoft-trust-pills__logo {
	max-width: var( --etp-logo-w );
	max-height: var( --etp-logo-h );
	width: auto;
	height: auto;
	object-fit: contain;
	display: block;
}

.eticsoft-trust-pills__title {
	font-size: 12px;
	font-weight: 500;
	color: var( --etp-title-color );
	text-align: center;
	line-height: 1.25;
	max-width: calc( var( --etp-pill-w ) + 24px );
	word-break: break-word;
}

.eticsoft-trust-pills.no-titles .eticsoft-trust-pills__title {
	display: none;
}

a.eticsoft-trust-pills__item:hover {
	transform: translateY( -2px );
}

a.eticsoft-trust-pills__item:hover .eticsoft-trust-pills__pill {
	box-shadow: 0 10px 22px rgba( 0, 0, 0, 0.1 );
}

a.eticsoft-trust-pills__item:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 4px;
	border-radius: 8px;
}

@media ( max-width: 1024px ) {
	.eticsoft-trust-pills__grid {
		grid-template-columns: repeat( var( --etp-cols-tablet ), minmax( 0, 1fr ) );
	}
}

@media ( max-width: 640px ) {
	.eticsoft-trust-pills {
		padding: calc( var( --etp-padding ) * 0.6 );
		border-radius: calc( var( --etp-radius ) * 0.75 );
	}

	.eticsoft-trust-pills__grid {
		grid-template-columns: repeat( var( --etp-cols-mobile ), minmax( 0, 1fr ) );
	}
}

/* ============================================================
   Testimonials Block
   ============================================================ */
.eticsoft-testimonials {
	--ett-cols-desktop: 4;
	--ett-cols-tablet: 2;
	--ett-cols-mobile: 1;
	--ett-gap: 16px;
	--ett-radius: 18px;
	--ett-padding: 20px;
	--ett-image-h: 240px;
	--ett-card-bg: #f3f4f6;
	--ett-quote-color: #111827;
	--ett-name-color: #111827;
	--ett-role-color: #6b7280;
	--ett-section-bg: transparent;
	--ett-heading-color: #111827;
	--ett-description-color: #4b5563;
	--ett-button-bg: #ffffff;
	--ett-button-color: #111827;
	--ett-button-border: #e5e7eb;
	--ett-arrow-bg: #ffffff;
	--ett-arrow-color: #111827;
	--ett-arrow-border: #e5e7eb;

	background: var( --ett-section-bg );
	box-sizing: border-box;
	display: block;
}

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

.eticsoft-testimonials__header {
	max-width: 520px;
	margin: 0 0 32px 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.eticsoft-testimonials__heading {
	color: var( --ett-heading-color );
	font-size: 28px;
	line-height: 1.2;
	font-weight: 700;
	margin: 0;
}

.eticsoft-testimonials__description {
	color: var( --ett-description-color );
	font-size: 15px;
	line-height: 1.55;
	margin: 0;
}

.eticsoft-testimonials__button {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	align-self: flex-start;
	margin-top: 8px;
	padding: 10px 16px;
	background: var( --ett-button-bg );
	color: var( --ett-button-color );
	border: 1px solid var( --ett-button-border );
	border-radius: 10px;
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	box-shadow: 0 1px 2px rgba( 0, 0, 0, 0.04 );
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.eticsoft-testimonials__button:hover {
	transform: translateY( -1px );
	box-shadow: 0 6px 16px rgba( 0, 0, 0, 0.08 );
}

.eticsoft-testimonials__button-arrow {
	display: inline-block;
	transition: transform 0.2s ease;
}

.eticsoft-testimonials__button:hover .eticsoft-testimonials__button-arrow {
	transform: translateX( 3px );
}

.eticsoft-testimonials__viewport {
	width: 100%;
}

.eticsoft-testimonials.is-carousel .eticsoft-testimonials__viewport {
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	cursor: grab;
}

.eticsoft-testimonials.is-carousel .eticsoft-testimonials__viewport::-webkit-scrollbar {
	display: none;
}

.eticsoft-testimonials.is-carousel .eticsoft-testimonials__viewport:active {
	cursor: grabbing;
}

.eticsoft-testimonials.is-carousel .eticsoft-testimonials__track {
	display: flex;
	gap: var( --ett-gap );
}

.eticsoft-testimonials.is-carousel .eticsoft-testimonials__card {
	flex: 0 0 calc( ( 100% - ( ( var( --ett-cols-desktop ) - 1 ) * var( --ett-gap ) ) ) / var( --ett-cols-desktop ) );
	scroll-snap-align: start;
}

.eticsoft-testimonials.is-grid .eticsoft-testimonials__track {
	display: grid;
	grid-template-columns: repeat( var( --ett-cols-desktop ), minmax( 0, 1fr ) );
	gap: var( --ett-gap );
}

.eticsoft-testimonials__card {
	background: var( --ett-card-bg );
	border-radius: var( --ett-radius );
	overflow: hidden;
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.eticsoft-testimonials.image-bottom .eticsoft-testimonials__card {
	flex-direction: column-reverse;
}

.eticsoft-testimonials__media {
	width: 100%;
	height: var( --ett-image-h );
	background: rgba( 0, 0, 0, 0.04 );
	overflow: hidden;
}

.eticsoft-testimonials__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.eticsoft-testimonials__image-placeholder {
	width: 100%;
	height: 100%;
	display: grid;
	place-items: center;
	color: #9ca3af;
	font-size: 13px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.eticsoft-testimonials__content {
	padding: var( --ett-padding );
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1;
}

.eticsoft-testimonials__quote {
	color: var( --ett-quote-color );
	font-size: 15px;
	line-height: 1.45;
	font-weight: 600;
	margin: 0 0 12px 0;
}

.eticsoft-testimonials__name {
	color: var( --ett-name-color );
	font-size: 14px;
	font-weight: 600;
	margin: 0;
}

.eticsoft-testimonials__role {
	color: var( --ett-role-color );
	font-size: 12px;
	margin: 0;
}

.eticsoft-testimonials__nav {
	display: flex;
	gap: 10px;
	margin-top: 20px;
}

.eticsoft-testimonials.no-arrows .eticsoft-testimonials__nav {
	display: none;
}

.eticsoft-testimonials__arrow {
	width: 36px;
	height: 36px;
	border-radius: 999px;
	background: var( --ett-arrow-bg );
	color: var( --ett-arrow-color );
	border: 1px solid var( --ett-arrow-border );
	display: inline-grid;
	place-items: center;
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 1px 2px rgba( 0, 0, 0, 0.04 );
	transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.eticsoft-testimonials__arrow:hover {
	transform: translateY( -1px );
	box-shadow: 0 6px 14px rgba( 0, 0, 0, 0.08 );
}

.eticsoft-testimonials__arrow[disabled] {
	opacity: 0.4;
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}

@media ( max-width: 1024px ) {
	.eticsoft-testimonials.is-carousel .eticsoft-testimonials__card {
		flex-basis: calc( ( 100% - ( ( var( --ett-cols-tablet ) - 1 ) * var( --ett-gap ) ) ) / var( --ett-cols-tablet ) );
	}
	.eticsoft-testimonials.is-grid .eticsoft-testimonials__track {
		grid-template-columns: repeat( var( --ett-cols-tablet ), minmax( 0, 1fr ) );
	}
}

@media ( max-width: 640px ) {
	.eticsoft-testimonials__heading {
		font-size: 22px;
	}
	.eticsoft-testimonials.is-carousel .eticsoft-testimonials__card {
		flex-basis: calc( ( 100% - ( ( var( --ett-cols-mobile ) - 1 ) * var( --ett-gap ) ) ) / var( --ett-cols-mobile ) );
	}
	.eticsoft-testimonials.is-grid .eticsoft-testimonials__track {
		grid-template-columns: repeat( var( --ett-cols-mobile ), minmax( 0, 1fr ) );
	}
}

/* ============================================================
   Hero Block
   ============================================================ */
.eticsoft-hero {
	--eth-bg: #ffffff;
	--eth-heading-color: #0f172a;
	--eth-description-color: #4b5563;
	--eth-rating-color: #6366f1;
	--eth-content-max: 640px;
	--eth-spacing-top: 80px;
	--eth-spacing-bottom: 0px;
	--eth-mockup-gap: 48px;
	--eth-laptop-radius: 24px;
	--eth-phone-radius: 36px;
	--eth-device-frame: #111827;
	--eth-device-screen: #f3f4f6;
	--eth-text-align: center;

	background: var( --eth-bg );
	padding-top: var( --eth-spacing-top );
	padding-bottom: var( --eth-spacing-bottom );
	box-sizing: border-box;
	overflow: hidden;
}

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

.eticsoft-hero__content {
	max-width: var( --eth-content-max );
	margin: 0 auto;
	text-align: var( --eth-text-align );
	display: flex;
	flex-direction: column;
	gap: 18px;
	padding: 0 24px;
}

.eticsoft-hero.align-left .eticsoft-hero__content {
	margin-left: 0;
	margin-right: auto;
	align-items: flex-start;
}
.eticsoft-hero.align-right .eticsoft-hero__content {
	margin-right: 0;
	margin-left: auto;
	align-items: flex-end;
}
.eticsoft-hero.align-center .eticsoft-hero__content {
	align-items: center;
}

.eticsoft-hero__heading {
	color: var( --eth-heading-color );
	font-size: clamp( 28px, 4vw, 44px );
	line-height: 1.1;
	font-weight: 700;
	letter-spacing: -0.01em;
	margin: 0;
}

.eticsoft-hero__description {
	color: var( --eth-description-color );
	font-size: 16px;
	line-height: 1.55;
	margin: 0;
	max-width: 560px;
}

.eticsoft-hero.align-center .eticsoft-hero__description {
	margin-left: auto;
	margin-right: auto;
}

.eticsoft-hero__action-wrap {
	width: 100%;
	display: flex;
	justify-content: var( --eth-text-align, center );
}

.eticsoft-hero.align-center .eticsoft-hero__action-wrap {
	justify-content: center;
}
.eticsoft-hero.align-left .eticsoft-hero__action-wrap {
	justify-content: flex-start;
}
.eticsoft-hero.align-right .eticsoft-hero__action-wrap {
	justify-content: flex-end;
}

.eticsoft-hero__action {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	padding: 6px;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	box-shadow: 0 4px 16px rgba( 0, 0, 0, 0.04 );
	max-width: 100%;
}

.eticsoft-hero__action > * {
	margin: 0 !important;
}

.eticsoft-hero__action .wp-block-button .wp-block-button__link {
	border-radius: 10px;
}

.eticsoft-hero__ratings {
	display: flex;
	gap: 18px;
	justify-content: inherit;
	flex-wrap: wrap;
	margin-top: 4px;
}

.eticsoft-hero.align-center .eticsoft-hero__ratings {
	justify-content: center;
}
.eticsoft-hero.align-left .eticsoft-hero__ratings {
	justify-content: flex-start;
}
.eticsoft-hero.align-right .eticsoft-hero__ratings {
	justify-content: flex-end;
}

.eticsoft-hero__rating {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var( --eth-rating-color );
	font-size: 13px;
	font-weight: 500;
	text-decoration: none;
}

.eticsoft-hero__rating-text {
	text-decoration: underline;
	text-decoration-color: currentColor;
	text-underline-offset: 3px;
}

.eticsoft-hero__rating-icon {
	display: inline-block;
	font-size: 11px;
	line-height: 1;
}

.eticsoft-hero.no-ratings .eticsoft-hero__ratings {
	display: none;
}

.eticsoft-hero__mockups {
	margin-top: 56px;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	gap: var( --eth-mockup-gap );
	padding: 0 24px;
	position: relative;
}

.eticsoft-hero.no-mockups .eticsoft-hero__mockups {
	display: none;
}

.eticsoft-hero__device {
	position: relative;
}

.eticsoft-hero__device--laptop {
	width: min( 880px, 78vw );
	aspect-ratio: 16 / 10;
}

.eticsoft-hero__device--phone {
	width: min( 240px, 22vw );
	aspect-ratio: 9 / 18;
	margin-left: calc( -1 * var( --eth-mockup-gap ) - 40px );
	margin-bottom: -40px;
	z-index: 2;
}

.eticsoft-hero__device--laptop .eticsoft-hero__device-frame {
	border-radius: var( --eth-laptop-radius );
	border: 10px solid var( --eth-device-frame );
}

.eticsoft-hero__device--phone .eticsoft-hero__device-frame {
	border-radius: var( --eth-phone-radius );
	border: 8px solid var( --eth-device-frame );
}

.eticsoft-hero__device-frame {
	position: relative;
	width: 100%;
	height: 100%;
	background: var( --eth-device-frame );
	overflow: hidden;
	box-shadow: 0 20px 60px rgba( 0, 0, 0, 0.12 );
}

.eticsoft-hero__device--phone .eticsoft-hero__device-frame::before {
	content: "";
	position: absolute;
	top: 8px;
	left: 50%;
	transform: translateX( -50% );
	width: 50%;
	height: 14px;
	background: var( --eth-device-frame );
	border-radius: 0 0 12px 12px;
	z-index: 1;
}

.eticsoft-hero__device-screen {
	width: 100%;
	height: 100%;
	background: var( --eth-device-screen );
	display: grid;
	place-items: center;
	overflow: hidden;
}

.eticsoft-hero__device-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.eticsoft-hero__device-placeholder {
	color: #9ca3af;
	font-size: 12px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

@media ( max-width: 768px ) {
	.eticsoft-hero__heading {
		font-size: clamp( 24px, 6vw, 32px );
	}
	.eticsoft-hero__mockups {
		gap: calc( var( --eth-mockup-gap ) * 0.5 );
		margin-top: 40px;
	}
	.eticsoft-hero__device--laptop {
		width: 86vw;
	}
	.eticsoft-hero__device--phone {
		width: 30vw;
		margin-left: -30px;
		margin-bottom: -20px;
	}
}

