/*
Evolvian Elements — widget styles.

The Evolvian theme defines the design system (tokens, cards, buttons, grids).
This file does two things on top of it:

1. Styles the elements that exist only in the widget set — team cards, pricing
   tables, contact rows, logo rows.
2. Carries a literal fallback in every var() so the widgets still look right on
   a non-Evolvian theme, and in the Elementor editor before the theme CSS has
   loaded.

Tokens are never redeclared here: `--x: var(--x, fallback)` is a self-reference
and CSS treats it as a cycle, which makes the property invalid. Fallbacks go at
the point of use instead, which also lets the theme's Customizer values win no
matter which stylesheet the browser reads first.
*/

/* Widgets render their own visible state; never leave content hidden when the
   theme's scroll observer is not running (for example inside the editor). */
.elementor-widget .ev-reveal,
.elementor-widget .is-visible {
	opacity: 1;
	transform: none;
}

/*--------------------------------------------------------------
# Hero
--------------------------------------------------------------*/
.ev-hero--widget {
	padding: 0;
	background: none;
	overflow: visible;
}

.ev-hero--widget .ev-hero__inner {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: center;
	gap: 56px;
	max-width: none;
	padding: 0;
}

.ev-hero--widget.ev-hero--center .ev-hero__inner {
	grid-template-columns: minmax(0, 1fr);
	text-align: center;
}

.ev-hero--widget .ev-hero__image {
	width: 100%;
	border-radius: calc(var(--ev-radius, 14px) * 1.6);
	box-shadow: var(--ev-shadow-lg, 0 18px 50px rgba(15, 23, 42, .12));
}

/*--------------------------------------------------------------
# Shared bits the theme does not define
--------------------------------------------------------------*/
.ev-arrow {
	display: inline-block;
	transition: transform var(--ev-transition, .25s cubic-bezier(.4, 0, .2, 1));
}

.ev-link-arrow:hover .ev-arrow {
	transform: translateX(3px);
}

.ev-checklist__icon,
.ev-contact-item__icon,
.ev-feature-card__icon,
.ev-service-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.ev-checklist {
	display: grid;
	gap: 12px;
	margin: 0 0 28px;
	padding: 0;
	list-style: none;
}

.ev-checklist li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	color: var(--ev-heading, #0f172a);
	font-weight: 500;
}

.ev-checklist__icon {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	margin-top: 2px;
	border-radius: 50%;
	background: var(--ev-primary-soft, #eef2ff);
	color: var(--ev-primary, #4f46e5);
	font-size: 12px;
}

.ev-feature-card__icon,
.ev-service-card__icon {
	width: 52px;
	height: 52px;
	margin-bottom: 20px;
	border-radius: var(--ev-radius-sm, 7px);
	background: var(--ev-primary-soft, #eef2ff);
	color: var(--ev-primary, #4f46e5);
	font-size: 22px;
}

.ev-feature-card__icon svg,
.ev-service-card__icon svg,
.ev-checklist__icon svg,
.ev-contact-item__icon svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

/*--------------------------------------------------------------
# Stats
--------------------------------------------------------------*/
.ev-stats__grid.has-dividers .ev-stat + .ev-stat {
	border-inline-start: 1px solid rgba(255, 255, 255, .16);
}

.ev-stat__prefix,
.ev-stat__suffix {
	font: inherit;
	color: inherit;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.ev-testimonial__stars {
	margin-bottom: 14px;
	color: #f59e0b;
	font-size: 1.05rem;
	letter-spacing: 2px;
}

/*--------------------------------------------------------------
# Accordion
--------------------------------------------------------------*/
.ev-accordion__chevron {
	flex-shrink: 0;
	width: 9px;
	height: 9px;
	border-inline-end: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: translateY(-2px) rotate(45deg);
	transition: transform var(--ev-transition, .25s cubic-bezier(.4, 0, .2, 1));
}

.ev-accordion__item.is-open .ev-accordion__chevron {
	transform: translateY(2px) rotate(-135deg);
}

/*--------------------------------------------------------------
# Call to action
--------------------------------------------------------------*/
.ev-cta--widget {
	position: relative;
	overflow: hidden;
	padding: 72px 32px;
	border-radius: var(--ev-radius, 14px);
}

.ev-cta--widget::before {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.ev-cta--widget .ev-cta__inner {
	position: relative;
	max-width: 760px;
	margin-inline: auto;
	padding: 0;
}

.ev-cta--widget.ev-cta--inline .ev-cta__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	max-width: none;
	text-align: start;
}

.ev-cta--widget.ev-cta--inline .ev-cta__body {
	flex: 1 1 380px;
}

.ev-cta--widget .ev-cta__text:last-child {
	margin-bottom: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.ev-team-card {
	overflow: hidden;
	background: var(--ev-white, #fff);
	border: 1px solid var(--ev-border, #e2e8f0);
	border-radius: var(--ev-radius, 14px);
	text-align: center;
	transition: transform var(--ev-transition, .25s ease), box-shadow var(--ev-transition, .25s ease);
}

.ev-team-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--ev-shadow-lg, 0 18px 50px rgba(15, 23, 42, .12));
}

.ev-team-card__media {
	aspect-ratio: 1 / 1;
	background: var(--ev-muted-bg, #f8fafc);
}

.ev-team-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ev-team-card--circle .ev-team-card__media {
	width: 160px;
	margin: 28px auto 0;
	border-radius: 50%;
	overflow: hidden;
}

.ev-team-card__body {
	padding: 24px 22px 26px;
}

.ev-team-card__name {
	margin: 0 0 4px;
	font-size: 1.15rem;
	color: var(--ev-heading, #0f172a);
}

.ev-team-card__role {
	margin: 0 0 12px;
	color: var(--ev-primary, #4f46e5);
	font-size: .92rem;
	font-weight: 600;
}

.ev-team-card__bio {
	margin: 0 0 16px;
	font-size: .95rem;
	color: var(--ev-text, #475569);
}

.ev-team-card .ev-social {
	justify-content: center;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.ev-price-card {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 34px 30px;
	background: var(--ev-white, #fff);
	border: 1px solid var(--ev-border, #e2e8f0);
	border-radius: var(--ev-radius, 14px);
	transition: transform var(--ev-transition, .25s ease), box-shadow var(--ev-transition, .25s ease);
}

.ev-price-card--featured {
	border-color: var(--ev-primary, #4f46e5);
	box-shadow: var(--ev-shadow-lg, 0 18px 50px rgba(15, 23, 42, .12));
}

.ev-price-card__badge {
	position: absolute;
	inset-block-start: -13px;
	inset-inline-start: 30px;
	padding: 5px 14px;
	border-radius: 999px;
	background: var(--ev-primary, #4f46e5);
	color: var(--ev-white, #fff);
	font-size: .76rem;
	font-weight: 600;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.ev-price-card__name {
	margin: 0 0 6px;
	font-size: 1.25rem;
	color: var(--ev-heading, #0f172a);
}

.ev-price-card__description {
	margin: 0 0 20px;
	font-size: .93rem;
	color: var(--ev-text, #475569);
}

.ev-price-card__price {
	display: flex;
	align-items: baseline;
	gap: 4px;
	margin: 0 0 22px;
	padding-bottom: 22px;
	border-bottom: 1px solid var(--ev-border, #e2e8f0);
	color: var(--ev-heading, #0f172a);
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -.02em;
}

.ev-price-card__currency {
	font-size: .55em;
	font-weight: 600;
}

.ev-price-card__period {
	font-size: .38em;
	font-weight: 500;
	color: var(--ev-text, #475569);
}

.ev-price-card__features {
	flex: 1;
	margin: 0 0 26px;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 10px;
}

.ev-price-card__features li {
	position: relative;
	padding-inline-start: 26px;
	font-size: .95rem;
}

.ev-price-card__features li::before {
	content: "";
	position: absolute;
	inset-inline-start: 2px;
	top: .55em;
	width: 10px;
	height: 6px;
	border-inline-start: 2px solid var(--ev-primary, #4f46e5);
	border-bottom: 2px solid var(--ev-primary, #4f46e5);
	transform: rotate(-45deg);
}

.ev-price-card .ev-button {
	width: 100%;
}

/*--------------------------------------------------------------
# Contact info
--------------------------------------------------------------*/
.ev-contact-info {
	display: grid;
	gap: 18px;
}

.ev-contact-info--cards {
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 24px;
}

.ev-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.ev-contact-info--cards .ev-contact-item {
	flex-direction: column;
	padding: 28px 26px;
	background: var(--ev-white, #fff);
	border: 1px solid var(--ev-border, #e2e8f0);
	border-radius: var(--ev-radius, 14px);
}

.ev-contact-item__icon {
	flex-shrink: 0;
	width: 46px;
	height: 46px;
	border-radius: var(--ev-radius-sm, 7px);
	background: var(--ev-primary-soft, #eef2ff);
	color: var(--ev-primary, #4f46e5);
	font-size: 18px;
}

.ev-contact-item__label {
	display: block;
	margin-bottom: 2px;
	color: var(--ev-text, #475569);
	font-size: .84rem;
	font-weight: 600;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.ev-contact-item__value {
	color: var(--ev-heading, #0f172a);
	font-size: 1.02rem;
	font-weight: 500;
}

a.ev-contact-item__value:hover,
a.ev-contact-item__value:focus {
	color: var(--ev-primary, #4f46e5);
}

/*--------------------------------------------------------------
# Logos
--------------------------------------------------------------*/
.ev-logos__intro {
	margin: 0 0 28px;
	color: var(--ev-text, #475569);
	font-size: .88rem;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
	text-align: center;
}

.ev-logos__grid {
	align-items: center;
}

.ev-logo-item {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 60px;
}

.ev-logo-item img {
	width: auto;
	max-height: 44px;
	object-fit: contain;
	transition: filter var(--ev-transition, .25s ease), opacity var(--ev-transition, .25s ease);
}

.ev-logos.is-grayscale .ev-logo-item img {
	filter: grayscale(1);
	opacity: .6;
}

.ev-logos.is-grayscale .ev-logo-item:hover img {
	filter: none;
	opacity: 1;
}

.ev-logo-item__text {
	color: var(--ev-heading, #0f172a);
	font-size: 1.15rem;
	font-weight: 700;
	letter-spacing: -.01em;
	opacity: .55;
}

/*--------------------------------------------------------------
# Image + content
--------------------------------------------------------------*/
.ev-image-box {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: center;
	gap: 56px;
}

.ev-image-box--right .ev-image-box__media {
	order: 2;
}

.ev-image-box__media img {
	width: 100%;
	border-radius: var(--ev-radius, 14px);
	box-shadow: var(--ev-shadow-md, 0 12px 28px rgba(15, 23, 42, .08));
}

.ev-image-box__title {
	margin: 0 0 .5em;
	color: var(--ev-heading, #0f172a);
}

.ev-image-box__text {
	color: var(--ev-text, #475569);
}

.ev-image-box__text > *:last-child {
	margin-bottom: 0;
}

.ev-image-box__text + .ev-checklist {
	margin-top: 24px;
}

/*--------------------------------------------------------------
# Process steps
--------------------------------------------------------------*/
.ev-steps {
	display: grid;
	gap: 32px;
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: ev-step;
}

.ev-steps--horizontal {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ev-steps--vertical {
	grid-template-columns: minmax(0, 1fr);
	gap: 0;
}

.ev-step {
	position: relative;
}

.ev-steps--vertical .ev-step {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 20px;
	padding-bottom: 34px;
}

.ev-steps--vertical .ev-step:last-child {
	padding-bottom: 0;
}

.ev-step__marker {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 1;
	width: 58px;
	height: 58px;
	margin-bottom: 20px;
	border-radius: 50%;
	background: var(--ev-primary-soft, #eef2ff);
	color: var(--ev-primary, #4f46e5);
	font-family: var(--ev-font-heading, inherit);
	font-size: 1.05rem;
	font-weight: 700;
	letter-spacing: -.01em;
}

.ev-steps--vertical .ev-step__marker {
	margin-bottom: 0;
}

.ev-step__marker svg {
	width: 1.1em;
	height: 1.1em;
	fill: currentColor;
}

/* Connector line between markers. */
.ev-steps.has-connector .ev-step::after {
	content: "";
	position: absolute;
	background: var(--ev-border, #e2e8f0);
}

.ev-steps--horizontal.has-connector .ev-step::after {
	inset-block-start: 29px;
	inset-inline-start: 58px;
	inset-inline-end: -32px;
	height: 2px;
}

.ev-steps--vertical.has-connector .ev-step::after {
	inset-block-start: 58px;
	inset-block-end: 0;
	inset-inline-start: 28px;
	width: 2px;
}

.ev-steps.has-connector .ev-step:last-child::after {
	display: none;
}

.ev-step__title {
	margin: 0 0 .45em;
	font-size: 1.12rem;
	color: var(--ev-heading, #0f172a);
}

.ev-step__text {
	margin: 0;
	font-size: .96rem;
	color: var(--ev-text, #475569);
}

/*--------------------------------------------------------------
# Tabs
--------------------------------------------------------------*/
.ev-tabs--vertical {
	display: grid;
	grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
	gap: 32px;
	align-items: start;
}

.ev-tabs__list {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	border-bottom: 1px solid var(--ev-border, #e2e8f0);
}

.ev-tabs--vertical .ev-tabs__list {
	flex-direction: column;
	flex-wrap: nowrap;
	border-bottom: 0;
	border-inline-end: 1px solid var(--ev-border, #e2e8f0);
}

.ev-tabs__tab {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 13px 20px;
	border: 0;
	border-bottom: 2px solid transparent;
	border-radius: 0;
	background: none;
	color: var(--ev-text, #475569);
	font-family: inherit;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.3;
	cursor: pointer;
	transition: color var(--ev-transition, .25s ease), background-color var(--ev-transition, .25s ease), border-color var(--ev-transition, .25s ease);
}

.ev-tabs--vertical .ev-tabs__tab {
	justify-content: flex-start;
	border-bottom: 0;
	border-inline-end: 2px solid transparent;
	text-align: start;
}

.ev-tabs__tab:hover {
	color: var(--ev-primary, #4f46e5);
}

.ev-tabs__tab[aria-selected="true"] {
	color: var(--ev-primary, #4f46e5);
	border-color: var(--ev-primary, #4f46e5);
}

.ev-tabs__tab svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.ev-tabs__panel {
	padding: 28px 0 0;
	color: var(--ev-text, #475569);
}

.ev-tabs--vertical .ev-tabs__panel {
	grid-column: 2;
	grid-row: 1;
	padding: 0;
}

.ev-tabs__panel > *:last-child {
	margin-bottom: 0;
}

.ev-tabs__panel:focus-visible {
	outline: 2px solid var(--ev-primary, #4f46e5);
	outline-offset: 4px;
}

/*--------------------------------------------------------------
# Progress bars
--------------------------------------------------------------*/
.ev-progress-list {
	display: grid;
	gap: 22px;
}

.ev-progress__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 9px;
}

.ev-progress__label {
	color: var(--ev-heading, #0f172a);
	font-weight: 600;
}

.ev-progress__value {
	color: var(--ev-text, #475569);
	font-size: .9rem;
	font-weight: 600;
	font-variant-numeric: tabular-nums;
}

.ev-progress__track {
	position: relative;
	height: 10px;
	border-radius: 999px;
	background: var(--ev-muted-bg, #f1f5f9);
	overflow: hidden;
}

.ev-progress__fill {
	display: block;
	height: 100%;
	border-radius: inherit;
	background: var(--ev-primary, #4f46e5);
}

.ev-progress__fill.is-animated {
	transition: width 1.2s cubic-bezier(.22, 1, .36, 1);
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.ev-portfolio__filter {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-bottom: 36px;
}

.ev-portfolio__filter-button {
	padding: 9px 20px;
	border: 1px solid var(--ev-border, #e2e8f0);
	border-radius: 999px;
	background: transparent;
	color: var(--ev-text, #475569);
	font-family: inherit;
	font-size: .93rem;
	font-weight: 600;
	cursor: pointer;
	transition: color var(--ev-transition, .25s ease), background-color var(--ev-transition, .25s ease), border-color var(--ev-transition, .25s ease);
}

.ev-portfolio__filter-button:hover {
	border-color: var(--ev-primary, #4f46e5);
	color: var(--ev-primary, #4f46e5);
}

.ev-portfolio__filter-button.is-active {
	background: var(--ev-primary, #4f46e5);
	border-color: var(--ev-primary, #4f46e5);
	color: #fff;
}

.ev-project.is-hidden {
	display: none;
}

.ev-project__inner {
	display: block;
	overflow: hidden;
	border-radius: var(--ev-radius, 14px);
	background: var(--ev-white, #fff);
	text-decoration: none;
}

.ev-project__media {
	position: relative;
	aspect-ratio: 3 / 2;
	overflow: hidden;
	background: var(--ev-muted-bg, #f8fafc);
}

.ev-project__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s ease;
}

.ev-project:hover .ev-project__media img {
	transform: scale(1.05);
}

.ev-project__overlay {
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, .45);
	opacity: 0;
	transition: opacity var(--ev-transition, .25s ease);
}

.ev-project:hover .ev-project__overlay {
	opacity: 1;
}

.ev-project__body {
	padding: 20px 4px 0;
}

.ev-project__category {
	display: block;
	margin-bottom: 4px;
	color: var(--ev-primary, #4f46e5);
	font-size: .82rem;
	font-weight: 600;
	letter-spacing: .05em;
	text-transform: uppercase;
}

.ev-project__title {
	margin: 0;
	font-size: 1.15rem;
	color: var(--ev-heading, #0f172a);
}

/*--------------------------------------------------------------
# Video popup
--------------------------------------------------------------*/
.ev-video__poster {
	position: relative;
	display: block;
	width: 100%;
	padding: 0;
	border: 0;
	border-radius: var(--ev-radius, 14px);
	overflow: hidden;
	aspect-ratio: 16 / 9;
	background: var(--ev-muted-bg, #f8fafc);
	cursor: pointer;
}

.ev-video__poster img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ev-video__poster::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, .28);
	transition: background-color var(--ev-transition, .25s ease);
}

.ev-video__poster:hover::after {
	background: rgba(15, 23, 42, .42);
}

.ev-video__play {
	position: absolute;
	inset-block-start: 50%;
	inset-inline-start: 50%;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 78px;
	height: 78px;
	border-radius: 50%;
	background: #fff;
	color: var(--ev-primary, #4f46e5);
	transform: translate(-50%, -50%);
	transition: transform var(--ev-transition, .25s ease);
}

html[dir="rtl"] .ev-video__play {
	transform: translate(50%, -50%);
}

.ev-video__poster:hover .ev-video__play {
	transform: translate(-50%, -50%) scale(1.08);
}

html[dir="rtl"] .ev-video__poster:hover .ev-video__play {
	transform: translate(50%, -50%) scale(1.08);
}

.ev-video__play svg {
	width: 40%;
	height: 40%;
}

.ev-video__caption {
	margin: 16px 0 0;
	color: var(--ev-text, #475569);
	font-weight: 600;
	text-align: center;
}

.ev-video__dialog {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.ev-video__dialog[hidden] {
	display: none;
}

.ev-video__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(2, 6, 23, .82);
}

.ev-video__frame {
	position: relative;
	width: min(1000px, 100%);
}

.ev-video__player {
	position: relative;
	aspect-ratio: 16 / 9;
	background: #000;
	border-radius: var(--ev-radius, 14px);
	overflow: hidden;
}

.ev-video__player iframe,
.ev-video__player video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.ev-video__close {
	position: absolute;
	inset-block-start: -48px;
	inset-inline-end: 0;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, .14);
	color: #fff;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
}

.ev-video__close:hover {
	background: rgba(255, 255, 255, .28);
}

/*--------------------------------------------------------------
# Countdown
--------------------------------------------------------------*/
.ev-countdown {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.ev-countdown__item {
	min-width: 92px;
	padding: 18px 14px;
	border: 1px solid var(--ev-border, #e2e8f0);
	border-radius: var(--ev-radius, 14px);
	background: var(--ev-white, #fff);
	text-align: center;
}

.ev-countdown__value {
	display: block;
	color: var(--ev-heading, #0f172a);
	font-family: var(--ev-font-heading, inherit);
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1.1;
	font-variant-numeric: tabular-nums;
	letter-spacing: -.02em;
}

.ev-countdown__label {
	display: block;
	margin-top: 6px;
	color: var(--ev-text, #475569);
	font-size: .82rem;
	font-weight: 600;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.ev-countdown.is-expired {
	color: var(--ev-text, #475569);
	font-weight: 600;
}

/*--------------------------------------------------------------
# Business hours
--------------------------------------------------------------*/
.ev-hours__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.ev-hours__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 13px 14px;
	border-radius: var(--ev-radius-sm, 7px);
}

.ev-hours__row + .ev-hours__row {
	border-top: 1px solid var(--ev-border, #e2e8f0);
	border-radius: 0;
}

.ev-hours__row.is-today {
	background: var(--ev-primary-soft, #eef2ff);
	border-radius: var(--ev-radius-sm, 7px);
	border-top-color: transparent;
}

.ev-hours__day {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--ev-heading, #0f172a);
	font-weight: 600;
}

.ev-hours__today {
	padding: 2px 9px;
	border-radius: 999px;
	background: var(--ev-primary, #4f46e5);
	color: #fff;
	font-size: .7rem;
	font-weight: 600;
	letter-spacing: .05em;
	text-transform: uppercase;
}

.ev-hours__time {
	color: var(--ev-text, #475569);
	font-variant-numeric: tabular-nums;
}

.ev-hours__row.is-closed .ev-hours__time {
	opacity: .7;
	font-style: italic;
}

.ev-hours__note {
	margin: 16px 0 0;
	color: var(--ev-text, #475569);
	font-size: .88rem;
}

/*--------------------------------------------------------------
# Unlicensed placeholder
--------------------------------------------------------------*/
.ev-unlicensed {
	padding: 20px 22px;
	border: 1px dashed #f59e0b;
	border-radius: var(--ev-radius, 14px);
	background: #fffbeb;
	color: #92400e;
	font-size: .95rem;
	line-height: 1.6;
	text-align: center;
}

.ev-unlicensed a {
	color: #92400e;
	text-decoration: underline;
}

/*--------------------------------------------------------------
# Button
--------------------------------------------------------------*/
.ev-button-wrap {
	display: flex;
}

.ev-button-wrap .ev-button svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

/*--------------------------------------------------------------
# Fallbacks for non-Evolvian themes
--------------------------------------------------------------*/

/* The theme supplies these; a different theme will not, so give the widget
   markup enough styling to stand on its own. */
.elementor-widget .ev-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 13px 26px;
	border: 1px solid transparent;
	border-radius: var(--ev-radius-sm, 7px);
	background: var(--ev-primary, #4f46e5);
	color: var(--ev-white, #fff);
	font-weight: 600;
	line-height: 1.3;
	text-decoration: none;
}

.elementor-widget .ev-button--ghost {
	background: transparent;
	border-color: var(--ev-border, #e2e8f0);
	color: var(--ev-heading, #0f172a);
}

.elementor-widget .ev-button--light {
	background: var(--ev-white, #fff);
	color: var(--ev-heading, #0f172a);
}

.elementor-widget .ev-grid {
	display: grid;
	gap: 28px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.elementor-widget .ev-grid--2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.elementor-widget .ev-grid--4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media (max-width: 991px) {
	.ev-hero--widget .ev-hero__inner {
		grid-template-columns: minmax(0, 1fr);
		gap: 40px;
	}

	.ev-hero--widget .ev-hero__media {
		order: -1;
	}

	.ev-stats__grid.has-dividers .ev-stat + .ev-stat {
		border: 0;
	}
}

@media (max-width: 991px) {
	.ev-image-box,
	.ev-tabs--vertical {
		grid-template-columns: minmax(0, 1fr);
	}

	.ev-image-box--right .ev-image-box__media {
		order: -1;
	}

	.ev-tabs--vertical .ev-tabs__list {
		flex-direction: row;
		flex-wrap: wrap;
		border-inline-end: 0;
		border-bottom: 1px solid var(--ev-border, #e2e8f0);
	}

	.ev-tabs--vertical .ev-tabs__tab {
		border-inline-end: 0;
		border-bottom: 2px solid transparent;
	}

	.ev-tabs--vertical .ev-tabs__panel {
		grid-column: 1;
		grid-row: auto;
		padding-top: 24px;
	}

	.ev-steps--horizontal {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ev-steps--horizontal.has-connector .ev-step::after {
		display: none;
	}
}

@media (max-width: 767px) {
	.ev-cta--widget {
		padding: 48px 24px;
	}

	.ev-team-card--circle .ev-team-card__media {
		width: 130px;
	}

	.elementor-widget .ev-grid,
	.elementor-widget .ev-grid--2,
	.elementor-widget .ev-grid--4 {
		grid-template-columns: minmax(0, 1fr);
	}

	.ev-steps--horizontal {
		grid-template-columns: minmax(0, 1fr);
	}

	.ev-countdown__item {
		flex: 1 1 84px;
		min-width: 0;
	}

	.ev-video__close {
		inset-block-start: -44px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ev-arrow,
	.ev-logo-item img,
	.ev-price-card,
	.ev-progress__fill,
	.ev-project__media img,
	.ev-team-card,
	.ev-video__play {
		transition: none;
	}
}
