/**
 * Digilab index-4 inspired agency layout (EVA brand: Navy #0B1D3A, Orange #E8821A).
 *
 * @package EVA_Theme
 */

/* ---- Agency header (light, Digilab-style) ---- */
.eva-header-agency {
	background: #fff;
	box-shadow: 0 2px 28px rgba(11, 29, 58, 0.08);
}
.eva-header-agency .eva-logo img {
	filter: none;
}
.eva-header-agency .eva-nav-list > li > a,
.eva-header-agency .eva-mega-toggle {
	color: var(--navy);
	font-weight: 600;
	font-size: 14px;
}
.eva-header-agency .eva-nav-list > li > a:hover,
.eva-header-agency .eva-mega-toggle:hover {
	color: var(--orange);
	background: var(--navy-50);
}
.eva-header-agency .eva-burger {
	background: var(--navy-50);
}
.eva-header-agency .eva-burger span {
	background: var(--navy);
}

/* ---- Hero ---- */
.eva-digi-hero {
	position: relative;
	padding: clamp(48px, 7vw, 100px) 0 clamp(56px, 8vw, 110px);
	background: linear-gradient(135deg, #061229 0%, #0B1D3A 45%, #122B58 100%);
	overflow: hidden;
	color: #fff;
}
.eva-digi-hero::before,
.eva-digi-hero::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
}
.eva-digi-hero::before {
	width: 520px;
	height: 520px;
	top: -180px;
	right: -120px;
	background: radial-gradient(circle, rgba(232, 130, 26, 0.22) 0%, transparent 70%);
}
.eva-digi-hero::after {
	width: 360px;
	height: 360px;
	bottom: -140px;
	left: -80px;
	background: radial-gradient(circle, rgba(232, 130, 26, 0.12) 0%, transparent 70%);
}
.eva-digi-hero-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: clamp(32px, 5vw, 64px);
	align-items: center;
}
.eva-digi-label {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--orange);
	margin-bottom: 16px;
}
.eva-digi-hero h1 {
	color: #fff;
	font-size: clamp(2rem, 1.1rem + 2.8vw, 3.5rem);
	font-weight: 800;
	line-height: 1.12;
	margin: 0 0 20px;
}
.eva-digi-hero h1 strong {
	color: var(--orange);
	font-weight: 800;
}
.eva-digi-hero-lead {
	font-size: clamp(16px, 0.9rem + 0.4vw, 18px);
	color: rgba(255, 255, 255, 0.82);
	max-width: 540px;
	line-height: 1.65;
	margin-bottom: 28px;
}
.eva-digi-hero .eva-btn-outline-white {
	background: transparent;
	color: #fff;
	border: 1.5px solid rgba(255, 255, 255, 0.45);
}
.eva-digi-hero .eva-btn-outline-white:hover {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	border-color: #fff;
}
.eva-digi-hero-visual {
	position: relative;
}
.eva-digi-hero-visual .eva-illu {
	width: 100%;
	height: auto;
	max-height: 420px;
	filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.25));
}
.eva-digi-hero-badge {
	position: absolute;
	bottom: 24px;
	left: -12px;
	background: #fff;
	color: var(--navy);
	padding: 12px 18px;
	border-radius: 12px;
	box-shadow: 0 12px 32px rgba(11, 29, 58, 0.18);
	font-size: 13px;
	font-weight: 700;
	display: flex;
	align-items: center;
	gap: 8px;
}
.eva-digi-hero-badge .dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--orange);
	animation: eva-pulse 2s infinite;
}
@keyframes eva-pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.6; transform: scale(1.2); }
}

/* ---- Section labels (Digilab h5 style) ---- */
.eva-digi-tag {
	display: block;
	font-size: 13px;
	font-weight: 700;
	color: var(--orange);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 10px;
}
.eva-digi-head h2 {
	font-size: clamp(1.65rem, 1rem + 1.6vw, 2.35rem);
	font-weight: 800;
	color: var(--ink);
	line-height: 1.2;
	margin: 0 0 14px;
}
.eva-digi-head h2 strong {
	color: var(--navy);
}
.eva-digi-head p {
	color: var(--muted);
	max-width: 640px;
	margin: 0;
}

/* ---- About + progress ---- */
.eva-digi-about {
	padding: clamp(56px, 7vw, 96px) 0;
	background: #fff;
}
.eva-digi-about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(32px, 5vw, 72px);
	align-items: center;
}
.eva-digi-bars {
	margin-top: 28px;
	display: flex;
	flex-direction: column;
	gap: 22px;
}
.eva-digi-bar label {
	display: flex;
	justify-content: space-between;
	font-size: 14px;
	font-weight: 600;
	color: var(--ink);
	margin-bottom: 8px;
}
.eva-digi-bar label span {
	color: var(--orange);
	font-weight: 800;
}
.eva-digi-bar-track {
	height: 8px;
	background: var(--line);
	border-radius: 999px;
	overflow: hidden;
}
.eva-digi-bar-fill {
	height: 100%;
	background: linear-gradient(90deg, var(--navy), var(--orange));
	border-radius: 999px;
	width: 0;
	transition: width 1.2s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.eva-digi-bar.is-visible .eva-digi-bar-fill {
	width: var(--pct, 80%);
}
.eva-digi-process-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	margin-top: 36px;
}
.eva-digi-process-item {
	text-align: center;
	padding: 20px 12px;
	border-radius: var(--radius);
	background: var(--bg);
	border: 1px solid var(--line);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.eva-digi-process-item:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-sm);
	border-color: rgba(232, 130, 26, 0.35);
}
.eva-digi-process-item .ico {
	width: 48px;
	height: 48px;
	margin: 0 auto 12px;
	border-radius: 50%;
	background: var(--navy);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}
.eva-digi-process-item h4 {
	font-size: 14px;
	font-weight: 700;
	color: var(--ink);
	margin: 0;
}

/* ---- Services grid ---- */
.eva-digi-services {
	padding: clamp(56px, 7vw, 96px) 0;
	background: var(--bg);
}
.eva-digi-services-head {
	text-align: center;
	margin-bottom: 48px;
}
.eva-digi-services-head .eva-digi-head p {
	margin: 0 auto;
}
.eva-digi-svc-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.eva-digi-svc-card {
	background: #fff;
	border-radius: var(--radius-lg);
	padding: 32px 28px;
	border: 1px solid var(--line);
	transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
	text-decoration: none;
	color: inherit;
	display: block;
}
.eva-digi-svc-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 48px rgba(11, 29, 58, 0.12);
	border-color: rgba(232, 130, 26, 0.4);
	color: inherit;
	text-decoration: none;
}
.eva-digi-svc-card .icon-wrap {
	width: 56px;
	height: 56px;
	border-radius: 14px;
	background: var(--orange-50);
	color: var(--orange);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	transition: background 0.25s ease, color 0.25s ease;
}
.eva-digi-svc-card:hover .icon-wrap {
	background: var(--navy);
	color: #fff;
}
.eva-digi-svc-card h3 {
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 10px;
	color: var(--ink);
}
.eva-digi-svc-card p {
	font-size: 14px;
	color: var(--muted);
	line-height: 1.6;
	margin: 0 0 16px;
}
.eva-digi-svc-card .read-more {
	font-size: 13px;
	font-weight: 700;
	color: var(--orange);
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

/* ---- FAQ split ---- */
.eva-digi-faq-split {
	padding: clamp(56px, 7vw, 96px) 0;
	background: #fff;
}
.eva-digi-faq-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(32px, 5vw, 64px);
	align-items: center;
}
.eva-digi-faq-list details {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	margin-bottom: 12px;
	background: var(--bg);
	overflow: hidden;
}
.eva-digi-faq-list summary {
	padding: 16px 20px;
	font-weight: 600;
	font-size: 15px;
	color: var(--ink);
	cursor: pointer;
	list-style: none;
}
.eva-digi-faq-list summary::-webkit-details-marker {
	display: none;
}
.eva-digi-faq-list details[open] summary {
	background: var(--navy);
	color: #fff;
}
.eva-digi-faq-list .body {
	padding: 0 20px 16px;
	font-size: 14px;
	color: var(--muted);
	line-height: 1.65;
}
.eva-digi-faq-visual {
	position: relative;
	border-radius: var(--radius-xl);
	overflow: hidden;
	background: linear-gradient(145deg, var(--navy-50), #fff);
	padding: 32px;
	border: 1px solid var(--line);
}
.eva-digi-faq-visual .eva-illu {
	width: 100%;
	height: auto;
}

/* ---- Testimonials ---- */
.eva-digi-testi {
	padding: clamp(56px, 7vw, 96px) 0;
	background: var(--navy);
	color: #fff;
	position: relative;
	overflow: hidden;
}
.eva-digi-testi::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 40%;
	height: 100%;
	background: linear-gradient(135deg, transparent, rgba(232, 130, 26, 0.08));
}
.eva-digi-testi .eva-digi-head h2 {
	color: #fff;
}
.eva-digi-testi .eva-digi-head p {
	color: rgba(255, 255, 255, 0.75);
}
.eva-digi-testi-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
	margin-top: 40px;
	position: relative;
	z-index: 1;
}
.eva-digi-testi-card {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--radius-lg);
	padding: 28px;
}
.eva-digi-testi-card blockquote {
	margin: 0 0 20px;
	font-size: 15px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.9);
	border-left: 3px solid var(--orange);
	padding-left: 16px;
}
.eva-digi-testi-card cite {
	font-style: normal;
	font-size: 14px;
	font-weight: 700;
	color: #fff;
}
.eva-digi-testi-card cite small {
	display: block;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.65);
	margin-top: 4px;
}

/* ---- Case studies / blog ---- */
.eva-digi-cases {
	padding: clamp(56px, 7vw, 96px) 0;
	background: var(--bg);
}
.eva-digi-cases-head {
	text-align: center;
	margin-bottom: 40px;
}
.eva-digi-case-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.eva-digi-case-card {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	aspect-ratio: 4/3;
	display: block;
	text-decoration: none;
}
.eva-digi-case-card .thumb {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.eva-digi-case-card .eva-auto-thumb,
.eva-digi-case-card svg {
	width: 100%;
	height: 100%;
}
.eva-digi-case-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(11, 29, 58, 0.92) 0%, transparent 55%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 24px;
	color: #fff;
}
.eva-digi-case-overlay .cat {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--orange);
	margin-bottom: 6px;
}
.eva-digi-case-overlay h3 {
	font-size: 17px;
	font-weight: 700;
	margin: 0;
	color: #fff;
}

/* ---- Contact strip ---- */
.eva-digi-contact {
	padding: clamp(56px, 7vw, 88px) 0;
	background: linear-gradient(135deg, #061229, #0B1D3A);
	color: #fff;
}
.eva-digi-contact-grid {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 48px;
	align-items: start;
}
.eva-digi-contact-info h3 {
	font-size: 22px;
	font-weight: 800;
	margin: 0 0 24px;
	color: #fff;
}
.eva-digi-contact-info h3 strong {
	color: var(--orange);
}
.eva-digi-info-block {
	margin-bottom: 24px;
}
.eva-digi-info-block h4 {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--orange);
	margin: 0 0 8px;
}
.eva-digi-info-block p,
.eva-digi-info-block a {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.85);
	margin: 0;
	line-height: 1.6;
}
.eva-digi-info-block a:hover {
	color: var(--orange);
}
.eva-digi-contact-form-wrap {
	background: #fff;
	border-radius: var(--radius-lg);
	padding: clamp(24px, 4vw, 36px);
	color: var(--text);
}
.eva-digi-contact-form-wrap h3 {
	color: var(--ink);
	font-size: 20px;
	font-weight: 800;
	margin: 0 0 8px;
}
.eva-digi-contact-form-wrap > p {
	font-size: 14px;
	color: var(--muted);
	margin: 0 0 20px;
}

/* ---- Stats bar under hero ---- */
.eva-digi-stats {
	background: #fff;
	margin-top: -40px;
	position: relative;
	z-index: 2;
	padding: 0 0 48px;
}
.eva-digi-stats-inner {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	background: #fff;
	border-radius: var(--radius-lg);
	box-shadow: 0 16px 48px rgba(11, 29, 58, 0.1);
	border: 1px solid var(--line);
	overflow: hidden;
}
.eva-digi-stats-inner .cell {
	padding: 28px 20px;
	text-align: center;
	border-right: 1px solid var(--line);
}
.eva-digi-stats-inner .cell:last-child {
	border-right: none;
}
.eva-digi-stats-inner .num {
	display: block;
	font-size: 28px;
	font-weight: 800;
	color: var(--navy);
	line-height: 1;
}
.eva-digi-stats-inner .lbl {
	display: block;
	font-size: 13px;
	color: var(--muted);
	margin-top: 6px;
}

/* Compare section restyle */
.eva-digi-compare {
	padding: clamp(48px, 6vw, 80px) 0;
	background: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
	.eva-digi-hero-grid,
	.eva-digi-about-grid,
	.eva-digi-faq-grid,
	.eva-digi-contact-grid {
		grid-template-columns: 1fr;
	}
	.eva-digi-svc-grid,
	.eva-digi-case-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.eva-digi-process-row {
		grid-template-columns: repeat(2, 1fr);
	}
	.eva-digi-stats-inner {
		grid-template-columns: repeat(2, 1fr);
	}
	.eva-digi-stats-inner .cell:nth-child(2) {
		border-right: none;
	}
	.eva-digi-stats-inner .cell:nth-child(1),
	.eva-digi-stats-inner .cell:nth-child(2) {
		border-bottom: 1px solid var(--line);
	}
}
@media (max-width: 640px) {
	.eva-digi-svc-grid,
	.eva-digi-case-grid,
	.eva-digi-testi-grid {
		grid-template-columns: 1fr;
	}
	.eva-digi-process-row {
		grid-template-columns: 1fr 1fr;
	}
	.eva-digi-stats-inner {
		grid-template-columns: 1fr;
	}
	.eva-digi-stats-inner .cell {
		border-right: none;
		border-bottom: 1px solid var(--line);
	}
	.eva-digi-stats-inner .cell:last-child {
		border-bottom: none;
	}
}

.eva-breadcrumb--inline {
	background: transparent;
	border: 0;
	padding: 0 0 16px;
	margin: 0;
}
.eva-sub-hero .eva-digi-panel {
	max-width: none;
}
.eva-digi-page-hero:not(.eva-digi-page-hero--light) .eva-btn-outline-white {
	background: transparent;
	color: #fff;
	border: 1.5px solid rgba(255, 255, 255, 0.45);
}
.eva-digi-page-hero:not(.eva-digi-page-hero--light) .eva-btn-outline-white:hover {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
}


.eva-digi-page-hero {
	padding: clamp(48px, 6vw, 80px) 0;
	background: linear-gradient(135deg, #061229 0%, #0B1D3A 55%, #122B58 100%);
	color: #fff;
	position: relative;
	overflow: hidden;
}
.eva-digi-page-hero::before {
	content: "";
	position: absolute;
	width: 420px;
	height: 420px;
	top: -160px;
	right: -100px;
	background: radial-gradient(circle, rgba(232, 130, 26, 0.18) 0%, transparent 70%);
	pointer-events: none;
}
.eva-digi-page-hero--light {
	background: var(--bg);
	color: var(--ink);
}
.eva-digi-page-hero--light::before {
	display: none;
}
.eva-digi-page-hero--light .eva-digi-tag {
	color: var(--orange);
}
.eva-digi-page-hero--light h1,
.eva-digi-page-hero--light .eva-pagehero-title {
	color: var(--ink);
}
.eva-digi-page-hero--light .eva-digi-page-lead,
.eva-digi-page-hero--light .eva-pagehero-sub {
	color: var(--muted);
}
.eva-digi-page-hero-inner {
	position: relative;
	z-index: 1;
	max-width: 760px;
}
.eva-digi-page-hero h1,
.eva-digi-page-hero .eva-pagehero-title {
	color: #fff;
	font-size: clamp(1.75rem, 1rem + 2vw, 2.75rem);
	font-weight: 800;
	line-height: 1.15;
	margin: 0 0 14px;
}
.eva-digi-page-lead,
.eva-digi-page-hero .eva-pagehero-sub {
	color: rgba(255, 255, 255, 0.82);
	font-size: clamp(15px, 0.85rem + 0.35vw, 17px);
	line-height: 1.65;
	max-width: 620px;
	margin: 0 0 22px;
}
.eva-digi-page-hero--split {
	padding: clamp(40px, 5vw, 72px) 0;
}
.eva-digi-page-hero-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: clamp(28px, 4vw, 48px);
	align-items: center;
}
.eva-digi-page-hero-visual .eva-mock {
	max-width: 100%;
}

/* Breadcrumb */
.eva-breadcrumb {
	background: #fff;
	border-bottom: 1px solid var(--line);
	padding: 12px 0;
}
.eva-breadcrumb-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	font-size: 13px;
	color: var(--muted);
}
.eva-breadcrumb-list a {
	color: var(--navy);
	font-weight: 600;
}
.eva-breadcrumb-list li:not(:last-child)::after {
	content: "/";
	margin-left: 8px;
	color: var(--line);
}

/* Inner sections */
.eva-section,
.eva-digi-inner-section {
	padding: clamp(48px, 6vw, 80px) 0;
}
.eva-section-head .eva-eyebrow,
.eva-section-head .eva-digi-tag {
	display: block;
	margin-bottom: 10px;
}
.eva-section-head h2 {
	font-size: clamp(1.5rem, 0.95rem + 1.4vw, 2.1rem);
	font-weight: 800;
}
.eva-digi-panel {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: clamp(24px, 4vw, 36px);
	box-shadow: var(--shadow-xs);
}

/* Blog archive */
.eva-digi-blog {
	padding: clamp(48px, 6vw, 80px) 0;
	background: var(--bg);
}
.eva-digi-blog-featured {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 28px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	overflow: hidden;
	margin-bottom: 32px;
	text-decoration: none;
	color: inherit;
	transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.eva-digi-blog-featured:hover {
	box-shadow: var(--shadow);
	transform: translateY(-3px);
	color: inherit;
	text-decoration: none;
}
.eva-digi-blog-featured .thumb {
	min-height: 280px;
	background: var(--navy-50);
}
.eva-digi-blog-featured .thumb img,
.eva-digi-blog-featured .thumb svg {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.eva-digi-blog-featured .body {
	padding: 32px 28px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.eva-digi-blog-featured .pill {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--orange);
	margin-bottom: 10px;
}
.eva-digi-blog-featured h3 {
	font-size: 1.5rem;
	font-weight: 800;
	margin: 0 0 12px;
	color: var(--ink);
}
.eva-digi-blog-featured p {
	color: var(--muted);
	margin: 0 0 16px;
}
.eva-digi-blog-featured .more {
	font-weight: 700;
	color: var(--orange);
	font-size: 14px;
}

/* Map legacy blog cards to Digilab case cards */
.eva-blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.eva-blog-card {
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--line);
	background: #fff;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.eva-blog-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow);
}
.eva-blog-list {
	padding: clamp(48px, 6vw, 80px) 0;
	background: var(--bg);
}

/* Single article */
.eva-digi-article-wrap {
	padding: clamp(40px, 5vw, 64px) 0;
	background: var(--bg);
}
.eva-digi-article {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	overflow: hidden;
	max-width: 860px;
	margin: 0 auto;
}
.eva-digi-article .eva-article-thumb {
	aspect-ratio: 16/9;
	overflow: hidden;
}
.eva-digi-article .eva-article-body {
	padding: clamp(28px, 4vw, 40px);
}
.eva-digi-article .eva-article-body h2,
.eva-digi-article .eva-article-body h3 {
	color: var(--ink);
	margin-top: 1.6em;
}
.eva-digi-page-hero--article .eva-article-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	font-size: 13px;
	color: var(--muted);
	margin-bottom: 12px;
}
.eva-digi-page-hero--article .pill {
	background: var(--orange-50);
	color: var(--orange-700);
	padding: 4px 10px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 11px;
	text-transform: uppercase;
}
.eva-digi-page-hero--article .eva-article-author {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 20px;
}
.eva-digi-page-hero--article .ava {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--navy);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 14px;
}

/* Contact page */
.eva-contact-section {
	background: var(--bg);
}
.eva-contact-grid {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: 32px;
	align-items: start;
}
.eva-contact-info {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 28px;
}
.eva-form-blk,
.eva-contact-form-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: clamp(24px, 4vw, 32px);
	box-shadow: var(--shadow-xs);
}

/* Legal */
.eva-legal-panel,
.eva-legal-body {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: clamp(28px, 4vw, 40px);
	max-width: 860px;
	margin: 0 auto;
}
.eva-legal-body h2 {
	font-size: 1.25rem;
	margin-top: 2em;
}

/* 404 */
.eva-404-search form {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 12px;
	margin-bottom: 32px;
}
.eva-404-search input {
	flex: 1;
	min-width: 200px;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	padding: 12px 16px;
	font-family: inherit;
}
.eva-404-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}
.eva-404-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 22px;
	text-decoration: none;
	color: inherit;
	transition: transform 0.22s ease, border-color 0.22s ease;
}
.eva-404-card:hover {
	transform: translateY(-4px);
	border-color: rgba(232, 130, 26, 0.45);
	color: inherit;
	text-decoration: none;
}
.eva-404-card .ico {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: var(--orange-50);
	color: var(--orange);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 12px;
}

/* CTA strip (all pages) */
.eva-digi-cta-strip {
	padding: clamp(40px, 5vw, 56px) 0;
	background: linear-gradient(135deg, #061229, #0B1D3A);
	color: #fff;
}
.eva-digi-cta-strip-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	flex-wrap: wrap;
}
.eva-digi-cta-copy h2 {
	color: #fff;
	font-size: clamp(1.35rem, 0.9rem + 1.2vw, 1.85rem);
	margin: 0 0 8px;
}
.eva-digi-cta-copy p {
	color: rgba(255, 255, 255, 0.78);
	margin: 0 0 14px;
	max-width: 560px;
}
.eva-digi-cta-strip .eva-final-trust {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.75);
}

/* Footer Digilab polish */
.eva-footer {
	background: #071526;
	border-top: 3px solid var(--orange);
}
.eva-footer-main {
	padding: clamp(48px, 6vw, 72px) 0 32px;
}
.eva-footer-grid {
	display: grid;
	grid-template-columns: 1.4fr repeat(3, 1fr);
	gap: 32px;
}
.eva-footer-title {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--orange);
	margin-bottom: 16px;
}
.eva-footer-list a {
	color: rgba(255, 255, 255, 0.72);
	font-size: 14px;
}
.eva-footer-list a:hover {
	color: #fff;
}
.eva-footer-tagline {
	color: rgba(255, 255, 255, 0.65);
	font-size: 14px;
	line-height: 1.65;
}

/* Pricing cards */
.eva-price-grid-2 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}
.eva-price-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 32px 28px;
}
.eva-price-card.featured {
	border: 2px solid var(--navy);
	box-shadow: var(--shadow-sm);
}

/* Service / sub-service cards reuse digi svc */
.eva-service-card,
.eva-industry {
	border-radius: var(--radius-lg);
	border: 1px solid var(--line);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.eva-service-card:hover,
.eva-industry:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-sm);
}

/* Pagination */
.pagination,
.nav-links {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 40px;
}
.pagination a,
.pagination span,
.nav-links a,
.nav-links span {
	padding: 10px 16px;
	border-radius: var(--radius-sm);
	border: 1px solid var(--line);
	background: #fff;
	font-weight: 600;
	font-size: 14px;
}
.pagination .current,
.nav-links .current {
	background: var(--navy);
	color: #fff;
	border-color: var(--navy);
}

@media (max-width: 1024px) {
	.eva-digi-page-hero-grid,
	.eva-contact-grid,
	.eva-digi-blog-featured {
		grid-template-columns: 1fr;
	}
	.eva-blog-grid,
	.eva-404-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.eva-footer-grid {
		grid-template-columns: 1fr 1fr;
	}
	.eva-price-grid-2 {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 640px) {
	.eva-blog-grid,
	.eva-404-grid {
		grid-template-columns: 1fr;
	}
	.eva-footer-grid {
		grid-template-columns: 1fr;
	}
	.eva-digi-cta-strip-inner {
		flex-direction: column;
		align-items: flex-start;
	}
}
