/* ==========================================================================
   Ecom Devs theme styles
   Brand values come from the Customizer as CSS variables (see inc/setup.php).
   ========================================================================== */

:root {
	--ed-primary: #1F4FD8;
	--ed-primary-dark: #143AA8;
	--ed-accent: #FF7A1A;
	--ed-accent-hover: #FF8F3F;
	--ed-accent-text: #C2410C;
	--ed-navy: #0B1B3F;
	--ed-bg: #F6F8FC;
	--ed-white: #FFFFFF;
	--ed-text: #3E4A63;
	--ed-muted: #5B6780;
	--ed-line: #E4E9F2;
	--ed-line-2: #C9D6FA;
	--ed-tint-blue: #EDF2FF;
	--ed-tint-orange: #FFF1E6;
	--ed-peach: #FFD9BC;
	--ed-on-blue: #DCE5FF;
	--ed-on-navy: #AEB8D0;
	--ed-font-heading: 'Bricolage Grotesque', 'Manrope', system-ui, sans-serif;
	--ed-font-body: 'Manrope', system-ui, sans-serif;
	--ed-btn-radius: 999px;
	--ed-radius: 24px;
	--ed-shadow: 0 24px 48px -24px rgba(11, 27, 63, .28);
	--ed-shadow-lg: 0 34px 70px -30px rgba(11, 27, 63, .45);
	--ed-gutter: clamp(20px, 5vw, 40px);
	--ed-section: clamp(72px, 9vw, 112px);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
	margin: 0;
	background: var(--ed-bg);
	color: var(--ed-navy);
	font-family: var(--ed-font-body);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}
img, svg, video { max-width: 100%; height: auto; }
svg { flex-shrink: 0; }
a { color: var(--ed-primary); }
a:hover { color: var(--ed-primary-dark); }
:focus-visible { outline: 3px solid var(--ed-accent); outline-offset: 3px; border-radius: 6px; }
h1, h2, h3, h4, h5, h6 { font-family: var(--ed-font-heading); color: var(--ed-navy); line-height: 1.1; letter-spacing: -0.02em; margin: 0 0 .5em; }
p { margin: 0 0 1em; }
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(1px, 1px, 1px, 1px); white-space: nowrap; }
.ed-skip { position: absolute; left: 16px; top: -60px; z-index: 999; padding: 10px 16px; background: var(--ed-navy); color: #fff; border-radius: 10px; font-weight: 700; }
.ed-skip:focus { top: 16px; color: #fff; }

.ed-container { width: 100%; max-width: calc(1200px + var(--ed-gutter) * 2); margin: 0 auto; padding: 0 var(--ed-gutter); }
.ed-container--narrow { max-width: calc(780px + var(--ed-gutter) * 2); }
.ed-main { display: block; background: var(--ed-bg); }
.ed-section { padding: var(--ed-section) 0; }
.ed-section--tight { padding: clamp(64px, 8vw, 104px) 0; }

.ed-bg-light { background-color: var(--ed-bg); }
.ed-bg-white { background-color: var(--ed-white); }
.ed-bg-dots, .ed-dotted { background-color: var(--ed-bg); background-image: radial-gradient(#D3DDF7 1.3px, transparent 1.3px); background-size: 22px 22px; }
.ed-bg-navy { background-color: var(--ed-navy); color: #fff; }
.ed-bg-navy .ed-h2, .ed-bg-navy .ed-h4, .ed-bg-navy h2, .ed-bg-navy h3 { color: #fff; }
.ed-bg-navy .ed-lead, .ed-bg-navy p { color: var(--ed-on-navy); }
.ed-dotted-w { position: absolute; inset: 0; background-image: radial-gradient(rgba(255, 255, 255, .18) 1.3px, transparent 1.3px); background-size: 22px 22px; pointer-events: none; }

.ed-stack-10, .ed-stack-14, .ed-stack-40, .ed-stack-48, .ed-stack-56 { display: flex; flex-direction: column; }
.ed-stack-10 { gap: 10px; } .ed-stack-14 { gap: 14px; } .ed-stack-40 { gap: 40px; } .ed-stack-48 { gap: 48px; } .ed-stack-56 { gap: 56px; }
.ed-self-start { align-self: flex-start; }

.ed-grid { display: grid; gap: 20px; grid-template-columns: repeat(var(--ed-cols, 3), minmax(0, 1fr)); }
.ed-grid--1 { --ed-cols: 1; } .ed-grid--2 { --ed-cols: 2; } .ed-grid--3 { --ed-cols: 3; } .ed-grid--4 { --ed-cols: 4; }
.ed-grid--gap24 { gap: 24px; }

.ed-eyebrow { display: block; font-size: 13px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--ed-accent-text); }
.ed-h2 { margin: 0; font-family: var(--ed-font-heading); font-size: clamp(32px, 4.2vw, 48px); font-weight: 700; line-height: 1.08; letter-spacing: -0.03em; color: var(--ed-navy); text-wrap: balance; }
.ed-h2--white { color: #fff; }
.ed-h3 { margin: 0; font-family: var(--ed-font-heading); font-size: clamp(26px, 3vw, 34px); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; color: var(--ed-navy); }
.ed-h4 { margin: 0; font-family: var(--ed-font-heading); font-size: clamp(19px, 2vw, 22px); font-weight: 700; line-height: 1.25; letter-spacing: -0.01em; color: var(--ed-navy); }
.ed-lead { margin: 0; font-size: clamp(16px, 1.6vw, 18px); line-height: 1.65; color: var(--ed-text); }
.ed-hl { color: var(--ed-primary); }
.ed-empty { margin: 0; padding: 16px 18px; border: 1.5px dashed var(--ed-line-2); border-radius: 14px; background: var(--ed-white); color: var(--ed-muted); font-size: 15px; }

/* ---------- Buttons ---------- */
.ed-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 10px;
	min-height: 52px; padding: 0 26px; border: 1.5px solid transparent; border-radius: var(--ed-btn-radius);
	font-family: var(--ed-font-body); font-size: 16px; font-weight: 800; line-height: 1.2; text-decoration: none; cursor: pointer;
	transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.ed-btn:hover { transform: translateY(-1px); }
.ed-btn--lg { min-height: 58px; padding: 0 30px; font-size: 16.5px; }
.ed-btn--sm { min-height: 44px; padding: 0 18px; font-size: 14px; border-radius: 12px; }
.ed-btn--block { width: 100%; }
.ed-btn--orange { background: var(--ed-accent); color: var(--ed-navy); }
.ed-btn--orange:hover { background: var(--ed-accent-hover); color: var(--ed-navy); }
.ed-btn--glow { box-shadow: 0 16px 32px -14px rgba(255, 122, 26, .85); }
.ed-btn--blue { background: var(--ed-primary); color: #fff; }
.ed-btn--blue:hover { background: var(--ed-primary-dark); color: #fff; }
.ed-btn--ghost { background: var(--ed-white); border-color: var(--ed-line-2); color: var(--ed-primary); }
.ed-btn--ghost:hover { background: var(--ed-tint-blue); border-color: var(--ed-primary); color: var(--ed-primary); }
.ed-btn--white { background: #fff; color: var(--ed-navy); }
.ed-btn--white:hover { background: var(--ed-tint-blue); color: var(--ed-navy); }
.ed-btn--outline-light { background: transparent; border-color: rgba(255, 255, 255, .24); color: #fff; font-weight: 700; }
.ed-btn--outline-light:hover { border-color: var(--ed-accent); color: #FF9A4D; }
.ed-arr { transition: transform .2s ease; }
.ed-btn:hover .ed-arr, .ed-card--link:hover .ed-arr, .ed-more:hover .ed-arr { transform: translateX(4px); }
.ed-btns { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Cards & icon tiles ---------- */
.ed-card { position: relative; display: flex; flex-direction: column; background: var(--ed-white); border: 1px solid var(--ed-line); border-radius: var(--ed-radius); }
.ed-card--link, .ed-card--lift { text-decoration: none; color: inherit; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.ed-card--link:hover, .ed-card--lift:hover { transform: translateY(-4px); box-shadow: var(--ed-shadow); border-color: var(--ed-line-2); color: inherit; }

.ed-ico { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; width: 52px; height: 52px; border-radius: 14px; }
.ed-ico--xs { width: 32px; height: 32px; border-radius: 9px; }
.ed-ico--sm { width: 40px; height: 40px; border-radius: 11px; }
.ed-ico--lg { width: 56px; height: 56px; border-radius: 16px; }
.ed-ico--blue { background: var(--ed-primary); color: #fff; }
.ed-ico--orange { background: var(--ed-accent); color: var(--ed-navy); }
.ed-ico--soft-blue { background: var(--ed-tint-blue); color: var(--ed-primary); }
.ed-ico--soft-orange { background: var(--ed-tint-orange); color: var(--ed-accent-text); }
.ed-ico--glass { background: rgba(255, 255, 255, .16); color: #fff; }

.ed-pill { display: inline-flex; align-items: center; align-self: flex-start; padding: 6px 12px; border-radius: 999px; font-size: 12.5px; font-weight: 800; line-height: 1.3; }
.ed-pill--blue { background: var(--ed-tint-blue); color: var(--ed-primary); }
.ed-pill--orange { background: var(--ed-tint-orange); color: var(--ed-accent-text); }

.ed-more { margin-top: auto; padding-top: 8px; display: inline-flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 800; color: var(--ed-primary); text-decoration: none; }

/* ---------- Header ---------- */
.ed-header { position: relative; z-index: 60; background: rgba(255, 255, 255, .92); border-bottom: 1px solid var(--ed-line); backdrop-filter: saturate(1.4) blur(10px); -webkit-backdrop-filter: saturate(1.4) blur(10px); }
.ed-sticky-header .ed-header { position: sticky; top: 0; }
.admin-bar.ed-sticky-header .ed-header { top: 32px; }
.ed-header.is-scrolled { box-shadow: 0 10px 30px -20px rgba(11, 27, 63, .35); }
.ed-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 88px; }
.ed-header__panel { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-grow: 1; }
.ed-header__actions { display: flex; align-items: center; gap: 8px; }
.ed-header__actions .ed-btn { min-height: 48px; padding: 0 22px; font-size: 15px; }
.ed-header__phone { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; padding: 0 14px; border-radius: 999px; color: var(--ed-navy); font-size: 15px; font-weight: 700; text-decoration: none; white-space: nowrap; }
.ed-header__phone svg { color: var(--ed-primary); }
.ed-header__phone:hover { background: var(--ed-tint-blue); color: var(--ed-navy); }

.ed-logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.ed-logo__mark { color: var(--ed-primary); }
.ed-logo__text { font-family: var(--ed-font-heading); font-size: 24px; font-weight: 800; letter-spacing: -0.02em; color: var(--ed-navy); line-height: 1; }
.ed-logo__text span { color: #EA580C; }
.ed-logo--light .ed-logo__text { color: #fff; }
.ed-logo--light .ed-logo__text span { color: #FF9A4D; }
.ed-logo--image img { display: block; max-height: 52px; width: auto; }

.ed-navwrap { margin: 0 auto; }
.ed-nav { list-style: none; margin: 0; padding: 6px; display: flex; align-items: center; gap: 4px; background: var(--ed-bg); border: 1px solid var(--ed-line); border-radius: 999px; }
.ed-nav > li { position: relative; display: flex; align-items: center; }
.ed-nav > li > a { display: flex; align-items: center; min-height: 44px; padding: 0 18px; border-radius: 999px; color: var(--ed-text); font-size: 15px; font-weight: 700; text-decoration: none; white-space: nowrap; transition: background .2s ease, color .2s ease; }
.ed-nav > li > a:hover { background: var(--ed-tint-blue); color: var(--ed-navy); }
.ed-nav > li.current-menu-item > a, .ed-nav > li.current-menu-ancestor > a, .ed-nav > li.current_page_item > a, .ed-nav > li.current-menu-parent > a {
	background: var(--ed-primary); color: #fff; box-shadow: 0 8px 18px -10px rgba(31, 79, 216, .8);
}
.ed-sub-toggle { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 44px; margin-left: -12px; padding: 0; border: 0; background: transparent; color: var(--ed-text); cursor: pointer; border-radius: 8px; }
.ed-sub-toggle svg { transition: transform .2s ease; }
li.is-open > .ed-sub-toggle svg { transform: rotate(180deg); }
.ed-nav > li.current-menu-item > .ed-sub-toggle, .ed-nav > li.current-menu-ancestor > .ed-sub-toggle { margin-left: 2px; }

.ed-nav .sub-menu, .ed-mega {
	position: absolute; top: calc(100% + 12px); left: 50%; z-index: 80;
	opacity: 0; visibility: hidden; transform: translate(-50%, 8px);
	transition: opacity .2s ease, transform .2s ease, visibility .2s;
	background: #fff; border: 1px solid var(--ed-line); border-radius: 22px; box-shadow: 0 30px 60px -24px rgba(11, 27, 63, .30);
}
.ed-nav .sub-menu::before, .ed-mega::before { content: ""; position: absolute; left: 0; right: 0; top: -14px; height: 14px; }
.ed-nav > li:hover > .sub-menu, .ed-nav > li:focus-within > .sub-menu, .ed-nav > li.is-open > .sub-menu,
.ed-nav > li:hover > .ed-mega, .ed-nav > li:focus-within > .ed-mega, .ed-nav > li.is-open > .ed-mega { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.ed-nav .sub-menu { list-style: none; margin: 0; padding: 10px; min-width: 240px; }
.ed-nav .sub-menu a { display: block; padding: 10px 14px; border-radius: 12px; color: var(--ed-navy); font-size: 15px; font-weight: 700; text-decoration: none; }
.ed-nav .sub-menu a:hover { background: var(--ed-bg); }

.ed-mega { width: min(780px, 92vw); padding: 12px; display: flex; gap: 12px; }
.ed-mega__list { list-style: none; margin: 0; padding: 0; flex-grow: 1; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 4px; }
.ed-mega__item { display: flex; gap: 12px; align-items: flex-start; padding: 12px; border-radius: 14px; text-decoration: none; }
.ed-mega__item:hover { background: var(--ed-bg); }
.ed-mega__text { display: flex; flex-direction: column; gap: 2px; }
.ed-mega__title { font-size: 15px; font-weight: 700; color: var(--ed-navy); line-height: 1.35; }
.ed-mega__desc { font-size: 13px; line-height: 1.45; color: var(--ed-muted); }
.ed-mega__card { width: 220px; flex-shrink: 0; padding: 20px; display: flex; flex-direction: column; justify-content: space-between; gap: 16px; border-radius: 16px; background: var(--ed-primary); color: #fff; }
.ed-mega__card > div { display: flex; flex-direction: column; gap: 8px; }
.ed-mega__eyebrow { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #FFD2B0; }
.ed-mega__card-title { font-family: var(--ed-font-heading); font-size: 20px; font-weight: 700; line-height: 1.2; }
.ed-mega__card-text { font-size: 13.5px; line-height: 1.5; color: var(--ed-on-blue); }

.ed-burger { display: none; align-items: center; justify-content: center; width: 48px; height: 48px; padding: 0; border: 1px solid var(--ed-line); border-radius: 14px; background: #fff; color: var(--ed-navy); cursor: pointer; }
.ed-burger__close { display: none; }
.ed-burger[aria-expanded="true"] .ed-burger__open { display: none; }
.ed-burger[aria-expanded="true"] .ed-burger__close { display: block; }

/* ---------- Hero ---------- */
.ed-hero { position: relative; overflow: hidden; }
.ed-hero__inner { position: relative; display: grid; grid-template-columns: minmax(0, 560px) minmax(0, 1fr); align-items: center; gap: 64px; padding-top: 72px; padding-bottom: 104px; }
.ed-hero--xl .ed-hero__inner { grid-template-columns: minmax(0, 610px) minmax(0, 1fr); gap: 56px; padding-top: 80px; }
.ed-hero--novis .ed-hero__inner, .ed-hero--center .ed-hero__inner { grid-template-columns: minmax(0, 1fr); }
.ed-hero__copy { display: flex; flex-direction: column; gap: 26px; }
.ed-hero__title { margin: 0; font-family: var(--ed-font-heading); font-size: clamp(40px, 5.4vw, 66px); font-weight: 700; line-height: 1.02; letter-spacing: -0.035em; color: var(--ed-navy); text-wrap: balance; }
.ed-hero--xl .ed-hero__title { font-size: clamp(42px, 5.6vw, 68px); }
.ed-hero--md .ed-hero__title { font-size: clamp(38px, 4.6vw, 56px); }
.ed-hero__text { margin: 0; max-width: 560px; font-size: clamp(17px, 1.7vw, 19px); line-height: 1.6; color: var(--ed-text); }

.ed-hero--center { text-align: center; }
.ed-hero--center .ed-hero__inner { padding-top: 88px; padding-bottom: 96px; justify-items: center; }
.ed-hero--center .ed-hero__copy { align-items: center; gap: 24px; max-width: 980px; }
.ed-hero--center .ed-hero__title { max-width: 900px; font-size: clamp(40px, 5.6vw, 68px); }
.ed-hero--center .ed-hero__text { max-width: 680px; }
.ed-hero--sm .ed-hero__inner { padding-top: 64px; padding-bottom: 72px; }
.ed-hero--sm .ed-hero__title { font-size: clamp(34px, 4.4vw, 54px); }
.ed-hero__ring { position: absolute; left: -120px; bottom: -160px; width: 360px; height: 360px; border-radius: 50%; border: 60px solid var(--ed-tint-blue); pointer-events: none; }
.ed-hero__dot { position: absolute; right: 7%; top: 70px; width: 90px; height: 90px; border-radius: 50%; background: var(--ed-accent); pointer-events: none; }
.ed-hero--sm .ed-hero__ring { width: 260px; height: 260px; border-width: 44px; bottom: -150px; }
.ed-hero--sm .ed-hero__dot { width: 64px; height: 64px; top: 48px; }

.ed-crumbs { display: flex; flex-wrap: wrap; gap: 10px; font-size: 14px; font-weight: 700; color: var(--ed-muted); }
.ed-crumbs a { color: var(--ed-muted); text-decoration: none; }
.ed-crumbs a:hover { color: var(--ed-primary); }
.ed-crumbs [aria-current] { color: var(--ed-primary); }
.ed-badge { align-self: flex-start; display: inline-flex; align-items: center; gap: 10px; min-height: 36px; padding: 0 16px 0 8px; border-radius: 999px; background: #fff; border: 1px solid var(--ed-line); font-size: 14px; font-weight: 700; color: var(--ed-text); }
.ed-hero--center .ed-badge { align-self: center; }
.ed-badge:not(:has(.ed-badge__tag)) { padding-left: 16px; }
.ed-badge__tag { display: inline-flex; align-items: center; height: 24px; padding: 0 10px; border-radius: 999px; background: var(--ed-tint-orange); color: var(--ed-accent-text); font-size: 12px; font-weight: 800; letter-spacing: .06em; }
.ed-checks { list-style: none; margin: 0; padding: 8px 0 0; display: flex; flex-wrap: wrap; gap: 12px 24px; }
.ed-checks li { display: flex; align-items: center; gap: 8px; font-size: 14.5px; font-weight: 600; color: var(--ed-text); }
.ed-checks svg { color: var(--ed-primary); }
.ed-chiprow { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; padding-top: 6px; }
.ed-chiprow__label { font-size: 14px; font-weight: 700; color: var(--ed-muted); }
.ed-chip { padding: 8px 14px; border-radius: 10px; background: #fff; border: 1px solid var(--ed-line); font-family: var(--ed-font-heading); font-size: 16px; font-weight: 700; color: var(--ed-navy); }
.ed-chiplinks { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; padding-top: 8px; }
.ed-chiplink { display: inline-flex; align-items: center; min-height: 44px; padding: 0 18px; border-radius: 999px; background: #fff; border: 1px solid var(--ed-line); color: var(--ed-navy); font-size: 14.5px; font-weight: 700; text-decoration: none; transition: border-color .2s ease, color .2s ease; }
.ed-chiplink:hover { border-color: var(--ed-primary); color: var(--ed-primary); }

/* ---------- Hero visuals ---------- */
.ed-vis { position: relative; height: 540px; width: 100%; }
.ed-vis__back { position: absolute; inset: 30px 0 0 30px; border-radius: 36px; background: var(--ed-tint-orange); }
.ed-vis__window { position: absolute; left: 0; top: 0; right: 40px; padding: 16px; display: flex; flex-direction: column; gap: 14px; background: #fff; border-radius: 24px; box-shadow: var(--ed-shadow-lg); }
.ed-vis__bar { display: flex; align-items: center; gap: 12px; }
.ed-dots { display: inline-flex; gap: 6px; }
.ed-dots i { width: 10px; height: 10px; border-radius: 50%; background: var(--ed-line-2); }
.ed-dots i:first-child { background: var(--ed-accent); }
.ed-vis__url { flex-grow: 1; display: flex; align-items: center; height: 28px; padding: 0 12px; border-radius: 8px; background: var(--ed-bg); font-size: 12px; font-weight: 700; color: var(--ed-muted); }
.ed-vis__card { background: #fff; border-radius: 22px; box-shadow: 0 30px 60px -24px rgba(11, 27, 63, .45); }
.ed-vis__float { position: absolute; right: 0; bottom: 20px; width: 250px; padding: 18px; display: flex; flex-direction: column; gap: 12px; background: var(--ed-navy); border-radius: 20px; box-shadow: 0 30px 60px -24px rgba(11, 27, 63, .55); color: #fff; }
.ed-vis__float strong { font-size: 13px; font-weight: 800; }
.ed-vis__float small { font-size: 12.5px; color: var(--ed-on-navy); }
.ed-vis__progress { display: flex; gap: 6px; }
.ed-vis__progress i { flex-grow: 1; height: 6px; border-radius: 3px; background: rgba(255, 255, 255, .2); }
.ed-vis__progress i.is-on { background: var(--ed-accent); }
.ed-vis__check { display: flex; align-items: center; gap: 10px; font-size: 12.5px; color: var(--ed-on-blue); }
.ed-vis__tick { width: 22px; height: 22px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--ed-accent); color: var(--ed-navy); }
.ed-vis__swatches { display: flex; gap: 8px; }
.ed-vis__swatches i { width: 28px; height: 28px; border-radius: 50%; }
.ed-sw--blue { background: var(--ed-primary); } .ed-sw--orange { background: var(--ed-accent); } .ed-sw--navy { background: var(--ed-navy); }
.ed-sw--tint { background: var(--ed-tint-blue); } .ed-sw--white { background: #fff; } .ed-sw--line { background: var(--ed-line-2); }
.ed-sk { display: block; border-radius: 5px; background: var(--ed-line); }
.ed-sk--blue { background: var(--ed-line-2); } .ed-sk--peach { background: var(--ed-peach); } .ed-sk--navy { background: var(--ed-navy); }
.ed-sk--blue-solid { background: var(--ed-primary); } .ed-sk--orange-solid { background: var(--ed-accent); } .ed-sk--navy-solid { background: var(--ed-navy); }
.ed-tile { display: block; border-radius: 12px; background: var(--ed-tint-blue); }
.ed-tile--orange { background: var(--ed-tint-orange); } .ed-tile--solid { background: var(--ed-primary); }

.ed-vis-store__banner { height: 150px; padding: 24px; display: flex; flex-direction: column; justify-content: center; gap: 10px; border-radius: 16px; background: var(--ed-primary); }
.ed-vis-store__banner strong { font-family: var(--ed-font-heading); font-size: 26px; font-weight: 700; color: #fff; }
.ed-vis-store__banner span, .ed-vis-phone__banner span { align-self: flex-start; padding: 8px 14px; border-radius: 999px; background: var(--ed-accent); color: var(--ed-navy); font-size: 12.5px; font-weight: 800; }
.ed-vis-store__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.ed-vis-store__grid > div { display: flex; flex-direction: column; gap: 8px; }
.ed-vis-store__grid .ed-tile { height: 120px; }

.ed-vis-design { display: flex; gap: 12px; height: 330px; }
.ed-vis-design__panel { width: 110px; flex-shrink: 0; display: flex; flex-direction: column; gap: 10px; padding: 12px; border-radius: 12px; background: var(--ed-bg); }
.ed-vis-design__panel--sm { width: 90px; }
.ed-vis-design__panel b { font-size: 11px; font-weight: 800; color: var(--ed-muted); }
.ed-vis-design__panel .ed-sw { display: block; height: 28px; border-radius: 8px; }
.ed-vis-design__canvas { flex-grow: 1; display: flex; flex-direction: column; gap: 10px; padding: 14px; border-radius: 12px; border: 2px dashed var(--ed-line-2); }
.ed-vis-design__banner { height: 70px; border-radius: 10px; background: var(--ed-primary); }
.ed-vis-design__split { flex-grow: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.ed-vis-design__img { border-radius: 10px; background: var(--ed-tint-blue); }
.ed-vis-design__copy { display: flex; flex-direction: column; gap: 8px; }
.ed-vis-design__cta { margin-top: auto; height: 34px; border-radius: 999px; background: var(--ed-accent); }

.ed-vis-pos { display: flex; gap: 12px; height: 330px; }
.ed-vis-pos__grid { flex-grow: 1; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); grid-template-rows: repeat(3, minmax(0, 1fr)); gap: 10px; }
.ed-vis-pos__order { width: 150px; flex-shrink: 0; display: flex; flex-direction: column; gap: 10px; padding: 14px; border-radius: 12px; background: var(--ed-bg); }
.ed-vis-pos__order b { font-size: 11px; font-weight: 800; color: var(--ed-muted); }
.ed-vis-pos__line, .ed-vis-pos__total { display: flex; justify-content: space-between; }
.ed-vis-pos__total { margin-top: auto; padding-top: 10px; border-top: 1px solid var(--ed-line); }
.ed-vis-pos__charge { height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 10px; background: var(--ed-accent); color: var(--ed-navy); font-size: 13px; font-weight: 800; }

.ed-vis-phone { position: absolute; left: 90px; top: 0; width: 270px; height: 540px; padding: 12px; background: var(--ed-navy); border-radius: 44px; box-shadow: 0 34px 70px -30px rgba(11, 27, 63, .55); }
.ed-vis-phone__screen { height: 100%; padding: 18px 14px; border-radius: 34px; background: #fff; display: flex; flex-direction: column; gap: 12px; }
.ed-vis-phone__notch { align-self: center; width: 80px; height: 8px; border-radius: 4px; background: var(--ed-line); }
.ed-vis-phone__top { display: flex; justify-content: space-between; align-items: center; }
.ed-vis-phone__top i { width: 26px; height: 26px; border-radius: 50%; background: var(--ed-tint-blue); }
.ed-vis-phone__banner { height: 130px; padding: 16px; display: flex; flex-direction: column; justify-content: flex-end; gap: 8px; border-radius: 18px; background: var(--ed-primary); }
.ed-vis-phone__banner strong { font-family: var(--ed-font-heading); font-size: 18px; font-weight: 700; color: #fff; }
.ed-vis-phone__banner span { padding: 5px 10px; font-size: 10.5px; }
.ed-vis-phone__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.ed-vis-phone__grid > div { display: flex; flex-direction: column; gap: 6px; }
.ed-vis-phone__grid .ed-tile { height: 100px; }
.ed-vis-phone__tabs { margin-top: auto; display: flex; justify-content: space-around; padding-top: 10px; border-top: 1px solid var(--ed-line); }
.ed-vis-phone__tabs i { width: 22px; height: 22px; border-radius: 7px; background: var(--ed-line); }
.ed-vis-phone__tabs i.is-on { background: var(--ed-primary); }
.ed-vis__toast { position: absolute; right: 0; top: 90px; width: 250px; padding: 16px; display: flex; gap: 12px; align-items: center; background: #fff; border: 1px solid var(--ed-line); border-radius: 20px; box-shadow: 0 30px 60px -24px rgba(11, 27, 63, .35); }
.ed-vis__toast > span:last-child { display: flex; flex-direction: column; gap: 2px; }
.ed-vis__toast strong { font-size: 13px; font-weight: 800; color: var(--ed-navy); }
.ed-vis__toast small { font-size: 12px; color: var(--ed-muted); }

.ed-vis-dash__tiles { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.ed-vis-dash__tiles > div { display: flex; flex-direction: column; gap: 8px; padding: 12px; border-radius: 12px; background: var(--ed-bg); }
.ed-vis-dash__tiles b { font-size: 11px; font-weight: 800; color: var(--ed-muted); }
.ed-vis-dash__chart { height: 250px; padding: 18px; display: flex; align-items: flex-end; gap: 14px; border-radius: 14px; background: var(--ed-bg); }
.ed-bar { flex-grow: 1; border-radius: 8px 8px 0 0; background: var(--ed-line-2); }
.ed-bar--blue { background: var(--ed-primary); } .ed-bar--orange { background: var(--ed-accent); }

.ed-vis-flow { height: 330px; padding: 20px 28px; border-radius: 14px; display: flex; flex-direction: column; align-items: flex-start; }
.ed-flow-node { display: flex; align-items: center; gap: 12px; padding: 12px 16px; border-radius: 14px; background: #fff; border: 1px solid var(--ed-line); }
.ed-flow-node > span:last-child { display: flex; flex-direction: column; font-size: 14px; font-weight: 800; color: var(--ed-navy); line-height: 1.35; }
.ed-flow-node small { font-size: 11px; font-weight: 800; color: var(--ed-muted); }
.ed-flow-node--blue { margin-left: 40px; background: var(--ed-primary); border-color: var(--ed-primary); }
.ed-flow-node--blue > span:last-child { color: #fff; }
.ed-flow-node--blue small { color: var(--ed-on-blue); }
.ed-flow-node--3 { margin-left: 80px; }
.ed-flow-line { margin-left: 32px; width: 2px; height: 34px; background: var(--ed-line-2); }
.ed-flow-line--2 { margin-left: 72px; }
.ed-vis__float--chat { gap: 10px; }
.ed-bubble { align-self: flex-start; max-width: 80%; padding: 8px 12px; border-radius: 12px 12px 12px 4px; background: rgba(255, 255, 255, .12); font-size: 12px; color: var(--ed-on-blue); }
.ed-bubble--me { align-self: flex-end; max-width: 85%; border-radius: 12px 12px 4px 12px; background: var(--ed-accent); color: var(--ed-navy); font-weight: 700; }

.ed-vis-video__player { height: 210px; display: flex; align-items: center; justify-content: center; border-radius: 16px; background: var(--ed-primary); }
.ed-vis-video__play { width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--ed-accent); color: var(--ed-navy); }
.ed-vis-video__timeline { position: relative; display: flex; flex-direction: column; gap: 8px; padding: 22px 12px 12px; border-radius: 12px; background: var(--ed-bg); }
.ed-vis-video__timeline > div { display: flex; gap: 6px; height: 26px; }
.ed-vis-video__timeline > div.is-thin { height: 18px; }
.ed-vis-video__head { position: absolute; left: 38%; top: 8px; bottom: 8px; width: 2px; background: var(--ed-accent); z-index: 1; }
.ed-clip { display: block; border-radius: 6px; }
.ed-clip--blue { background: var(--ed-primary); } .ed-clip--soft { background: var(--ed-line-2); } .ed-clip--peach { background: var(--ed-peach); }
.ed-clip--orange { background: var(--ed-accent); } .ed-clip--tint { background: var(--ed-tint-blue); }
.ed-vis__reel { position: absolute; right: 0; bottom: 20px; width: 170px; height: 290px; padding: 14px; display: flex; flex-direction: column; justify-content: flex-end; gap: 8px; background: var(--ed-navy); border-radius: 24px; box-shadow: 0 30px 60px -24px rgba(11, 27, 63, .55); color: #fff; }
.ed-vis__reel-tag { align-self: flex-start; padding: 4px 8px; border-radius: 6px; background: var(--ed-accent); font-size: 10.5px; font-weight: 800; color: var(--ed-navy); }
.ed-vis__reel strong { font-family: var(--ed-font-heading); font-size: 16px; font-weight: 700; line-height: 1.2; }
.ed-vis__reel-bar { height: 4px; border-radius: 2px; background: rgba(255, 255, 255, .2); }
.ed-vis__reel-bar i { display: block; width: 60%; height: 4px; border-radius: 2px; background: #fff; }

.ed-vis__image { position: absolute; left: 0; top: 0; right: 40px; bottom: 30px; overflow: hidden; border-radius: 24px; box-shadow: var(--ed-shadow-lg); background: #fff; }
.ed-vis__image img { width: 100%; height: 100%; object-fit: cover; display: block; }

.ed-vis--home { height: 560px; }
.ed-vis-home__stage { position: absolute; inset: 20px 0 0 40px; overflow: hidden; border-radius: 36px; background: var(--ed-primary); background-image: radial-gradient(rgba(255, 255, 255, .18) 1.3px, transparent 1.3px); background-size: 22px 22px; }
.ed-vis-home__sun { position: absolute; right: -70px; bottom: -70px; width: 240px; height: 240px; border-radius: 50%; background: var(--ed-accent); }
.ed-vis-home__ring { position: absolute; left: -40px; top: -40px; width: 140px; height: 140px; border-radius: 50%; border: 22px solid rgba(255, 255, 255, .14); }
.ed-vis-home__product { position: absolute; left: 0; top: 70px; width: 300px; padding: 14px; display: flex; flex-direction: column; gap: 12px; }
.ed-vis-home__img { height: 170px; display: flex; align-items: center; justify-content: center; border-radius: 14px; background: var(--ed-tint-orange); color: #EA580C; }
.ed-vis-home__meta { display: flex; flex-direction: column; gap: 6px; padding: 0 4px; }
.ed-vis-home__meta strong { font-size: 15px; font-weight: 800; color: var(--ed-navy); }
.ed-vis-home__meta span { font-size: 12.5px; font-weight: 600; color: var(--ed-muted); }
.ed-vis-home__buy { display: flex; gap: 8px; }
.ed-vis-home__buy span { flex-grow: 1; height: 38px; display: flex; align-items: center; justify-content: center; border-radius: 10px; background: var(--ed-navy); color: #fff; font-size: 13px; font-weight: 800; }
.ed-vis-home__buy i { width: 38px; height: 38px; border-radius: 10px; background: var(--ed-tint-blue); }
.ed-vis-home__flow { position: absolute; right: 24px; top: 0; width: 290px; padding: 18px; display: flex; flex-direction: column; gap: 0; }
.ed-vis-home__flowhead { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.ed-vis-home__flowhead strong { font-size: 13px; font-weight: 800; color: var(--ed-navy); }
.ed-live { display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; font-weight: 800; color: var(--ed-primary); }
.ed-live::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--ed-primary); animation: ed-pulse 1.6s ease-in-out infinite; }
@keyframes ed-pulse { 50% { opacity: .35; } }
.ed-node { display: flex; align-items: center; gap: 10px; padding: 10px; border-radius: 12px; background: var(--ed-bg); border: 1px solid var(--ed-line); font-size: 13px; font-weight: 700; color: var(--ed-navy); }
.ed-node--blue { background: var(--ed-primary); border-color: var(--ed-primary); color: #fff; }
.ed-node__line { width: 2px; height: 14px; margin-left: 25px; background: var(--ed-line-2); }
.ed-vis-home__chips { position: absolute; right: 40px; bottom: 36px; width: 300px; padding: 18px; display: flex; flex-direction: column; gap: 12px; }
.ed-vis-home__chips strong { font-size: 13px; font-weight: 800; color: var(--ed-navy); }
.ed-vis-home__chips div { display: flex; flex-wrap: wrap; gap: 8px; }

/* ---------- Platform strip ---------- */
.ed-strip { border-top: 1px solid var(--ed-line); border-bottom: 1px solid var(--ed-line); }
.ed-strip__inner { display: flex; align-items: center; gap: 48px; padding-top: 40px; padding-bottom: 40px; }
.ed-strip__label { flex-shrink: 0; width: 170px; font-size: 14px; font-weight: 700; line-height: 1.45; color: var(--ed-muted); }
.ed-strip__items { list-style: none; margin: 0; padding: 0; flex-grow: 1; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px 32px; font-family: var(--ed-font-heading); font-size: clamp(19px, 2vw, 24px); font-weight: 700; letter-spacing: -0.02em; color: #6B778F; }

/* ---------- Section heads ---------- */
.ed-head { display: flex; gap: 40px; }
.ed-head__main { display: flex; flex-direction: column; gap: 16px; max-width: 720px; }
.ed-head--center { justify-content: center; text-align: center; }
.ed-head--center .ed-head__main { align-items: center; max-width: 760px; }
.ed-head--bar, .ed-head--split, .ed-head--left { align-items: flex-end; justify-content: space-between; }
.ed-head--split .ed-head__side { max-width: 420px; }
.ed-head--split .ed-head__side .ed-lead { font-size: 16px; line-height: 1.6; }
.ed-head__side { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; flex-shrink: 0; }

/* ---------- Intro & stats ---------- */
.ed-intro { display: grid; grid-template-columns: minmax(0, 640px) minmax(0, 1fr); gap: 80px; align-items: end; }
.ed-intro__main { display: flex; flex-direction: column; gap: 18px; }
.ed-intro__side { display: flex; flex-direction: column; gap: 24px; align-items: flex-start; }
.ed-stat { gap: 10px; padding: 32px; }
.ed-stat__value { font-family: var(--ed-font-heading); font-size: clamp(44px, 5vw, 56px); font-weight: 700; line-height: 1; letter-spacing: -0.03em; color: var(--ed-primary); }
.ed-stat__suffix { color: var(--ed-accent); }
.ed-stat__label { font-size: 16px; font-weight: 700; color: var(--ed-text); }
.ed-statstrip { border-top: 1px solid var(--ed-line); border-bottom: 1px solid var(--ed-line); }
.ed-statstrip__grid { display: grid; grid-template-columns: repeat(var(--ed-cols, 4), minmax(0, 1fr)); }
.ed-stat--strip { display: flex; flex-direction: column; padding: 40px 32px; border-right: 1px solid var(--ed-line); }
.ed-stat--strip:last-child { border-right: 0; }
.ed-stat--strip .ed-stat__value { font-size: clamp(38px, 4vw, 48px); }
.ed-stat--strip .ed-stat__label { font-size: 15px; }

/* ---------- Services ---------- */
.ed-bento { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: minmax(290px, auto); gap: 20px; }
.ed-bento > .ed-flag { grid-row: span 2; }
.ed-svc { gap: 14px; padding: 28px; }
.ed-svc__title { font-family: var(--ed-font-heading); font-size: 22px; font-weight: 700; letter-spacing: -0.01em; line-height: 1.2; color: var(--ed-navy); }
.ed-svc__text { font-size: 15px; line-height: 1.6; color: var(--ed-muted); }
.ed-flag { overflow: hidden; gap: 18px; padding: 32px; border-radius: 28px; background: var(--ed-primary); border-color: var(--ed-primary); color: #fff; }
.ed-flag:hover { color: #fff; border-color: var(--ed-primary); }
.ed-flag > * { position: relative; }
.ed-flag > .ed-dotted-w { position: absolute; }
.ed-flag__sun, .ed-svc-card__sun { position: absolute !important; right: -80px; bottom: -80px; width: 220px; height: 220px; border-radius: 50%; background: var(--ed-accent); }
.ed-flag__label { font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: #FFD2B0; }
.ed-flag__title { font-family: var(--ed-font-heading); font-size: clamp(28px, 2.6vw, 32px); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
.ed-flag__text { font-size: 16px; line-height: 1.6; color: var(--ed-on-blue); }
.ed-flag__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.ed-flag__chips span { padding: 7px 12px; border-radius: 999px; border: 1px solid rgba(255, 255, 255, .35); font-size: 13px; font-weight: 700; }
.ed-flag .ed-more { color: #fff; }

.ed-svc-card { overflow: hidden; gap: 18px; padding: 36px; border-radius: 28px; background: var(--ed-bg); }
.ed-svc-card__top { display: flex; align-items: center; justify-content: space-between; }
.ed-svc-card__num { font-family: var(--ed-font-heading); font-size: 20px; font-weight: 700; color: var(--ed-primary); }
.ed-svc-card__num--orange { color: var(--ed-accent-text); }
.ed-svc-card__title { font-family: var(--ed-font-heading); font-size: clamp(24px, 2.4vw, 30px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; color: var(--ed-navy); }
.ed-svc-card__text { font-size: 16px; line-height: 1.6; color: var(--ed-text); }
.ed-svc-card__list { display: flex; flex-direction: column; gap: 10px; padding-top: 18px; border-top: 1px solid var(--ed-line); }
.ed-svc-card__list span { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; font-weight: 600; color: var(--ed-navy); }
.ed-svc-card__list svg { color: var(--ed-primary); margin-top: 2px; }
.ed-svc-card--flag { background: var(--ed-primary); border-color: var(--ed-primary); color: #fff; }
.ed-svc-card--flag > * { position: relative; }
.ed-svc-card--flag > .ed-dotted-w { position: absolute; }
.ed-svc-card--flag .ed-svc-card__sun { right: -70px; bottom: -70px; width: 200px; height: 200px; }
.ed-svc-card--flag .ed-svc-card__num { color: #FFD2B0; }
.ed-svc-card--flag .ed-svc-card__title, .ed-svc-card--flag .ed-svc-card__list span, .ed-svc-card--flag .ed-more { color: #fff; }
.ed-svc-card--flag .ed-svc-card__text { color: var(--ed-on-blue); }
.ed-svc-card--flag .ed-svc-card__list { border-top-color: rgba(255, 255, 255, .2); }
.ed-svc-card--flag .ed-svc-card__list svg { color: #FFB27A; }
.ed-svc-card--flag:hover { color: #fff; border-color: var(--ed-primary); }
.ed-consult { position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; gap: 24px; padding: 36px; border-radius: 28px; background: var(--ed-tint-orange); border: 1px solid var(--ed-peach); }
.ed-consult > * { position: relative; }
.ed-consult__ring { position: absolute !important; right: -60px; top: -60px; width: 200px; height: 200px; border-radius: 50%; border: 36px solid rgba(255, 122, 26, .18); }
.ed-consult .ed-btn { align-self: flex-start; }

/* ---------- Features ---------- */
.ed-feature { gap: 14px; padding: 32px; }
.ed-feature__body { display: flex; flex-direction: column; gap: 8px; }
.ed-feature p { margin: 0; font-size: 15.5px; line-height: 1.6; color: var(--ed-muted); }
.ed-feature--inline { flex-direction: row; gap: 18px; padding: 28px; border-radius: 22px; }
.ed-feature--inline .ed-ico { width: 48px; height: 48px; }
.ed-feature--inline .ed-h4 { font-size: 20px; }
.ed-feature--inline p { font-size: 15px; }
.ed-sidelayout { display: grid; grid-template-columns: minmax(0, 400px) minmax(0, 1fr); gap: 72px; }
.ed-sidelayout--wide { grid-template-columns: minmax(0, 440px) minmax(0, 1fr); gap: 80px; }
.ed-sidelayout__aside { display: flex; flex-direction: column; gap: 20px; }
.ed-sidelayout__aside .ed-h2 { font-size: clamp(32px, 4vw, 46px); }

/* ---------- Process ---------- */
.ed-hsteps { position: relative; list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(var(--ed-cols, 5), minmax(0, 1fr)); gap: 20px; }
.ed-hsteps::before { content: ""; position: absolute; left: 60px; right: 60px; top: 31px; height: 2px; background: repeating-linear-gradient(90deg, var(--ed-line-2) 0 10px, transparent 10px 18px); }
.ed-hstep { position: relative; display: flex; flex-direction: column; gap: 16px; }
.ed-hstep p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--ed-muted); }
.ed-num { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; width: 56px; height: 56px; border-radius: 50%; font-family: var(--ed-font-heading); font-size: 19px; font-weight: 800; }
.ed-num--lg { width: 64px; height: 64px; font-size: 22px; box-shadow: 0 0 0 8px var(--ed-white); }
.ed-bg-light .ed-num--lg { box-shadow: 0 0 0 8px var(--ed-bg); }
.ed-num--orange { background: var(--ed-accent); color: var(--ed-navy); }
.ed-num--blue { background: var(--ed-primary); color: #fff; }
.ed-num--soft { background: var(--ed-tint-blue); color: var(--ed-primary); }
.ed-num--navy { background: var(--ed-navy); color: #fff; }
.ed-vsteps { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.ed-vstep { display: flex; gap: 24px; }
.ed-vstep__rail { display: flex; flex-direction: column; align-items: center; }
.ed-vstep__rail::after { content: ""; flex-grow: 1; width: 2px; background: var(--ed-line); }
.ed-vstep:last-child .ed-vstep__rail::after { display: none; }
.ed-vstep__body { display: flex; flex-direction: column; gap: 6px; padding: 12px 0 32px; }
.ed-vstep:last-child .ed-vstep__body { padding-bottom: 0; }
.ed-vstep__body p { margin: 0; font-size: 15.5px; line-height: 1.6; color: var(--ed-muted); }

/* ---------- Tools ---------- */
.ed-tools { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 12px; }
.ed-tools li { padding: 16px 24px; border-radius: 16px; background: #fff; border: 1px solid var(--ed-line); font-family: var(--ed-font-heading); font-size: clamp(16px, 1.6vw, 19px); font-weight: 700; color: var(--ed-navy); transition: border-color .2s ease, color .2s ease; }
.ed-tools li:hover { border-color: var(--ed-primary); color: var(--ed-primary); }
.ed-bg-white .ed-tools li { background: var(--ed-bg); }

/* ---------- Projects ---------- */
.ed-project { overflow: hidden; border-radius: 28px; }
.ed-project__media { position: relative; height: 330px; padding-top: 40px; display: flex; align-items: flex-end; justify-content: center; }
.ed-project__media--blue { background-color: var(--ed-tint-blue); }
.ed-project__media--orange { background-color: var(--ed-tint-orange); }
.ed-project__frame { width: 78%; height: 270px; padding: 14px; display: flex; flex-direction: column; gap: 12px; border-radius: 18px 18px 0 0; background: #fff; box-shadow: 0 -10px 40px -20px rgba(11, 27, 63, .35); }
.ed-project__img { flex-grow: 1; width: 100%; min-height: 0; height: 100%; object-fit: cover; object-position: top; border-radius: 12px; }
.ed-project__placeholder { flex-grow: 1; display: flex; align-items: center; justify-content: center; border-radius: 12px; background: var(--ed-bg); border: 1.5px dashed var(--ed-line-2); font-size: 13.5px; font-weight: 700; color: var(--ed-muted); }
.ed-project__foot { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 26px 28px 30px; }
.ed-project__title { font-family: var(--ed-font-heading); font-size: 24px; font-weight: 700; letter-spacing: -0.01em; color: var(--ed-navy); }
.ed-project__text { font-size: 15px; color: var(--ed-muted); }
.ed-project__go { flex-shrink: 0; width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--ed-navy); color: #fff; transition: background .2s ease; }
.ed-project:hover .ed-project__go { background: var(--ed-accent); color: var(--ed-navy); }

/* ---------- CTA ---------- */
.ed-ctawrap { padding: 0 0 var(--ed-section); }
.ed-cta { position: relative; overflow: hidden; display: flex; align-items: center; justify-content: space-between; gap: 48px; padding: clamp(40px, 5vw, 64px) clamp(28px, 5vw, 72px); border-radius: 36px; background: var(--ed-primary); }
.ed-cta > * { position: relative; }
.ed-cta > .ed-dotted-w { position: absolute; }
.ed-cta__sun { position: absolute !important; right: -90px; top: -110px; width: 300px; height: 300px; border-radius: 50%; background: var(--ed-accent); }
.ed-cta__copy { max-width: 640px; display: flex; flex-direction: column; gap: 16px; }
.ed-cta__copy .ed-h2 { font-size: clamp(30px, 3.8vw, 46px); }
.ed-cta__copy p { margin: 0; font-size: 18px; line-height: 1.6; color: var(--ed-on-blue); }
.ed-cta__btns { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; }

/* ---------- Contact ---------- */
.ed-contact { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: 64px; align-items: start; }
.ed-contact__info { display: flex; flex-direction: column; gap: 20px; }
.ed-contact__list { list-style: none; margin: 12px 0 0; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.ed-contact__list li { display: flex; align-items: center; gap: 14px; }
.ed-contact__list li > span:last-child { display: flex; flex-direction: column; font-size: 16px; font-weight: 700; color: var(--ed-navy); }
.ed-contact__list small { font-size: 13px; font-weight: 700; color: var(--ed-muted); }
.ed-contact__list a { color: var(--ed-navy); text-decoration: none; }
.ed-contact__list a:hover { color: var(--ed-primary); }
.ed-contact__form { padding: clamp(24px, 4vw, 40px); gap: 16px; box-shadow: var(--ed-shadow); }
.ed-contact__form .ed-btn { align-self: flex-start; }

/* Form plugin styling (Contact Form 7, WPForms, Fluent Forms, core). */
.ed-contact__form input:not([type=submit]):not([type=checkbox]):not([type=radio]),
.ed-contact__form select, .ed-contact__form textarea,
.ed-comments input[type=text], .ed-comments input[type=email], .ed-comments input[type=url], .ed-comments textarea,
.ed-search__input {
	width: 100%; min-height: 52px; padding: 12px 16px; border: 1.5px solid var(--ed-line); border-radius: 14px; background: #fff;
	font: inherit; font-size: 16px; color: var(--ed-navy); transition: border-color .2s ease, box-shadow .2s ease;
}
.ed-contact__form textarea, .ed-comments textarea { min-height: 150px; resize: vertical; }
.ed-contact__form input:focus, .ed-contact__form select:focus, .ed-contact__form textarea:focus, .ed-comments textarea:focus, .ed-comments input:focus, .ed-search__input:focus {
	outline: none; border-color: var(--ed-primary); box-shadow: 0 0 0 4px rgba(31, 79, 216, .12);
}
.ed-contact__form label { display: block; margin-bottom: 6px; font-size: 14px; font-weight: 700; color: var(--ed-navy); }
.ed-contact__form input[type=submit], .ed-contact__form button[type=submit], .ed-comments .submit {
	min-height: 54px; padding: 0 28px; border: 0; border-radius: var(--ed-btn-radius); background: var(--ed-accent); color: var(--ed-navy);
	font: inherit; font-size: 16px; font-weight: 800; cursor: pointer; transition: background .2s ease;
}
.ed-contact__form input[type=submit]:hover, .ed-contact__form button[type=submit]:hover, .ed-comments .submit:hover { background: var(--ed-accent-hover); }
.ed-contact__form p { margin: 0 0 16px; }

/* ---------- Content ---------- */
.ed-prose { font-size: 17.5px; line-height: 1.75; color: var(--ed-text); }
.ed-prose > * + * { margin-top: 1.1em; }
.ed-prose h2 { margin-top: 1.8em; font-size: clamp(28px, 3vw, 36px); }
.ed-prose h3 { margin-top: 1.6em; font-size: clamp(22px, 2.4vw, 26px); }
.ed-prose h4 { margin-top: 1.4em; font-size: 20px; }
.ed-prose a { font-weight: 700; text-underline-offset: 3px; }
.ed-prose ul, .ed-prose ol { padding-left: 1.3em; }
.ed-prose li + li { margin-top: .4em; }
.ed-prose blockquote { margin-left: 0; padding: 20px 24px; border-radius: 18px; background: var(--ed-tint-blue); border: 0; font-family: var(--ed-font-heading); font-size: 22px; line-height: 1.4; color: var(--ed-navy); }
.ed-prose img, .ed-prose figure img { border-radius: 18px; }
.ed-prose figcaption { margin-top: 8px; font-size: 14px; color: var(--ed-muted); text-align: center; }
.ed-prose pre { overflow-x: auto; padding: 18px; border-radius: 14px; background: var(--ed-navy); color: #fff; font-size: 14px; }
.ed-prose code { font-size: .9em; }
.ed-prose :not(pre) > code { padding: 2px 6px; border-radius: 6px; background: var(--ed-tint-blue); color: var(--ed-navy); }
.ed-prose table { width: 100%; border-collapse: collapse; font-size: 15px; }
.ed-prose th, .ed-prose td { padding: 12px; border-bottom: 1px solid var(--ed-line); text-align: left; }
.ed-prose .wp-block-button__link { border-radius: var(--ed-btn-radius); background: var(--ed-accent); color: var(--ed-navy); font-weight: 800; }
.ed-prose .alignwide { margin-left: calc(-1 * min(120px, 8vw)); margin-right: calc(-1 * min(120px, 8vw)); }
.ed-prose .alignleft { float: left; margin: 0 24px 16px 0; }
.ed-prose .alignright { float: right; margin: 0 0 16px 24px; }
.ed-prose .aligncenter { margin-left: auto; margin-right: auto; }
.ed-pagelinks { display: flex; gap: 8px; font-weight: 700; }
.ed-featured { margin-top: -40px; position: relative; }
.ed-featured img { width: 100%; border-radius: 24px; box-shadow: var(--ed-shadow-lg); }
.ed-post-foot { padding-bottom: var(--ed-section); display: flex; flex-direction: column; gap: 40px; }
.ed-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.ed-tags a { padding: 6px 12px; border-radius: 999px; background: var(--ed-tint-blue); color: var(--ed-primary); font-size: 13px; font-weight: 800; text-decoration: none; }
.post-navigation .nav-links { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.post-navigation a { display: flex; flex-direction: column; gap: 4px; height: 100%; padding: 20px; border-radius: 18px; border: 1px solid var(--ed-line); background: #fff; color: var(--ed-navy); font-family: var(--ed-font-heading); font-weight: 700; text-decoration: none; }
.post-navigation a:hover { border-color: var(--ed-line-2); box-shadow: var(--ed-shadow); }
.post-navigation small { font-family: var(--ed-font-body); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--ed-accent-text); }
.post-navigation .nav-next { text-align: right; }
.ed-fullwidth { overflow-x: clip; }

/* ---------- Posts & search ---------- */
.ed-post { overflow: hidden; }
.ed-post__media { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--ed-tint-blue); }
.ed-post__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.ed-post:hover .ed-post__media img { transform: scale(1.04); }
.ed-post__ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: var(--ed-primary); }
.ed-post__body { flex-grow: 1; display: flex; flex-direction: column; gap: 12px; padding: 24px 26px 28px; }
.ed-post__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; font-size: 13.5px; font-weight: 700; color: var(--ed-muted); }
.ed-post__title { margin: 0; font-size: 22px; line-height: 1.25; }
.ed-post__title a { color: var(--ed-navy); text-decoration: none; }
.ed-post__title a:hover { color: var(--ed-primary); }
.ed-post__excerpt { margin: 0; font-size: 15px; color: var(--ed-muted); }
.ed-pagination .nav-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.ed-pagination .page-numbers { min-width: 48px; height: 48px; display: inline-flex; align-items: center; justify-content: center; padding: 0 14px; border-radius: 999px; background: #fff; border: 1px solid var(--ed-line); color: var(--ed-navy); font-weight: 800; text-decoration: none; }
.ed-pagination .page-numbers.current, .ed-pagination a.page-numbers:hover { background: var(--ed-primary); border-color: var(--ed-primary); color: #fff; }
.ed-search { display: flex; gap: 10px; width: 100%; max-width: 560px; }
.ed-search .ed-btn { flex-shrink: 0; }
.ed-searchbar { display: flex; justify-content: center; }
.ed-empty-state { align-items: center; gap: 16px; padding: 48px 24px; text-align: center; }
.ed-empty-state .ed-search { margin: 8px auto 0; }

/* ---------- Comments ---------- */
.ed-comments-wrap { padding-bottom: var(--ed-section); }
.ed-comments { display: flex; flex-direction: column; gap: 24px; }
.ed-comments__list, .ed-comments__list .children { list-style: none; margin: 0; padding: 0; }
.ed-comments__list .children { padding-left: 32px; }
.ed-comments .comment-body { margin-bottom: 16px; padding: 20px; border-radius: 18px; background: #fff; border: 1px solid var(--ed-line); }
.ed-comments .comment-author { display: flex; align-items: center; gap: 10px; font-weight: 800; }
.ed-comments .comment-author img { border-radius: 50%; }
.ed-comments .comment-metadata { font-size: 13px; }
.ed-comments .comment-metadata a { color: var(--ed-muted); text-decoration: none; }
.ed-comments .comment-form p { margin: 0 0 14px; }
.ed-comments .comment-form label { display: block; margin-bottom: 6px; font-weight: 700; }

/* ---------- Footer ---------- */
.ed-footer { position: relative; overflow: hidden; padding-top: 72px; background: var(--ed-navy); color: #fff; }
.ed-footer__ring { position: absolute; right: -140px; top: -180px; width: 460px; height: 460px; border-radius: 50%; border: 70px solid rgba(255, 122, 26, .10); pointer-events: none; }
.ed-footer .ed-container { position: relative; }
.ed-footer__top { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255, 255, 255, .12); }
.ed-footer__eyebrow { font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #FFB27A; }
.ed-footer__heading { margin: 0; font-family: var(--ed-font-heading); font-size: clamp(34px, 4.4vw, 52px); font-weight: 700; line-height: 1.05; letter-spacing: -0.03em; color: #fff; }
.ed-footer__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.ed-footer__cta .ed-btn { min-height: 56px; }
.ed-footer__grid { display: grid; grid-template-columns: 4fr 3fr 2fr 3fr; gap: 24px; padding: 40px 0 32px; }
.ed-footer__brand { display: flex; flex-direction: column; gap: 20px; }
.ed-footer__brand p { margin: 0; max-width: 330px; font-size: 15px; line-height: 1.65; color: var(--ed-on-navy); }
.ed-socials { display: flex; flex-wrap: wrap; gap: 10px; }
.ed-socials a { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border-radius: 12px; background: rgba(255, 255, 255, .08); color: #fff; transition: background .2s ease, color .2s ease; }
.ed-socials a:hover { background: var(--ed-accent); color: var(--ed-navy); }
.ed-footer__col { display: flex; flex-direction: column; gap: 14px; }
.ed-footer__title { margin: 0; font-family: var(--ed-font-body); font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: #fff; }
.ed-footer__links, .ed-footer__contact, .ed-footer__legal { list-style: none; margin: 0; padding: 0; }
.ed-footer__links, .ed-footer__contact { display: flex; flex-direction: column; gap: 14px; }
.ed-footer__links a, .ed-footer__contact a, .ed-footer__contact span, .ed-footer__legal a { display: inline-flex; align-items: flex-start; gap: 12px; font-size: 15px; line-height: 1.5; color: var(--ed-on-navy); text-decoration: none; transition: color .2s ease; }
.ed-footer__contact svg { color: #FF9A4D; margin-top: 2px; }
.ed-footer__links a:hover, .ed-footer__contact a:hover, .ed-footer__legal a:hover { color: #FF9A4D; }
.ed-footer__bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px 28px; min-height: 72px; padding: 16px 0; border-top: 1px solid rgba(255, 255, 255, .12); font-size: 14px; color: #8E9AB8; }
.ed-footer__legal { display: flex; flex-wrap: wrap; gap: 28px; }
.ed-footer__legal a { font-size: 14px; color: #8E9AB8; }

/* ---------- Elementor ---------- */
.elementor-widget[class*="elementor-widget-ecomdevs-"] > .elementor-widget-container { padding: 0; margin: 0; }
.elementor-editor-active .ed-nav .sub-menu, .elementor-editor-active .ed-mega { display: none; }

/* ---------- About ---------- */
[hidden] { display: none !important; }
.ed-hl-alt { color: #EA580C; }
.ed-hero--about .ed-hero__inner { grid-template-columns: minmax(0, 600px) minmax(0, 1fr); gap: 72px; padding-top: 80px; }
.ed-hero--about .ed-hero__copy { gap: 24px; }
.ed-hero--about .ed-hero__title { font-size: clamp(38px, 4.8vw, 60px); line-height: 1.04; }
.ed-vis--photo { height: 520px; }
.ed-vis-photo { position: absolute; inset: 0 0 60px 60px; overflow: hidden; border-radius: 32px; background: var(--ed-tint-blue); }
.ed-vis-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ed-vis-photo--empty { display: flex; align-items: center; justify-content: center; border: 1.5px dashed var(--ed-line-2); color: var(--ed-line-2); }
.ed-vis-photo__stat { position: absolute; left: 0; bottom: 0; width: 280px; padding: 24px; display: flex; flex-direction: column; gap: 6px; border-radius: 24px; background: var(--ed-primary); color: #fff; box-shadow: 0 30px 60px -24px rgba(11, 27, 63, .5); }
.ed-vis-photo__value { font-family: var(--ed-font-heading); font-size: 44px; font-weight: 700; line-height: 1; }
.ed-vis-photo__value span { color: #FFB27A; }
.ed-vis-photo__label { font-size: 15px; font-weight: 700; color: var(--ed-on-blue); }

.ed-pillar { display: flex; flex-direction: column; gap: 16px; padding: 36px; border-radius: 28px; background: var(--ed-bg); border: 1px solid var(--ed-line); transition: transform .25s ease, box-shadow .25s ease; }
.ed-bg-light .ed-pillar { background: #fff; }
.ed-pillar:hover { transform: translateY(-4px); box-shadow: var(--ed-shadow); }
.ed-pillar__num { font-family: var(--ed-font-heading); font-size: 18px; font-weight: 800; color: var(--ed-accent-text); }
.ed-pillar__title { margin: 0; font-family: var(--ed-font-heading); font-size: clamp(22px, 2.2vw, 26px); font-weight: 700; color: var(--ed-navy); }
.ed-pillar p { margin: 0; font-size: 16px; line-height: 1.6; color: var(--ed-muted); }
.ed-pillar--blue { background: var(--ed-primary) !important; border-color: var(--ed-primary); }
.ed-pillar--blue .ed-pillar__num { color: #FFB27A; }
.ed-pillar--blue .ed-pillar__title { color: #fff; }
.ed-pillar--blue p { color: var(--ed-on-blue); }

.ed-teamcount { display: flex; align-items: baseline; gap: 10px; font-size: 16px; font-weight: 700; color: var(--ed-text); }
.ed-teamcount strong { font-family: var(--ed-font-heading); font-size: 44px; font-weight: 700; color: var(--ed-primary); }
.ed-member { overflow: hidden; }
.ed-member__photo { height: 280px; display: flex; align-items: center; justify-content: center; overflow: hidden; color: var(--ed-line-2); }
.ed-member__photo--blue { background: var(--ed-tint-blue); }
.ed-member__photo--orange { background: var(--ed-tint-orange); }
.ed-member__photo img { width: 100%; height: 100%; object-fit: cover; }
.ed-member__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 20px 22px; }
.ed-member__text { display: flex; flex-direction: column; gap: 4px; }
.ed-member__name { font-family: var(--ed-font-heading); font-size: 20px; font-weight: 700; color: var(--ed-navy); }
.ed-member__role { font-size: 14px; font-weight: 600; color: var(--ed-muted); }
.ed-member__social { width: 44px; height: 44px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; border-radius: 12px; background: var(--ed-tint-blue); color: var(--ed-primary); }
.ed-member__social:hover { background: var(--ed-primary); color: #fff; }

.ed-industry { flex-direction: row; align-items: center; gap: 16px; padding: 26px; border-radius: 22px; background: var(--ed-bg); }
.ed-bg-light .ed-industry { background: #fff; }
.ed-industry__name { font-family: var(--ed-font-heading); font-size: 22px; font-weight: 700; color: var(--ed-navy); }

/* ---------- Projects page ---------- */
.ed-hero--bar .ed-hero__inner { grid-template-columns: minmax(0, 760px) auto; justify-content: space-between; align-items: end; padding-top: 88px; padding-bottom: 72px; }
.ed-hero--bar .ed-hero__copy { gap: 22px; }
.ed-hero--bar .ed-hero__title { font-size: clamp(40px, 5.6vw, 68px); }
.ed-hero__ring--top { left: auto; bottom: auto; right: -100px; top: -120px; width: 340px; height: 340px; border-width: 56px; border-color: var(--ed-tint-orange); }
.ed-hero__side { position: relative; }
.ed-section--projects { padding-top: 56px; }
.ed-filters { display: flex; flex-wrap: wrap; gap: 10px; }
.ed-filter { min-height: 44px; padding: 0 20px; border-radius: 999px; border: 1px solid var(--ed-line); background: #fff; color: var(--ed-text); font-family: var(--ed-font-body); font-size: 14.5px; font-weight: 800; cursor: pointer; transition: background .2s ease, color .2s ease, border-color .2s ease; }
.ed-filter:hover { border-color: var(--ed-navy); }
.ed-filter[aria-pressed="true"] { background: var(--ed-navy); border-color: var(--ed-navy); color: #fff; }
.ed-pcard { overflow: hidden; border-radius: 26px; }
.ed-pcard__media { height: 270px; padding: 32px 28px 0; display: flex; align-items: flex-end; }
.ed-pcard__frame { width: 100%; height: 238px; padding: 12px; display: flex; flex-direction: column; gap: 10px; border-radius: 16px 16px 0 0; background: #fff; box-shadow: 0 -10px 40px -20px rgba(11, 27, 63, .35); }
.ed-pcard__frame .ed-dots i { width: 8px; height: 8px; }
.ed-pcard__frame .ed-project__placeholder { color: var(--ed-line-2); }
.ed-pcard__body { flex-grow: 1; display: flex; flex-direction: column; gap: 10px; padding: 24px 26px 28px; }
.ed-pcard__title { font-family: var(--ed-font-heading); font-size: 22px; font-weight: 700; color: var(--ed-navy); }
.ed-pcard .ed-project__text { line-height: 1.5; }

/* ---------- Contact page ---------- */
.ed-contactx { padding: clamp(56px, 7vw, 88px) 0 clamp(72px, 8vw, 112px); }
.ed-contactx__inner { display: grid; grid-template-columns: minmax(0, 500px) minmax(0, 1fr); gap: 72px; align-items: start; }
.ed-contactx__info { display: flex; flex-direction: column; gap: 24px; }
.ed-contactx__title { margin: 0; font-family: var(--ed-font-heading); font-size: clamp(38px, 5vw, 62px); font-weight: 700; line-height: 1.03; letter-spacing: -0.035em; color: var(--ed-navy); text-wrap: balance; }
.ed-contactx__cards { display: flex; flex-direction: column; gap: 14px; padding-top: 8px; }
.ed-infocard { position: relative; display: flex; align-items: center; gap: 16px; padding: 18px 20px; border-radius: 20px; background: #fff; border: 1px solid var(--ed-line); text-decoration: none; color: inherit; }
.ed-infocard .ed-ico { width: 50px; height: 50px; }
.ed-infocard > span:last-child { display: flex; flex-direction: column; gap: 2px; }
.ed-infocard small { font-size: 13px; font-weight: 700; color: var(--ed-muted); }
.ed-infocard strong { font-size: 17px; font-weight: 800; color: var(--ed-navy); }
.ed-formcard { padding: clamp(24px, 3.4vw, 44px); display: flex; flex-direction: column; gap: 22px; background: #fff; border: 1px solid var(--ed-line); border-radius: 32px; box-shadow: 0 40px 80px -40px rgba(11, 27, 63, .25); scroll-margin-top: 120px; }
.ed-formcard__head { display: flex; flex-direction: column; gap: 6px; }
.ed-formcard__head .ed-h3 { font-size: clamp(26px, 2.6vw, 32px); }
.ed-formcard__head p { margin: 0; font-size: 15.5px; color: var(--ed-muted); }
.ed-form { display: flex; flex-direction: column; gap: 22px; }
.ed-form__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.ed-field { margin: 0; display: flex; flex-direction: column; gap: 8px; }
.ed-field label, .ed-field legend { font-size: 14px; font-weight: 800; color: var(--ed-navy); }
.ed-field input, .ed-field textarea,
.ed-formcard__plugin input:not([type=submit]):not([type=checkbox]):not([type=radio]), .ed-formcard__plugin select, .ed-formcard__plugin textarea {
	width: 100%; min-height: 54px; padding: 0 18px; border-radius: 14px; border: 1.5px solid var(--ed-line); background: var(--ed-bg);
	font-family: var(--ed-font-body); font-size: 15.5px; color: var(--ed-navy); transition: border-color .2s ease, box-shadow .2s ease;
}
.ed-field textarea, .ed-formcard__plugin textarea { min-height: 140px; padding: 16px 18px; line-height: 1.5; resize: vertical; }
.ed-field input:focus, .ed-field textarea:focus, .ed-formcard__plugin input:focus, .ed-formcard__plugin textarea:focus, .ed-formcard__plugin select:focus { outline: none; border-color: var(--ed-primary); box-shadow: 0 0 0 4px rgba(31, 79, 216, .14); }
.ed-formcard__plugin label { display: block; margin-bottom: 8px; font-size: 14px; font-weight: 800; color: var(--ed-navy); }
.ed-formcard__plugin p { margin: 0 0 18px; }
.ed-formcard__plugin input[type=submit], .ed-formcard__plugin button[type=submit] { min-height: 58px; padding: 0 32px; border: 0; border-radius: var(--ed-btn-radius); background: var(--ed-accent); color: var(--ed-navy); font: inherit; font-size: 16.5px; font-weight: 800; cursor: pointer; }
.ed-field--chips { border: 0; padding: 0; margin: 0; min-width: 0; }
.ed-field--chips legend { margin-bottom: 10px; padding: 0; }
.ed-chipchecks { display: flex; flex-wrap: wrap; gap: 8px; }
.ed-chipcheck { position: relative; display: inline-flex; cursor: pointer; }
.ed-chipcheck input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.ed-chipcheck span { display: inline-flex; align-items: center; min-height: 44px; padding: 0 16px; border-radius: 999px; border: 1.5px solid var(--ed-line); background: #fff; font-size: 14px; font-weight: 700; color: var(--ed-text); transition: background .2s ease, color .2s ease, border-color .2s ease; }
.ed-chipcheck:hover span { border-color: var(--ed-primary); }
.ed-chipcheck input:checked + span { background: var(--ed-primary); border-color: var(--ed-primary); color: #fff; }
.ed-chipcheck input:focus-visible + span { outline: 3px solid var(--ed-accent); outline-offset: 2px; }
.ed-form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.ed-form .ed-btn { align-self: flex-start; font-family: var(--ed-font-body); }
.ed-alert { display: flex; align-items: flex-start; gap: 10px; padding: 14px 16px; border-radius: 14px; font-size: 15px; font-weight: 600; line-height: 1.5; }
.ed-alert svg { margin-top: 1px; }
.ed-alert--ok { background: #E8F7EE; color: #166534; }
.ed-alert--error { background: #FDECEC; color: #B91C1C; }
.ed-mapwrap { padding: 0 0 clamp(72px, 8vw, 112px); }
.ed-map { height: 380px; overflow: hidden; border-radius: 32px; border: 1px solid var(--ed-line); background: var(--ed-tint-blue); }
.ed-map iframe { display: block; width: 100%; height: 100%; border: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
	.ed-nav > li > a { padding: 0 13px; }
	.ed-header__phone { display: none; }
	.ed-hero__inner, .ed-hero--xl .ed-hero__inner, .ed-hero--about .ed-hero__inner { grid-template-columns: minmax(0, 1fr); gap: 48px; }
	.ed-hero--split .ed-hero__copy { max-width: 680px; }
	.ed-vis { max-width: 620px; justify-self: center; }
	.ed-bento { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.ed-hsteps { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 40px; }
	.ed-hsteps::before { display: none; }
}

@media (max-width: 1024px) {
	/* backdrop-filter would trap the fixed menu panel inside the header. */
	.ed-header { background: #fff; backdrop-filter: none; -webkit-backdrop-filter: none; }
	.ed-burger { display: inline-flex; margin-left: auto; }
	.ed-header__panel {
		position: fixed; left: 0; right: 0; top: var(--ed-header-h, 88px); bottom: 0; z-index: 70;
		flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 24px;
		padding: 24px var(--ed-gutter) 40px; background: #fff; overflow-y: auto;
		opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity .2s ease, transform .2s ease, visibility .2s;
	}
	.ed-header.is-open .ed-header__panel { opacity: 1; visibility: visible; transform: none; }
	.ed-navwrap { margin: 0; }
	.ed-nav { flex-direction: column; align-items: stretch; gap: 4px; padding: 0; background: none; border: 0; border-radius: 0; }
	.ed-nav > li { flex-wrap: wrap; border-bottom: 1px solid var(--ed-line); }
	.ed-nav > li > a { flex-grow: 1; min-height: 56px; padding: 0 4px; border-radius: 0; font-size: 18px; }
	.ed-nav > li.current-menu-item > a, .ed-nav > li.current-menu-ancestor > a, .ed-nav > li.current_page_item > a, .ed-nav > li.current-menu-parent > a { background: none; color: var(--ed-primary); box-shadow: none; }
	.ed-nav > li > a:hover { background: none; }
	.ed-sub-toggle { width: 48px; height: 56px; margin: 0; }
	.ed-nav .sub-menu, .ed-mega { position: static; width: 100%; display: none; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; border-radius: 0; padding: 0 0 12px; }
	.ed-nav .sub-menu::before, .ed-mega::before { display: none; }
	.ed-nav > li.is-open > .sub-menu, .ed-nav > li.is-open > .ed-mega { display: block; }
	.ed-nav > li:hover > .sub-menu, .ed-nav > li:hover > .ed-mega, .ed-nav > li:focus-within > .ed-mega, .ed-nav > li:focus-within > .sub-menu { transform: none; }
	.ed-nav > li:not(.is-open) > .sub-menu, .ed-nav > li:not(.is-open) > .ed-mega { display: none; }
	.ed-mega__list { grid-template-columns: minmax(0, 1fr); }
	.ed-mega__item { padding: 10px 4px; }
	.ed-mega__card { display: none; }
	.ed-header__actions { flex-direction: column; align-items: stretch; gap: 12px; }
	.ed-header__phone { display: inline-flex; justify-content: center; border: 1px solid var(--ed-line); min-height: 52px; }
	.ed-header__actions .ed-btn { min-height: 54px; }
	body.ed-menu-open { overflow: hidden; }

	.ed-intro, .ed-sidelayout, .ed-sidelayout--wide, .ed-contact, .ed-contactx__inner { grid-template-columns: minmax(0, 1fr); gap: 40px; }
	.ed-hero--bar .ed-hero__inner { grid-template-columns: minmax(0, 1fr); align-items: start; gap: 28px; }
	.ed-grid--3, .ed-grid--4 { --ed-cols: 2; }
	.ed-strip__inner { flex-direction: column; align-items: flex-start; gap: 20px; }
	.ed-strip__label { width: auto; }
	.ed-strip__items { justify-content: flex-start; }
	.ed-statstrip__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.ed-stat--strip:nth-child(2n) { border-right: 0; }
	.ed-stat--strip:nth-child(n+3) { border-top: 1px solid var(--ed-line); }
	.ed-cta { flex-direction: column; align-items: flex-start; }
	.ed-cta__btns { flex-direction: row; flex-wrap: wrap; }
	.ed-footer__top { flex-direction: column; align-items: flex-start; }
	.ed-footer__grid { grid-template-columns: 1fr 1fr; row-gap: 40px; }
	.ed-head--bar, .ed-head--split, .ed-head--left { flex-direction: column; align-items: flex-start; gap: 20px; }
	.ed-head--split .ed-head__side { max-width: none; }
}

@media (max-width: 782px) {
	.admin-bar.ed-sticky-header .ed-header { top: 46px; }
}

@media (max-width: 720px) {
	.ed-header__inner { min-height: 72px; }
	.ed-logo__text { font-size: 21px; }
	.ed-logo__mark { width: 34px; height: 34px; }
	.ed-hero__inner { padding-top: 48px; padding-bottom: 64px; }
	.ed-hero--center .ed-hero__inner { padding-top: 56px; padding-bottom: 64px; }
	.ed-hero__dot { width: 56px; height: 56px; top: 24px; right: -12px; }
	.ed-btns .ed-btn { flex: 1 1 auto; }
	.ed-grid--2, .ed-grid--3, .ed-grid--4 { --ed-cols: 1; }
	.ed-bento { grid-template-columns: minmax(0, 1fr); grid-auto-rows: auto; }
	.ed-bento > .ed-flag { grid-row: auto; }
	.ed-hsteps { grid-template-columns: minmax(0, 1fr); }
	.ed-feature--inline { flex-direction: column; }
	.ed-svc-card, .ed-consult { padding: 28px; }
	.ed-project__media { height: 260px; }
	.ed-project__frame { width: 86%; height: 210px; }
	.ed-cta { border-radius: 28px; }
	.ed-cta__btns, .ed-cta__btns .ed-btn { width: 100%; }
	.ed-footer__grid { grid-template-columns: minmax(0, 1fr); }
	.ed-statstrip__grid { grid-template-columns: minmax(0, 1fr); }
	.ed-stat--strip { border-right: 0; border-top: 1px solid var(--ed-line); padding: 28px 4px; }
	.ed-stat--strip:first-child { border-top: 0; }
	.post-navigation .nav-links { grid-template-columns: minmax(0, 1fr); }
	.ed-form__grid { grid-template-columns: minmax(0, 1fr); }
	.ed-formcard { border-radius: 24px; }
	.ed-map { height: 300px; border-radius: 24px; }
	.ed-vis--photo { height: 400px; }
	.ed-vis-photo { inset: 0 0 48px 24px; border-radius: 24px; }
	.ed-vis-photo__stat { width: 220px; padding: 18px; }
	.ed-vis-photo__value { font-size: 34px; }
	.ed-member__photo { height: 240px; }
	.ed-search { flex-direction: column; }

	/* Hero visuals scale down on phones. */
	.ed-vis { height: 420px; }
	.ed-vis--home { height: 470px; }
	.ed-vis__window { right: 16px; padding: 12px; gap: 10px; }
	.ed-vis-store__banner { height: 110px; padding: 18px; }
	.ed-vis-store__banner strong { font-size: 20px; }
	.ed-vis-store__grid .ed-tile { height: 80px; }
	.ed-vis-design, .ed-vis-pos, .ed-vis-flow { height: 250px; }
	.ed-vis-design__panel { width: 72px; padding: 8px; }
	.ed-vis-design__panel--sm { display: none; }
	.ed-vis-pos__order { width: 120px; }
	.ed-vis-dash__chart { height: 170px; }
	.ed-vis-video__player { height: 150px; }
	.ed-vis-flow { padding: 14px; }
	.ed-flow-node--blue { margin-left: 16px; } .ed-flow-node--3 { margin-left: 32px; }
	.ed-flow-line { margin-left: 30px; } .ed-flow-line--2 { margin-left: 46px; }
	.ed-vis__float { width: 210px; padding: 14px; bottom: 0; }
	.ed-vis__reel { width: 130px; height: 220px; bottom: 0; }
	.ed-vis-phone { left: 0; width: 220px; height: 420px; border-radius: 36px; }
	.ed-vis-phone__screen { border-radius: 28px; padding: 14px 10px; }
	.ed-vis-phone__banner { height: 96px; }
	.ed-vis-phone__grid .ed-tile { height: 70px; }
	.ed-vis__toast { width: 210px; top: 40px; }
	.ed-vis-home__product { width: 230px; top: 110px; }
	.ed-vis-home__img { height: 110px; }
	.ed-vis-home__flow { right: 0; width: 240px; padding: 14px; }
	.ed-vis-home__chips { right: 0; bottom: 0; width: 240px; }
	.ed-vis-home__stage { left: 24px; }
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
