:root {
  --ep-ink: #121418;
  --ep-ink-soft: #1f2229;
  --ep-brand: #004f89;
  --ep-brand-bright: #0077ce;
  --ep-product-blue: #0788e8;
  --ep-brand-pale: #88b2d1;
  --ep-accent: #ffed2b;
  --ep-gold: #eba037;
  --ep-surface: #f2f9fc;
  --ep-surface-2: #f1f8fc;
  --ep-muted: #69717b;
  --ep-line: #dce9f1;
  --ep-white: #fff;
  --ep-radius-xs: 8px;
  --ep-radius-sm: 12px;
  --ep-radius: 18px;
  --ep-radius-lg: 24px;
  --ep-shadow-sm: 0 10px 28px rgba(18, 20, 24, .08);
  --ep-shadow: 0 22px 60px rgba(18, 20, 24, .12);
  --ep-container: 1240px;
  --ep-header-offset: 199px;
  --ep-transition: 220ms cubic-bezier(.2, .8, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ep-white);
  color: var(--ep-ink);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-synthesis: none;
}
body.ep-menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
svg { flex: 0 0 auto; }
a { color: var(--ep-brand-bright); text-decoration: none; transition: color var(--ep-transition), opacity var(--ep-transition), transform var(--ep-transition), background-color var(--ep-transition), border-color var(--ep-transition), box-shadow var(--ep-transition); }
a:hover { color: var(--ep-brand); }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4, h5, h6 { margin: 0 0 .7em; color: var(--ep-ink); font-weight: 700; line-height: 1.14; letter-spacing: -.025em; }
p { margin: 0 0 1.35em; }
ul, ol { margin: 0 0 1.5em; }
::selection { background: var(--ep-accent); color: var(--ep-ink); }

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
.screen-reader-text:focus, .ep-skip-link:focus {
  clip: auto !important;
  clip-path: none;
  display: block;
  height: auto;
  left: 16px;
  padding: 12px 18px;
  top: 16px;
  width: auto;
  z-index: 100000;
  background: #fff;
  color: #000;
  border-radius: 8px;
  box-shadow: var(--ep-shadow-sm);
}
.ep-skip-link { position: fixed; left: -9999px; }
.ep-container { width: min(calc(100% - 40px), var(--ep-container)); margin-inline: auto; }
.ep-site-shell { min-height: 50vh; overflow: clip; }
.ep-site-main { display: block; }
.ep-section { position: relative; padding: 70px 0; }
.ep-section--compact { padding: 56px 0; }
.ep-section--surface { background: var(--ep-surface); }
.ep-section-heading { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; margin-bottom: 42px; }
.ep-section-heading--narrow { max-width: 880px; }
.ep-section-heading h2 { margin-bottom: 6px; font-size: clamp(30px, 3.2vw, 42px); }
.ep-section-heading p { max-width: 850px; margin: 0; color: var(--ep-muted); }
.ep-kicker { display: inline-flex; align-items: center; width: fit-content; margin-bottom: 16px; padding: 8px 14px; border-radius: 999px; background: var(--ep-accent); color: var(--ep-ink); font-size: 13px; font-weight: 700; letter-spacing: .01em; }
.ep-kicker--dark { background: rgba(255, 237, 43, .96); }
.ep-pill { display: inline-flex; align-items: center; width: fit-content; padding: 8px 14px; border-radius: 999px; font-size: 12px; font-weight: 700; }
.ep-pill--accent { background: var(--ep-accent); color: var(--ep-ink); }
.ep-pill--dark { background: rgba(18, 20, 24, .92); color: var(--ep-accent); }
.ep-icon { vertical-align: middle; }
.ep-media-icon { display: block; flex: 0 0 auto; max-width: none; object-fit: contain; object-position: center; }

.ep-button,
button.ep-button,
input[type="submit"],
.wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid var(--ep-brand-bright);
  border-radius: 10px;
  background: var(--ep-brand-bright);
  color: #fff;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 119, 206, .18);
}
.ep-button:hover,
button.ep-button:hover,
input[type="submit"]:hover,
.wp-block-button__link:hover { background: var(--ep-brand); border-color: var(--ep-brand); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0, 79, 137, .25); }
.ep-button--small { min-height: 44px; padding: 10px 18px; font-size: 14px; }
.ep-button--large { min-height: 58px; padding: 16px 25px; }
.ep-button--wide { width: 100%; }
.ep-button--ghost { background: transparent; color: var(--ep-brand-bright); box-shadow: none; }
.ep-button--ghost:hover { background: var(--ep-brand-bright); color: #fff; }
.ep-text-link { display: inline-flex; align-items: center; gap: 9px; color: var(--ep-brand-bright); font-weight: 650; }
.ep-text-link:hover { gap: 13px; }

/* Header */
.ep-site-header { position: relative; z-index: 1000; background: #fff; }
.ep-site-header.is-stuck { position: sticky; top: 0; box-shadow: 0 10px 30px rgba(18, 20, 24, .12); }
.admin-bar .ep-site-header.is-stuck { top: 32px; }
.ep-topbar { min-height: 52px; background: var(--ep-ink); color: #fff; }
.ep-topbar__inner { min-height: 52px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.ep-topbar__contacts { display: flex; align-items: center; gap: 38px; font-size: 13px; }
.ep-topbar__contacts a, .ep-topbar__contacts > span { display: inline-flex; align-items: center; gap: 9px; color: rgba(255,255,255,.88); white-space: nowrap; }
.ep-topbar__contacts a:hover { color: var(--ep-accent); }
.ep-topbar__socials { display: flex; align-items: center; gap: 8px; }
.ep-topbar__socials a { display: grid; place-items: center; width: 32px; height: 32px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; color: #fff; font-size: 9px; font-weight: 700; }
.ep-topbar__socials a:hover { background: #fff; color: var(--ep-ink); }
.ep-mainbar { min-height: 72px; border-bottom: 1px solid #edf2f5; background: #fff; }
.ep-mainbar__inner { min-height: 72px; display: grid; grid-template-columns: 215px minmax(300px, 1fr) auto; align-items: center; gap: 34px; }
.ep-brand { display: inline-flex; align-items: center; max-width: 215px; }
.ep-brand .custom-logo-link { display: block; }
.ep-brand .custom-logo { max-width: 215px; max-height: 42px; width: auto; }
.ep-header-search { width: 100%; max-width: 780px; justify-self: center; }
.ep-search-form { display: flex; align-items: center; min-height: 52px; padding: 4px 5px 4px 18px; border: 1px solid #dce7ee; border-radius: 12px; background: #fff; transition: border-color var(--ep-transition), box-shadow var(--ep-transition); }
.ep-search-form:focus-within { border-color: var(--ep-brand-bright); box-shadow: 0 0 0 4px rgba(0, 119, 206, .1); }
.ep-search-form .ep-icon { color: var(--ep-brand); }
.ep-search-form__field { flex: 1; min-width: 0; height: 42px; padding: 0 12px; border: 0; outline: 0; color: var(--ep-ink); background: transparent; font-size: 14px; }
.ep-search-form__field::placeholder { color: #8a949d; }
.ep-search-form__submit { min-height: 42px !important; padding: 9px 17px !important; box-shadow: none !important; }
.ep-header-actions { display: flex; align-items: center; gap: 10px; }
.ep-header-action { position: relative; display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid #dfe9ef; border-radius: 10px; color: var(--ep-ink); }
.ep-header-action:hover { border-color: var(--ep-brand-bright); color: var(--ep-brand-bright); }
.ep-cart-count { position: absolute; top: -7px; right: -7px; display: grid; place-items: center; min-width: 20px; height: 20px; padding: 0 5px; border: 2px solid #fff; border-radius: 99px; background: var(--ep-brand-bright); color: #fff; font-size: 10px; font-weight: 700; }
.ep-menu-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 1px solid #dfe9ef; border-radius: 10px; background: #fff; color: var(--ep-ink); }
.ep-navbar { min-height: 75px; background: #fff; }
.ep-navbar__inner { min-height: 75px; display: flex; align-items: center; gap: 34px; }
.ep-products-link { display: inline-flex; align-items: center; justify-content: space-between; gap: 24px; min-width: 158px; min-height: 55px; padding: 12px 20px; border-radius: 10px; background: var(--ep-ink); color: #fff; font-size: 14px; font-weight: 650; }
.ep-products-link:hover { background: var(--ep-brand); color: #fff; }
.ep-primary-menu { flex: 1; display: flex; align-items: center; justify-content: flex-end; gap: clamp(18px, 2.5vw, 38px); list-style: none; margin: 0; padding: 0; }
.ep-primary-menu li { position: relative; margin: 0; }
.ep-primary-menu a { display: inline-flex; align-items: center; min-height: 55px; color: var(--ep-ink); font-size: 14px; font-weight: 550; }
.ep-primary-menu a:hover, .ep-primary-menu .current-menu-item > a { color: var(--ep-brand-bright); }
.ep-primary-menu .sub-menu { position: absolute; top: calc(100% - 4px); left: -18px; min-width: 240px; margin: 0; padding: 12px; list-style: none; border: 1px solid var(--ep-line); border-radius: 12px; background: #fff; box-shadow: var(--ep-shadow-sm); opacity: 0; visibility: hidden; transform: translateY(8px); transition: all var(--ep-transition); }
.ep-primary-menu li:hover > .sub-menu, .ep-primary-menu li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.ep-primary-menu .sub-menu a { min-height: 40px; width: 100%; padding: 7px 10px; border-radius: 7px; }
.ep-primary-menu .sub-menu a:hover { background: var(--ep-surface); }
.ep-mobile-panel { position: fixed; inset: 0; z-index: 1200; overflow-y: auto; padding: 24px; background: var(--ep-ink); color: #fff; }
.ep-mobile-panel[hidden] { display: none; }
.ep-mobile-panel__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.ep-mobile-panel__head img { width: 190px; }
.ep-mobile-panel__head button { display: grid; place-items: center; width: 44px; height: 44px; padding: 0; border: 1px solid rgba(255,255,255,.25); border-radius: 10px; background: transparent; color: #fff; }
.ep-mobile-panel__search { margin-bottom: 26px; }
.ep-mobile-panel .ep-search-form { background: #fff; }
.ep-mobile-menu { list-style: none; margin: 0 0 30px; padding: 0; }
.ep-mobile-menu li { border-bottom: 1px solid rgba(255,255,255,.12); }
.ep-mobile-menu a { display: block; padding: 16px 0; color: #fff; font-size: 18px; font-weight: 600; }
.ep-mobile-menu .sub-menu { list-style: none; margin: 0 0 8px 16px; padding: 0; }
.ep-mobile-menu .sub-menu a { padding: 10px 0; font-size: 15px; color: rgba(255,255,255,.72); }

/* Hero */
.ep-hero { position: relative; min-height: 630px; display: flex; align-items: center; overflow: hidden; background: var(--ep-ink); color: #fff; }
.ep-hero__media { position: absolute; inset: 0; background: url('../images/hero-floor.webp') center 55% / cover no-repeat; transform: scale(1.01); }
.ep-hero__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,13,18,.94) 0%, rgba(8,13,18,.82) 42%, rgba(8,13,18,.4) 70%, rgba(8,13,18,.2) 100%), linear-gradient(0deg, rgba(0,79,137,.18), transparent 50%); }
.ep-hero__inner { position: relative; z-index: 1; padding-block: 80px; }
.ep-hero__grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(350px, .8fr); gap: clamp(50px, 8vw, 110px); align-items: end; }
.ep-hero__title { max-width: 780px; margin: 24px 0 0; color: #fff; font-size: clamp(46px, 5vw, 72px); line-height: 1.08; }
.ep-hero__content { max-width: 520px; padding: 30px; border: 1px solid rgba(255,255,255,.16); border-radius: var(--ep-radius); background: rgba(18,20,24,.42); backdrop-filter: blur(10px); }
.ep-hero__content p { color: rgba(255,255,255,.88); font-size: 18px; }

/* Direction cards */
.ep-solution-types { padding-block: 70px; }
.ep-icon-card-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.ep-icon-card { min-height: 194px; display: flex; flex-direction: column; align-items: flex-start; justify-content: space-between; gap: 18px; padding: 30px; border: 1px solid transparent; border-radius: var(--ep-radius-sm); background: var(--ep-surface); color: var(--ep-ink); }
.ep-icon-card:hover { border-color: var(--ep-brand-bright); background: #fff; transform: translateY(-5px); box-shadow: var(--ep-shadow-sm); }
.ep-icon-card__icon { display: grid; place-items: center; width: 58px; height: 58px; border-radius: 10px; background: var(--ep-brand-bright); color: #fff; }
.ep-icon-card__content { display: flex; flex-direction: column; gap: 8px; }
.ep-icon-card strong { font-size: 18px; }
.ep-icon-card small { max-width: 230px; color: var(--ep-muted); font-size: 14px; line-height: 1.45; }
.ep-icon-card > .ep-icon { margin-left: auto; color: var(--ep-brand-bright); }

/* Choice cards */
.ep-choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.ep-choice-card { min-height: 613px; display: grid; grid-template-rows: 1.1fr .9fr; overflow: hidden; border-radius: var(--ep-radius-sm); background: var(--ep-ink); color: #fff; }
.ep-choice-card--diy { grid-template-rows: .9fr 1.1fr; }
.ep-choice-card__body { display: flex; flex-direction: column; align-items: flex-start; padding: clamp(34px, 5vw, 54px); }
.ep-choice-card h2 { margin-top: 12px; margin-bottom: 14px; color: #fff; font-size: clamp(28px, 3vw, 38px); }
.ep-choice-card p { max-width: 520px; color: rgba(255,255,255,.72); }
.ep-choice-card .ep-button { margin-top: auto; }
.ep-choice-card__note { display: inline-flex; align-items: center; gap: 8px; margin-top: 15px; color: rgba(255,255,255,.72); font-size: 13px; }
.ep-choice-card__note .ep-icon { color: var(--ep-accent); }
.ep-choice-card__image { overflow: hidden; }
.ep-choice-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.8,.2,1); }
.ep-choice-card:hover .ep-choice-card__image img { transform: scale(1.04); }

/* Product cards */
.ep-product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.ep-product-card { position: relative; overflow: hidden; border: 1px solid #e8f0f4; border-radius: var(--ep-radius-sm); background: #fff; transition: transform var(--ep-transition), box-shadow var(--ep-transition), border-color var(--ep-transition); }
.ep-product-card:hover { transform: translateY(-6px); border-color: #cfe2ee; box-shadow: var(--ep-shadow-sm); }
.ep-product-card__image { position: relative; display: grid; place-items: center; aspect-ratio: 1 / 1; overflow: hidden; padding: 24px; background: var(--ep-surface); }
.ep-product-card__image img { width: 100%; height: 100%; object-fit: contain; transition: transform .55s ease; }
.ep-product-card:hover .ep-product-card__image img { transform: scale(1.05); }
.ep-product-card__badge { position: absolute; z-index: 1; top: 16px; left: 16px; padding: 6px 10px; border-radius: 999px; background: var(--ep-accent); color: var(--ep-ink); font-size: 11px; font-weight: 700; }
.ep-product-card__body { display: flex; flex-direction: column; align-items: flex-start; min-height: 220px; padding: 22px; }
.ep-product-card__title { margin: 0 0 5px; font-size: 17px; }
.ep-product-card__title a { color: var(--ep-ink); }
.ep-product-card__body p { margin: 0 0 16px; color: var(--ep-muted); font-size: 13px; }
.ep-product-card__price { margin-top: auto; margin-bottom: 15px; color: var(--ep-brand-bright); font-size: 19px; font-weight: 700; }
.ep-product-card__price del { color: #8e969e; font-size: 13px; font-weight: 500; }
.ep-product-card__price ins { text-decoration: none; }
.ep-promo-strip { display: flex; align-items: center; justify-content: space-between; gap: 34px; margin-top: 28px; padding: 28px 34px; border-radius: var(--ep-radius-sm); background: var(--ep-ink); color: #fff; }
.ep-promo-strip--texture { background-color: var(--ep-ink); background-image: linear-gradient(90deg, rgba(18,20,24,.96), rgba(18,20,24,.75)), url('../images/dark-texture.webp'); background-size: cover; }
.ep-promo-strip strong { display: block; margin-bottom: 6px; font-size: 19px; }
.ep-promo-strip p { max-width: 760px; margin: 0; color: rgba(255,255,255,.68); font-size: 14px; }

/* Systems */
.ep-system-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.ep-system-card { overflow: hidden; border: 1px solid #dbe9f1; border-radius: var(--ep-radius-sm); background: #fff; }
.ep-system-card__image { position: relative; display: block; aspect-ratio: 400 / 151; overflow: hidden; }
.ep-system-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.ep-system-card:hover img { transform: scale(1.05); }
.ep-system-card__image .ep-pill { position: absolute; top: 14px; right: 14px; }
.ep-system-card__body { padding: 26px; }
.ep-system-card__body h3 { font-size: 21px; }
.ep-system-card__body p { min-height: 48px; color: var(--ep-muted); font-size: 13px; }

/* Services */
.ep-service-stack { display: grid; gap: 20px; }
.ep-service-row { display: grid; grid-template-columns: 1fr 1fr; min-height: 470px; overflow: hidden; border-radius: var(--ep-radius); background: var(--ep-ink); color: #fff; }
.ep-service-row--reverse .ep-service-row__image { order: 2; }
.ep-service-row--reverse .ep-service-row__body { order: 1; }
.ep-service-row__image { overflow: hidden; }
.ep-service-row__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s ease; }
.ep-service-row:hover img { transform: scale(1.035); }
.ep-service-row__body { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(38px, 5vw, 70px); }
.ep-service-row__body h3 { color: #fff; font-size: clamp(32px, 3vw, 44px); }
.ep-service-row__body p { color: rgba(255,255,255,.73); }
.ep-check-list { display: grid; gap: 9px; margin: 5px 0 28px; padding: 0; list-style: none; color: rgba(255,255,255,.86); font-size: 14px; }
.ep-check-list li { position: relative; padding-left: 26px; }
.ep-check-list li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--ep-accent); font-weight: 800; }
.ep-service-row .ep-button--ghost { border-color: var(--ep-brand-bright); color: #fff; }

/* About */
.ep-about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 20px; align-items: stretch; }
.ep-about-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 48px; border-radius: var(--ep-radius); background: #fff; }
.ep-about-copy h2 { font-size: clamp(32px, 3.3vw, 46px); }
.ep-about-copy p { color: var(--ep-muted); }
.ep-about-media { overflow: hidden; min-height: 330px; border-radius: var(--ep-radius); }
.ep-about-media img { width: 100%; height: 100%; object-fit: cover; }
.ep-stat-grid { grid-column: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ep-stat-grid > div { min-height: 96px; display: flex; flex-direction: column; justify-content: center; padding: 20px; border-radius: var(--ep-radius-sm); background: #fff; }
.ep-stat-grid strong { color: var(--ep-brand-bright); font-size: 28px; }
.ep-stat-grid span { color: var(--ep-muted); font-size: 12px; }

/* Portfolio */
.ep-filter-pills { display: flex; flex-wrap: wrap; gap: 10px; margin: -16px 0 28px; }
.ep-filter-pills span { display: inline-flex; align-items: center; min-height: 42px; padding: 9px 16px; border: 1px solid #d7e6ef; border-radius: 999px; color: var(--ep-muted); font-size: 13px; font-weight: 600; }
.ep-filter-pills .is-active { border-color: var(--ep-brand-bright); background: var(--ep-brand-bright); color: #fff; }
.ep-portfolio-grid, .ep-article-grid, .ep-review-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.ep-portfolio-card { overflow: hidden; border: 1px solid #e3edf3; border-radius: var(--ep-radius-sm); background: #fff; }
.ep-portfolio-card > a { display: block; color: var(--ep-ink); }
.ep-portfolio-card__image { position: relative; aspect-ratio: 400 / 151; overflow: hidden; }
.ep-portfolio-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.ep-portfolio-card:hover img { transform: scale(1.05); }
.ep-portfolio-card__image .ep-pill { position: absolute; top: 14px; right: 14px; }
.ep-portfolio-card__body { padding: 24px; }
.ep-portfolio-card__body h3 { margin-bottom: 5px; font-size: 20px; }
.ep-portfolio-card__body p { margin: 0; color: var(--ep-muted); font-size: 13px; }

/* Reviews */
.ep-rating-summary { display: grid; grid-template-columns: 1.4fr 1fr 1fr auto; align-items: center; gap: 20px; margin-bottom: 16px; padding: 20px 26px; border-radius: var(--ep-radius-sm); background: var(--ep-ink); color: #fff; }
.ep-rating-summary > div { display: flex; align-items: center; gap: 10px; }
.ep-rating-summary strong { font-size: 29px; }
.ep-rating-summary span { color: rgba(255,255,255,.7); font-size: 12px; }
.ep-rating-summary .ep-icon { color: var(--ep-accent); }
.ep-rating-summary__source { justify-self: end; padding: 8px 12px; border-radius: 7px; background: #fff; color: var(--ep-ink) !important; font-weight: 700; }
.ep-review-card { min-height: 240px; display: flex; flex-direction: column; margin: 0; padding: 28px; border: 1px solid #dceaf2; border-radius: var(--ep-radius-sm); background: #fff; }
.ep-review-card__head { display: flex; align-items: center; gap: 12px; }
.ep-avatar { display: grid; place-items: center; width: 42px; height: 42px; flex: 0 0 42px; border-radius: 50%; background: var(--ep-brand-bright); color: #fff; font-weight: 700; }
.ep-review-card__head div { display: flex; flex-direction: column; }
.ep-review-card__head small { color: var(--ep-muted); }
.ep-review-card p { flex: 1; margin: 22px 0; color: #39414a; font-size: 14px; }
.ep-review-card footer { display: flex; justify-content: space-between; gap: 10px; color: var(--ep-muted); font-size: 11px; }
.ep-review-card footer span { display: inline-flex; align-items: center; gap: 5px; color: var(--ep-brand-bright); }
.ep-review-card cite { font-style: normal; }

/* Articles */
.ep-article-card { overflow: hidden; border: 1px solid #e1ebf1; border-radius: var(--ep-radius-sm); background: var(--ep-surface); }
.ep-article-card__image { display: block; aspect-ratio: 360 / 151; overflow: hidden; }
.ep-article-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.ep-article-card:hover img { transform: scale(1.05); }
.ep-article-card__body { padding: 24px; }
.ep-article-card h3 { min-height: 48px; margin-bottom: 15px; font-size: 20px; }
.ep-article-card h3 a { color: var(--ep-ink); }
.ep-article-card__meta { display: flex; align-items: center; gap: 7px; color: var(--ep-muted); font-size: 12px; }

/* Final CTA */
.ep-final-cta { padding-top: 50px; padding-bottom: 80px; }
.ep-final-cta__card { display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: center; padding: 48px; border-radius: var(--ep-radius); background-color: var(--ep-ink); background-image: linear-gradient(90deg, rgba(18,20,24,.96), rgba(18,20,24,.78)), url('../images/dark-texture.webp'); background-size: cover; color: #fff; }
.ep-final-cta h2 { color: #fff; font-size: clamp(32px, 3.5vw, 46px); }
.ep-final-cta p { max-width: 720px; color: rgba(255,255,255,.7); }
.ep-expert { display: flex; align-items: center; gap: 12px; }
.ep-expert > div { display: flex; flex-direction: column; }
.ep-expert small { color: rgba(255,255,255,.55); }
.ep-final-cta__action { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; max-width: 360px; text-align: right; }
.ep-final-cta__action span { color: rgba(255,255,255,.58); font-size: 12px; }

/* Footer */
.ep-site-footer { padding: 70px 0 26px; background: var(--ep-ink); color: rgba(255,255,255,.72); }
.ep-footer-grid { display: grid; grid-template-columns: 1.35fr repeat(4, 1fr); gap: 38px; }
.ep-footer-logo { display: inline-flex; width: 190px; height: 31px; margin-bottom: 24px; }
.ep-footer-logo img { display: block; width: 190px; height: 31px; margin: 0; object-fit: contain; object-position: left center; }
.ep-footer-brand > p { max-width: 270px; color: rgba(255,255,255,.62); font-size: 12px; }
.ep-footer-contacts { display: grid; gap: 9px; margin: 22px 0; padding: 0; list-style: none; }
.ep-footer-contacts li { display: flex; align-items: center; gap: 9px; font-size: 13px; }
.ep-footer-contacts a { color: rgba(255,255,255,.82); }
.ep-footer-contacts a:hover { color: var(--ep-accent); }
.ep-made-in-ua { font-size: 12px; }
.ep-footer__title { margin-bottom: 20px; color: #fff; font-size: 16px; letter-spacing: 0; }
.ep-footer-menu { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.ep-footer-menu a { color: rgba(255,255,255,.68); font-size: 12px; }
.ep-footer-menu a:hover { color: #fff; }
.ep-footer-services { display: grid; gap: 12px; margin-top: 42px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); }
.ep-footer-services > div { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.ep-footer-services strong { min-width: 72px; color: #fff; font-size: 12px; }
.ep-footer-services span { padding: 7px 10px; border: 1px solid rgba(255,255,255,.18); border-radius: 6px; color: rgba(255,255,255,.76); font-size: 10px; }
.ep-footer-extra { margin-top: 24px; }
.ep-footer-bottom { display: flex; justify-content: space-between; gap: 25px; padding-top: 24px; color: rgba(255,255,255,.42); font-size: 10px; }
.ep-footer-bottom p { margin: 0; }
.ep-footer-bottom a { color: rgba(255,255,255,.62); }

/* Standard pages, archives and blog */
.ep-page-hero, .ep-single-hero { padding: 54px 0 48px; background: var(--ep-surface); }
.ep-page-hero h1, .ep-single-hero h1 { max-width: 950px; margin: 20px 0 0; font-size: clamp(38px, 5vw, 62px); }
.ep-breadcrumbs { display: flex; flex-wrap: wrap; gap: 9px; align-items: center; color: var(--ep-muted); font-size: 12px; }
.ep-breadcrumbs a { color: var(--ep-brand-bright); }
.ep-page-main .ep-entry-content, .ep-standard-page { padding-top: 60px; padding-bottom: 80px; }
.ep-entry-content { color: #303840; }
.ep-entry-content > * { max-width: 840px; margin-left: auto; margin-right: auto; }
.ep-entry-content > .alignwide { max-width: var(--ep-container); }
.ep-entry-content > .alignfull { max-width: none; }
.ep-entry-content h2 { margin-top: 1.7em; font-size: clamp(28px, 3vw, 40px); }
.ep-entry-content h3 { margin-top: 1.5em; font-size: 25px; }
.ep-entry-content p, .ep-entry-content li { font-size: 17px; line-height: 1.75; }
.ep-entry-content a { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.ep-entry-content img { border-radius: var(--ep-radius-sm); }
.ep-entry-content blockquote { margin-block: 34px; padding: 26px 30px; border-left: 4px solid var(--ep-brand-bright); border-radius: 0 var(--ep-radius-sm) var(--ep-radius-sm) 0; background: var(--ep-surface); }
.ep-entry-content table { width: 100%; border-collapse: collapse; }
.ep-entry-content th, .ep-entry-content td { padding: 12px; border: 1px solid var(--ep-line); text-align: left; }
.ep-elementor-page { width: 100%; }
.ep-listing-main { padding: 46px 0 80px; }
.ep-page-header { margin: 25px 0 38px; }
.ep-page-header h1 { font-size: clamp(38px, 5vw, 58px); }
.ep-archive-description { max-width: 780px; color: var(--ep-muted); }
.ep-content-with-sidebar { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 44px; align-items: start; }
.ep-post-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.ep-post-card { overflow: hidden; border: 1px solid var(--ep-line); border-radius: var(--ep-radius-sm); background: #fff; }
.ep-post-card__image { display: block; aspect-ratio: 16/9; overflow: hidden; background: var(--ep-surface); }
.ep-post-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.ep-post-card:hover img { transform: scale(1.04); }
.ep-post-card__body { padding: 26px; }
.ep-post-card h2 { margin: 10px 0 12px; font-size: 24px; }
.ep-post-card h2 a { color: var(--ep-ink); }
.ep-post-card p { color: var(--ep-muted); font-size: 14px; }
.ep-entry-meta { display: flex; flex-wrap: wrap; gap: 14px; color: var(--ep-muted); font-size: 12px; }
.ep-sidebar { position: sticky; top: 120px; display: grid; gap: 18px; }
.ep-widget { padding: 24px; border: 1px solid var(--ep-line); border-radius: var(--ep-radius-sm); background: var(--ep-surface); }
.ep-widget__title { margin-bottom: 16px; font-size: 18px; }
.ep-widget ul { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.ep-widget li { display: flex; justify-content: space-between; gap: 10px; font-size: 13px; }
.ep-widget a { color: var(--ep-ink); }
.ep-widget .ep-search-form__submit { display: none; }
.ep-widget .ep-search-form { padding-right: 12px; }
.ep-pagination { grid-column: 1/-1; margin-top: 18px; }
.ep-pagination .nav-links { display: flex; flex-wrap: wrap; gap: 8px; }
.ep-pagination .page-numbers { display: grid; place-items: center; min-width: 42px; height: 42px; padding: 0 12px; border: 1px solid var(--ep-line); border-radius: 8px; color: var(--ep-ink); }
.ep-pagination .current, .ep-pagination a:hover { border-color: var(--ep-brand-bright); background: var(--ep-brand-bright); color: #fff; }
.ep-single-hero { background: linear-gradient(135deg, #f2f9fc, #e7f3f9); }
.ep-single-hero__inner { display: flex; flex-direction: column; align-items: flex-start; }
.ep-single-hero .ep-entry-meta { margin: 24px 0 14px; }
.ep-single-lead { max-width: 800px; margin: 0; color: var(--ep-muted); font-size: 19px; }
.ep-single-featured { margin-top: 38px; }
.ep-single-featured img { width: 100%; max-height: 650px; object-fit: cover; border-radius: var(--ep-radius); }
.ep-single-layout { padding-top: 56px; padding-bottom: 60px; }
.ep-single-layout .ep-entry-content > * { max-width: none; }
.ep-single-footer { padding-bottom: 50px; }
.ep-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.ep-tags a { padding: 8px 12px; border-radius: 999px; background: var(--ep-surface); color: var(--ep-brand); font-size: 12px; }
.ep-comments { padding: 55px 0; background: var(--ep-surface); }
.ep-comments .comment-list { padding: 0; list-style: none; }
.ep-comments .comment-body { margin-bottom: 15px; padding: 22px; border-radius: var(--ep-radius-sm); background: #fff; }
.ep-comments input:not([type=submit]), .ep-comments textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--ep-line); border-radius: 8px; }
.ep-search-results { display: grid; gap: 16px; }
.ep-search-product { display: grid; grid-template-columns: 190px 1fr; gap: 26px; padding: 20px; border: 1px solid var(--ep-line); border-radius: var(--ep-radius-sm); }
.ep-search-product__image { display: grid; place-items: center; min-height: 160px; background: var(--ep-surface); border-radius: 10px; }
.ep-search-product__image img { width: 100%; height: 160px; object-fit: contain; }
.ep-search-product h2 { margin: 5px 0 10px; }
.ep-search-product h2 a { color: var(--ep-ink); }
.ep-no-results { grid-column: 1/-1; padding: 50px; border-radius: var(--ep-radius); background: var(--ep-surface); text-align: center; }
.ep-no-results .ep-search-form { max-width: 650px; margin: 24px auto; }
.ep-error-page { padding: 90px 0; background: linear-gradient(135deg, var(--ep-surface), #fff); }
.ep-error-page__inner { max-width: 800px; text-align: center; }
.ep-error-page__code { color: var(--ep-brand-bright); font-size: clamp(100px, 18vw, 210px); font-weight: 800; line-height: .9; opacity: .12; }
.ep-error-page h1 { font-size: clamp(34px, 5vw, 52px); }
.ep-error-page p { color: var(--ep-muted); }
.ep-error-page__search { margin: 30px auto; }
.ep-error-page__actions { display: flex; justify-content: center; gap: 12px; }
.ep-page-builder-section { border-top: 1px solid var(--ep-line); }

/* Reveal effects, progressively enhanced */
.js .ep-reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s cubic-bezier(.2,.8,.2,1); }
.js .ep-reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .js .ep-reveal { opacity: 1; transform: none; }
}

/* WordPress utility classes */
.alignleft { float: left; margin: .5em 2em 1em 0; }
.alignright { float: right; margin: .5em 0 1em 2em; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text, .gallery-caption { color: var(--ep-muted); font-size: 12px; }
.sticky { position: relative; }
.bypostauthor { position: relative; }

@media (max-width: 1180px) {
  :root { --ep-container: 1080px; }
  .ep-topbar__contacts { gap: 20px; }
  .ep-mainbar__inner { grid-template-columns: 190px minmax(240px, 1fr) auto; gap: 20px; }
  .ep-brand img, .ep-brand .custom-logo { max-width: 190px; }
  .ep-header-consult { display: none; }
  .ep-navbar__inner { gap: 20px; }
  .ep-primary-menu { gap: 20px; }
  .ep-primary-menu a { font-size: 13px; }
  .ep-footer-grid { grid-template-columns: 1.4fr repeat(2, 1fr); }
  .ep-footer-column:nth-of-type(4), .ep-footer-column:nth-of-type(5) { margin-top: 10px; }
}

@media (max-width: 960px) {
  :root { --ep-header-offset: 72px; }
  .admin-bar .ep-site-header.is-stuck { top: 46px; }
  .ep-container { width: min(calc(100% - 32px), var(--ep-container)); }
  .ep-section { padding: 56px 0; }
  .ep-topbar, .ep-navbar, .ep-header-search, .ep-header-action--account { display: none; }
  .ep-site-header { position: sticky; top: 0; box-shadow: 0 8px 25px rgba(18,20,24,.08); }
  .admin-bar .ep-site-header { top: 32px; }
  .ep-mainbar__inner { min-height: 72px; grid-template-columns: 1fr auto; }
  .ep-header-actions { grid-column: 2; }
  .ep-menu-toggle { display: grid; place-items: center; }
  .ep-hero { min-height: 620px; }
  .ep-hero__grid { grid-template-columns: 1fr; gap: 34px; align-items: start; }
  .ep-hero__content { max-width: 600px; }
  .ep-icon-card-grid, .ep-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ep-choice-grid { grid-template-columns: 1fr; }
  .ep-choice-card { min-height: 520px; }
  .ep-service-row { grid-template-columns: 1fr; }
  .ep-service-row__image, .ep-service-row--reverse .ep-service-row__image { order: 1; min-height: 320px; }
  .ep-service-row__body, .ep-service-row--reverse .ep-service-row__body { order: 2; }
  .ep-about-grid { grid-template-columns: 1fr; }
  .ep-stat-grid { grid-column: 1; }
  .ep-portfolio-grid, .ep-article-grid, .ep-review-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ep-review-card:last-child, .ep-article-card:last-child { grid-column: 1 / -1; }
  .ep-rating-summary { grid-template-columns: 1fr 1fr; }
  .ep-rating-summary__source { justify-self: start; }
  .ep-final-cta__card { grid-template-columns: 1fr; }
  .ep-final-cta__action { align-items: flex-start; text-align: left; }
  .ep-footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .ep-content-with-sidebar { grid-template-columns: 1fr; }
  .ep-sidebar { position: static; grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 680px) {
  .ep-container { width: min(calc(100% - 24px), var(--ep-container)); }
  .ep-section, .ep-section--compact { padding: 44px 0; }
  .ep-section-heading { align-items: flex-start; flex-direction: column; margin-bottom: 28px; }
  .ep-section-heading h2 { font-size: 30px; }
  .ep-brand img, .ep-brand .custom-logo { max-width: 165px; }
  .ep-header-action--cart { width: 40px; height: 40px; }
  .ep-hero { min-height: 650px; }
  .ep-hero__overlay { background: linear-gradient(90deg, rgba(8,13,18,.92), rgba(8,13,18,.55)), linear-gradient(0deg, rgba(8,13,18,.7), transparent); }
  .ep-hero__inner { padding-block: 58px; }
  .ep-hero__title { font-size: clamp(38px, 12vw, 52px); }
  .ep-hero__content { padding: 22px; }
  .ep-hero__content p { font-size: 16px; }
  .ep-icon-card-grid, .ep-product-grid, .ep-system-grid, .ep-portfolio-grid, .ep-article-grid, .ep-review-grid, .ep-post-grid { grid-template-columns: 1fr; }
  .ep-icon-card { min-height: 160px; }
  .ep-choice-card { min-height: 0; grid-template-rows: auto 230px; }
  .ep-choice-card--diy { grid-template-rows: 230px auto; }
  .ep-choice-card__body { padding: 30px 24px; }
  .ep-product-card__body { min-height: 200px; }
  .ep-promo-strip { align-items: flex-start; flex-direction: column; padding: 26px 22px; }
  .ep-service-row__image, .ep-service-row--reverse .ep-service-row__image { min-height: 240px; }
  .ep-service-row__body { padding: 34px 24px; }
  .ep-about-copy { padding: 30px 24px; }
  .ep-stat-grid { grid-template-columns: 1fr 1fr; }
  .ep-rating-summary { grid-template-columns: 1fr; }
  .ep-review-card:last-child, .ep-article-card:last-child { grid-column: auto; }
  .ep-final-cta__card { padding: 32px 24px; }
  .ep-final-cta__action, .ep-final-cta__action .ep-button { width: 100%; }
  .ep-footer-grid { grid-template-columns: 1fr 1fr; }
  .ep-footer-brand { grid-column: 1 / -1; }
  .ep-footer-services > div { align-items: flex-start; }
  .ep-footer-services strong { width: 100%; }
  .ep-footer-bottom { flex-direction: column; }
  .ep-page-hero, .ep-single-hero { padding: 36px 0; }
  .ep-content-with-sidebar { gap: 28px; }
  .ep-sidebar { grid-template-columns: 1fr; }
  .ep-search-product { grid-template-columns: 100px 1fr; gap: 16px; }
  .ep-search-product__image, .ep-search-product__image img { min-height: 100px; height: 100px; }
  .ep-error-page { padding: 60px 0; }
  .ep-error-page__actions { flex-direction: column; }
}

@media (max-width: 480px) {
  .admin-bar .ep-site-header { top: 46px; }
  .ep-header-action--cart { display: none; }
  .ep-stat-grid { grid-template-columns: 1fr; }
  .ep-footer-grid { grid-template-columns: 1fr; }
  .ep-footer-brand { grid-column: auto; }
  .ep-search-form__submit { display: none; }
  .ep-search-form { padding-right: 12px; }
  .ep-mobile-panel .ep-search-form__submit { display: inline-flex; }
  .ep-final-cta h2 { font-size: 31px; }
}

/* --------------------------------------------------------------------------
   Homepage fidelity pass — 0.2.0
   Desktop values below follow the 1440 px Figma frame: 1240 px content,
   100 px side margins, 70 px section padding and 20 px card gutters.
   -------------------------------------------------------------------------- */

@media (min-width: 1181px) {
  .ep-homepage .ep-container,
  .ep-site-header .ep-container,
  .ep-site-footer .ep-container { width: min(calc(100% - 200px), 1240px); }

  .ep-homepage .ep-section { padding: 70px 0; }
  .ep-homepage .ep-section--compact { padding: 70px 0; }
  .ep-homepage .ep-section-heading { min-height: 68px; margin-bottom: 32px; align-items: flex-end; }
  .ep-homepage .ep-section-heading--narrow { max-width: none; }
  .ep-homepage .ep-section-heading h2 { margin: 0 0 6px; font-size: 32px; line-height: 38px; letter-spacing: -.025em; }
  .ep-homepage .ep-section-heading p { margin: 0; font-size: 16px; line-height: 24px; }
  .ep-homepage .ep-button { min-height: 52px; padding: 13px 20px; border-radius: 10px; font-size: 16px; box-shadow: none; }
  .ep-homepage .ep-button--small { min-height: 52px; }
  .ep-homepage .ep-button--large { min-height: 60px; }
  .ep-homepage .ep-button--ghost { min-height: 55px; }

  /* Header is 52 + 72 + 75 = 199 px in the source design. */
  .ep-topbar,
  .ep-topbar__inner { min-height: 52px; }
  .ep-mainbar,
  .ep-mainbar__inner { min-height: 72px; }
  .ep-navbar,
  .ep-navbar__inner { min-height: 75px; }
  .ep-topbar__contacts { font-size: 16px; }
  .ep-mainbar__inner { grid-template-columns: 215px minmax(420px, 1fr) auto; gap: 34px; }
  .ep-navbar__inner { gap: 34px; }
  .ep-primary-menu { gap: 40px; }
  .ep-primary-menu a,
  .ep-products-link { font-size: 16px; }

  /* Hero: exact 630 px frame with the copy sitting in the lower half. */
  .ep-hero { min-height: 630px; height: 630px; align-items: center; }
  .ep-hero__media { background-position: center 55%; }
  .ep-hero__overlay {
    background:
      linear-gradient(90deg, rgba(0,0,0,.80) 0%, rgba(0,0,0,.69) 45%, rgba(0,0,0,.50) 100%),
      linear-gradient(0deg, rgba(0,79,137,.08), transparent 55%);
  }
  .ep-hero__inner { height: 470px; padding: 210px 0 0; }
  .ep-hero .ep-kicker { height: 36px; margin: 0 0 50px 0; padding: 6px 14px; font-size: 16px; line-height: 24px; }
  .ep-hero__grid { grid-template-columns: 668px 521px; gap: 50px; align-items: start; }
  .ep-hero__title { width: 668px; max-width: none; margin: 0; font-size: 48px; line-height: 1.2083; letter-spacing: -.025em; }
  .ep-hero__content { width: 521px; max-width: none; min-height: 170px; display: flex; flex-direction: column; align-items: flex-end; padding: 0; border: 0; border-radius: 0; background: transparent; backdrop-filter: none; }
  .ep-hero__content p { width: 409px; margin: 0; font-size: 20px; line-height: 1.2; }
  .ep-hero__content .ep-button { width: 200px; margin-top: 46px; }

  .ep-solution-choice-wrap {
    position: relative;
    overflow-x: clip;
    overflow-y: visible;
    background: #fff;
  }
  .ep-solution-choice-wrap__background {
    position: absolute;
    z-index: 0;
    /* Several vector paths extend approximately 98 px beyond the Figma
       export viewBox. Inline SVG rendering keeps that overflow visible. */
    top: -38px;
    right: calc(max(0px, (100vw - 1440px) / 2) + 98px);
    width: 425px;
    height: 770px;
    max-width: none;
    overflow: visible;
    object-fit: contain;
    object-position: right top;
    pointer-events: none;
    user-select: none;
  }
  .ep-solution-choice-wrap.has-custom-background .ep-choice-section::before,
  .ep-solution-choice-wrap.has-custom-background .ep-choice-section::after { display: none; }

  /* Four centered direction cards. */
  .ep-solution-types { position: relative; min-height: 334px; padding: 70px 0 76px; overflow: hidden; }
  .ep-solution-panel { padding: 0; border: 0; border-radius: 0; background: transparent; box-shadow: none; overflow: visible; }
  .ep-solution-panel::before,
  .ep-solution-panel::after { display: none; }
  .ep-icon-card-grid { grid-template-columns: repeat(4, 295px); gap: 20px; }
  .ep-icon-card {
    width: 295px;
    min-height: 194px;
    height: 194px;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    padding: 28px 20px;
    border-radius: 10px;
    background: #f1f8fc;
    text-align: center;
  }
  .ep-icon-card__icon { display: grid; place-items: center; width: 58px; height: 58px; border-radius: 10px; }
  .ep-icon-card__glyph { display: grid; place-items: center; width: 22px; height: 22px; }
  .ep-icon-card__glyph .ep-icon { width: 20px; height: 20px; }
  .ep-icon-card__asset { width: 22px; height: 22px; object-fit: contain; }
  .ep-icon-card__content { width: 255px; gap: 0; align-items: center; }
  .ep-icon-card strong { margin-top: 2px; font-size: 16px; line-height: 24px; }
  .ep-icon-card small { max-width: 255px; margin-top: 5px; font-size: 14px; line-height: 21px; }
  .ep-icon-card > .ep-icon { display: none; }

  /* Choice pair: 610 x 613 px with a 20 px internal separation. */
  .ep-choice-section { position: relative; padding-top: 0; overflow: hidden; }
  .ep-choice-section::before,
  .ep-choice-section::after { content: ''; position: absolute; border-radius: 50%; pointer-events: none; }
  .ep-choice-section::before { top: -278px; right: -195px; width: 574px; height: 574px; border: 46px solid #e2f1fb; opacity: .85; }
  .ep-choice-section::after { top: -108px; right: -50px; width: 420px; height: 420px; border: 46px solid rgba(239, 236, 194, .75); opacity: .75; }
  .ep-choice-grid { position: relative; z-index: 1; grid-template-columns: repeat(2, 610px); gap: 20px; }
  .ep-choice-card {
    width: 610px;
    min-height: 613px;
    height: 613px;
    grid-template-rows: 310px 283px;
    gap: 20px;
    overflow: visible;
    border-radius: 0;
    background: transparent;
  }
  .ep-choice-card--diy { grid-template-rows: 283px 310px; }
  .ep-choice-card__body { height: 310px; padding: 28px 24px 24px; border-radius: 10px; background: var(--ep-ink); }
  .ep-choice-card__image { height: 283px; border-radius: 10px; background: #d9e8f2; }
  .ep-choice-card .ep-pill { min-height: 32px; padding: 5px 12px; font-size: 14px; line-height: 20px; }
  .ep-choice-card h2 { max-width: 370px; margin: 18px 0 6px; font-size: 24px; line-height: 29px; letter-spacing: -.02em; }
  .ep-choice-card p { max-width: 360px; margin: 0; font-size: 14px; line-height: 21px; }
  .ep-choice-card .ep-button { width: auto; min-width: 168px; margin-top: auto; padding-inline: 18px; }
  .ep-choice-card__note { display: inline-flex; align-items: center; gap: 8px; margin-top: 12px; font-size: 12px; line-height: 18px; color: rgba(255,255,255,.75); }
  .ep-choice-card__note .ep-icon,
  .ep-choice-card__note-icon { flex: 0 0 16px; width: 16px; height: 16px; object-fit: contain; color: var(--ep-accent); }

  /* Product carousel and cards. */
  .ep-products-section .ep-section-heading h2 { text-transform: uppercase; }
  .ep-products-section .ep-section-heading p { color: #56616c; }
  .ep-product-slider-controls { display: flex; align-items: center; gap: 20px; }
  .ep-slider-button { display: grid; place-items: center; width: 55px; height: 55px; padding: 0; border: 1px solid var(--ep-product-blue); border-radius: 10px; background: #fff; color: var(--ep-product-blue); }
  .ep-slider-button:hover { background: var(--ep-product-blue); color: #fff; }
  .ep-slider-button[aria-disabled="true"] { opacity: .45; cursor: default; }
  .ep-slider-button--prev .ep-icon { transform: rotate(180deg); }
  .ep-product-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 295px;
    grid-template-columns: none;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
  }
  .ep-product-grid::-webkit-scrollbar { display: none; }
  .ep-product-card {
    width: 295px;
    height: 434px;
    scroll-snap-align: start;
    border-color: transparent;
    border-radius: 10px;
    background: #f2f9fc;
    box-shadow: none;
  }
  .ep-product-card:hover { transform: none; border-color: var(--ep-product-blue); box-shadow: none; }
  .ep-product-card__image { width: 240px; height: 240px; margin: 0 auto; padding: 0; aspect-ratio: auto; background: transparent; }
  .ep-product-card__badge { top: 10px; left: 10px; }
  .ep-product-card__body {
    display: grid;
    grid-template-rows: 44px 21px 27px 52px;
    row-gap: 6px;
    min-height: 194px;
    height: 194px;
    padding: 14px 20px 18px;
  }
  .ep-product-card__title { width: 255px; min-height: 44px; margin: 0; overflow: hidden; font-size: 18px; line-height: 22px; }
  .ep-product-card__body p { width: 255px; min-height: 21px; margin: 0; overflow: hidden; color: #6f7882; font-size: 14px; line-height: 21px; white-space: nowrap; text-overflow: ellipsis; }
  .ep-product-card__price { align-self: center; justify-self: center; margin: 0; color: var(--ep-product-blue); font-size: 18px; line-height: 27px; white-space: nowrap; }
  .ep-product-card__price-prefix { font-weight: 700; }
  .ep-product-card .ep-button { align-self: center; justify-self: center; width: 140px; min-height: 52px; margin: 0; border-color: var(--ep-product-blue); color: var(--ep-product-blue); }
  .ep-product-card .ep-button:hover { border-color: var(--ep-product-blue); background: var(--ep-product-blue); color: #fff; }

  .ep-promo-strip { min-height: 142px; margin-top: 32px; padding: 34px 40px; border-radius: 10px; }
  .ep-promo-strip strong { margin: 0 0 10px; font-size: 18px; line-height: 22px; }
  .ep-promo-strip p { max-width: 582px; margin: 0; font-size: 14px; line-height: 21px; }
  .ep-promo-strip .ep-button { flex: 0 0 auto; }
  .ep-products-section .ep-promo-strip--products { background-color: var(--ep-ink); background-image: url('../images/dark-texture.webp'); background-position: center; background-repeat: no-repeat; background-size: cover; }
  .ep-products-section .ep-promo-strip--products.has-custom-background { background-image: var(--ep-products-promo-background); }
  .ep-products-section .ep-promo-strip strong { text-transform: uppercase; }
  .ep-products-section .ep-promo-strip .ep-button { width: auto; min-width: 198px; border-color: var(--ep-product-blue); background: var(--ep-product-blue); white-space: nowrap; }
  .ep-products-section .ep-promo-strip .ep-button:hover { border-color: #006fc3; background: #006fc3; }

  /* Ready-made systems. */
  .ep-system-grid { grid-template-columns: repeat(3, 400px); gap: 20px; }
  .ep-system-card { width: 400px; height: 382px; border-radius: 10px; background: #f2f9fc; }
  .ep-system-card__image { height: 151px; aspect-ratio: auto; }
  .ep-system-card__body { height: 231px; align-items: flex-start; padding: 30px 40px; }
  .ep-system-card__body h3 { margin: 0; font-size: 18px; line-height: 22px; }
  .ep-system-card__body p { min-height: 42px; margin: 0; font-size: 14px; line-height: 21px; }
  .ep-system-card__price { align-self: center; margin-top: 10px; color: var(--ep-brand-bright); font-size: 18px; line-height: 27px; }
  .ep-system-card__body .ep-text-link { align-self: center; margin-top: 13px; font-size: 16px; line-height: 24px; }
  .ep-system-card__image .ep-pill { top: 10px; right: 10px; min-height: 36px; padding: 6px 14px; font-size: 16px; }
  .ep-systems-section .ep-promo-strip .ep-button { width: 243px; }

  .ep-systems-services-wrap { position: relative; overflow: hidden; }
  .ep-systems-services-wrap__ornament { position: absolute; z-index: 1; top: 585px; left: calc(50% - 820px); width: 425px; height: 770px; max-width: none; pointer-events: none; }
  .ep-systems-services-wrap .ep-systems-section,
  .ep-systems-services-wrap .ep-services-section { position: relative; }
  .ep-systems-services-wrap .ep-systems-section > .ep-container,
  .ep-systems-services-wrap .ep-services-section > .ep-container { position: relative; z-index: 2; }
  .ep-systems-section { overflow: visible; }
  .ep-systems-section .ep-section-heading h2 { text-transform: uppercase; }
  .ep-systems-section .ep-section-heading p { color: #444f5a; }
  .ep-button--systems { flex: 0 0 auto; width: auto; min-width: 238px; max-width: 273px; min-height: 42px; padding-inline: 20px; border-color: #2f87dd; color: #2f87dd; background: transparent; white-space: nowrap; }
  .ep-button--systems:hover { border-color: #2f87dd; background: rgba(47,135,221,.08); color: #2f87dd; }
  .ep-system-card { width: 400px; height: 381px; border: 1px solid #d7e5ee; border-radius: 10px; background: #edf6fb; box-shadow: none; }
  .ep-system-card__image { height: 151px; aspect-ratio: auto; }
  .ep-system-card__image .ep-pill { top: 10px; right: 10px; min-height: 36px; padding: 6px 14px; border: 1px solid rgba(255,237,43,1); border-radius: 12px; background: rgba(255,237,43,.10); color: #ffe81f; font-size: 16px; line-height: 24px; backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
  .ep-system-card__body { display: flex; flex-direction: column; align-items: center; height: 230px; padding: 18px 30px 24px; text-align: center; }
  .ep-system-card__body h3 { margin: 0; font-size: 18px; line-height: 22px; text-transform: uppercase; }
  .ep-system-card__body p { max-width: 280px; min-height: 42px; margin: 8px 0 0; color: #8b97a3; font-size: 14px; line-height: 21px; }
  .ep-system-card__price { display: block; margin-top: 12px; color: var(--ep-product-blue); font-size: 18px; line-height: 27px; }
  .ep-button--system-card { margin-top: 20px; min-width: 150px; min-height: 40px; padding-inline: 18px; border-color: var(--ep-product-blue); color: var(--ep-product-blue); background: transparent; }
  .ep-button--system-card:hover { border-color: var(--ep-product-blue); background: rgba(31,139,244,.08); color: var(--ep-product-blue); }
  .ep-promo-strip--systems { min-height: 112px; margin-top: 24px; padding: 35px 30px; }
  .ep-promo-strip--systems.has-custom-background { background-image: var(--ep-products-promo-background); background-position: center; background-repeat: no-repeat; background-size: cover; }
  .ep-promo-strip--systems strong { text-transform: uppercase; }
  .ep-promo-strip--systems p { max-width: 600px; color: rgba(255,255,255,.72); }
  .ep-systems-section .ep-promo-strip .ep-button { width: auto; min-width: 193px; white-space: nowrap; }

  /* Services: both rows are full-width photography with a 500 x 353 white card. */
  .ep-service-stack { gap: 20px; }
  .ep-service-row,
  .ep-service-row--overlay,
  .ep-service-row--reverse {
    position: relative;
    display: block;
    width: 1240px;
    min-height: 401px;
    height: 401px;
    overflow: hidden;
    border-radius: 10px;
    background: #dce6eb;
    color: var(--ep-ink);
  }
  .ep-service-row__image,
  .ep-service-row--overlay .ep-service-row__image,
  .ep-service-row--reverse .ep-service-row__image { position: absolute; inset: 0; order: initial; min-height: 0; }
  .ep-service-row__body,
  .ep-service-row--overlay .ep-service-row__body,
  .ep-service-row--reverse .ep-service-row__body {
    position: absolute;
    z-index: 2;
    top: 24px;
    left: 24px;
    width: 500px;
    height: 353px;
    min-height: 0;
    margin: 0;
    padding: 20px 20px 24px;
    justify-content: flex-start;
    border: 0;
    border-radius: 10px;
    background: #fff;
    color: var(--ep-ink);
    box-shadow: none;
  }
  .ep-service-row--reverse .ep-service-row__body { right: 24px; left: auto; }
  .ep-services-section .ep-section-heading h2 { text-transform: uppercase; }
  .ep-services-section .ep-section-heading p { color: #343b43; }
  .ep-service-row__body h3 { margin: 0; color: var(--ep-ink); font-size: 24px; line-height: 29px; text-transform: uppercase; }
  .ep-service-row__lead { margin: 0 0 13px !important; color: var(--ep-muted) !important; font-size: 14px !important; line-height: 21px !important; }
  .ep-service-steps { width: 100%; display: grid; gap: 0; margin: 0; padding: 0; list-style: none; counter-reset: ep-service-step; }
  .ep-service-steps li { min-height: 34px; display: flex; align-items: center; gap: 16px; color: #343b43; font-size: 14px; line-height: 21px; counter-increment: ep-service-step; }
  .ep-service-steps li::before { content: counter(ep-service-step, decimal-leading-zero); display: grid; place-items: center; flex: 0 0 22px; width: 22px; height: 22px; border: 1px solid var(--ep-product-blue); border-radius: 8px; color: var(--ep-product-blue); font-size: 12px; line-height: 1; font-weight: 500; }
  .ep-service-row__note { margin: 1px 0 0 !important; color: var(--ep-muted) !important; font-size: 14px !important; line-height: 21px !important; }
  .ep-service-row .ep-button { min-width: 190px; margin: auto 0 0; }
  .ep-service-row .ep-button--ghost { min-width: 227px; color: var(--ep-brand-bright); }
  .ep-services-section .ep-section-heading { margin-bottom: 32px; }
  .ep-service-row:hover .ep-service-row__image img { transform: none; }
  .ep-service-row__image img { object-position: center center; }

  /* Production: two 610 px columns followed by the partner strip. */
  .ep-about-layout { display: grid; grid-template-columns: repeat(2, 610px); gap: 20px; height: 292px; }
  .ep-about-left { display: grid; grid-template-rows: 76px 196px; gap: 20px; }
  .ep-about-left h2 { width: 610px; margin: 0; font-size: 32px; line-height: 38px; }
  .ep-about-media { min-height: 0; height: 196px; border-radius: 10px; }
  .ep-about-right { display: grid; grid-template-rows: 72px 200px; gap: 20px; }
  .ep-about-intro { display: grid; grid-template-columns: 335px 196px; gap: 79px; align-items: start; }
  .ep-about-intro p { margin: 0; color: var(--ep-muted); font-size: 16px; line-height: 24px; }
  .ep-about-intro .ep-button { width: 196px; }
  .ep-about-stats { display: grid; grid-template-columns: repeat(2, 295px); grid-template-rows: repeat(2, 90px); gap: 20px; }
  .ep-about-stats > div { min-height: 0; height: 90px; padding: 20px; border: 1px solid #e5eef3; border-radius: 10px; }
  .ep-about-stats strong { font-size: 24px; line-height: 29px; }
  .ep-about-stats span { font-size: 14px; line-height: 21px; }
  .ep-about-section .ep-promo-strip .ep-button { width: 186px; }

  .ep-button--systems { min-width: 238px; max-width: 273px; }

  /* Portfolio. */
  .ep-filter-pills { height: 55px; gap: 20px; margin: 0 0 32px; }
  .ep-filter-pills span { min-height: 55px; padding: 15px 20px; border-radius: 999px; font-size: 16px; line-height: 24px; }
  .ep-portfolio-grid { grid-template-columns: repeat(3, 400px); gap: 20px; }
  .ep-portfolio-card { width: 400px; height: 254px; border-radius: 10px; }
  .ep-portfolio-card__image { height: 151px; aspect-ratio: auto; }
  .ep-portfolio-card__body { height: 103px; padding: 30px 40px; }
  .ep-portfolio-card__body h3 { margin: 0; font-size: 18px; line-height: 22px; }
  .ep-portfolio-card__body p { font-size: 14px; line-height: 21px; }
  .ep-portfolio-card__image .ep-pill { top: 10px; right: 10px; min-height: 36px; padding: 6px 14px; font-size: 16px; }

  /* Reviews. */
  .ep-reviews-section .ep-section-heading { min-height: 55px; margin-bottom: 32px; align-items: center; }
  .ep-reviews-section .ep-section-heading h2 { margin: 0; }
  .ep-reviews-section .ep-section-heading .ep-button { width: 219px; }
  .ep-rating-summary { height: 95px; margin: 0 0 32px; padding: 20px; border-radius: 10px; grid-template-columns: 500px 500px 160px; gap: 20px; }
  .ep-rating-summary > div:first-child { display: flex; flex-direction: column; align-items: flex-start; gap: 0; }
  .ep-rating-summary > div:nth-child(2),
  .ep-rating-summary > div:nth-child(3) { display: block; }
  .ep-rating-summary > div:nth-child(2) { grid-column: 2; grid-row: 1; }
  .ep-rating-summary > div:nth-child(3) { grid-column: 2; grid-row: 1; align-self: end; }
  .ep-rating-summary strong { font-size: 24px; line-height: 29px; }
  .ep-rating-summary span { font-size: 14px; line-height: 21px; }
  .ep-rating-summary__source { grid-column: 3; width: 160px; min-height: 55px; display: grid; place-items: center; padding: 0; font-size: 16px; }
  .ep-review-grid { grid-template-columns: repeat(3, 400px); gap: 20px; }
  .ep-review-card { width: 400px; min-height: 203px; height: 203px; padding: 24px 32px; border-radius: 10px; }
  .ep-review-card p { margin: 10px 0 0; font-size: 16px; line-height: 24px; }
  .ep-review-card footer { margin-top: auto; font-size: 14px; line-height: 21px; }
  .ep-avatar { width: 42px; height: 42px; flex-basis: 42px; font-size: 16px; }

  /* Education cards use an inset image and category badge. */
  .ep-article-grid { grid-template-columns: repeat(3, 400px); gap: 20px; }
  .ep-article-card { position: relative; width: 400px; height: 296px; border-radius: 10px; background: #f2f9fc; }
  .ep-article-card__image { position: relative; width: 360px; height: 151px; margin: 20px 20px 0; aspect-ratio: auto; border-radius: 8px; }
  .ep-article-card__badge { position: absolute; top: 10px; right: 10px; min-height: 36px; padding: 6px 14px; font-size: 16px; }
  .ep-article-card__body { height: 125px; padding: 30px 40px; text-align: center; }
  .ep-article-card h3 { min-height: 44px; margin: 0; font-size: 18px; line-height: 22px; }
  .ep-article-card__meta { justify-content: center; margin-top: 0; font-size: 14px; line-height: 21px; }

  /* Final contact card. */
  .ep-final-cta { padding: 70px 0; }
  .ep-final-cta__card { width: 1240px; height: 268px; grid-template-columns: 811px 309px; gap: 0; padding: 54px 60px; border-radius: 10px; }
  .ep-final-cta h2 { margin: 0; font-size: 32px; line-height: 38px; }
  .ep-final-cta p { max-width: 811px; margin: 6px 0 20px; font-size: 18px; line-height: 27px; }
  .ep-expert { gap: 10px; }
  .ep-expert small { font-size: 12px; line-height: 14px; }
  .ep-final-cta__action { width: 309px; max-width: none; gap: 10px; }
  .ep-final-cta__action .ep-button { width: 309px; min-height: 60px; }
  .ep-final-cta__action span { font-size: 14px; line-height: 21px; }
  .ep-final-cta__card::before,
  .ep-final-cta__card::after { display: none; }

  /* Footer returns to the original spacious desktop proportions. */
  .ep-site-footer { min-height: 650px; padding: 100px 0 30px; }
  .ep-footer-grid { gap: 40px; }
  .ep-footer-logo { display: inline-flex; width: 190px; height: 31px; margin-bottom: 24px; }
.ep-footer-logo img { display: block; width: 190px; height: 31px; margin: 0; object-fit: contain; object-position: left center; }
  .ep-footer__title { font-size: 20px; }
  .ep-footer-menu a { font-size: 16px; }
  .ep-footer-brand > p { font-size: 12px; }
  .ep-footer-contacts li { font-size: 16px; }
  .ep-footer-services { margin-top: 32px; padding: 24px 0; }
}

/* Keep the uploaded decorative SVG at its native Figma proportions. */
@media (max-width: 1180px) {
  .ep-solution-choice-wrap__background {
    top: -24px;
    right: clamp(48px, 8vw, 98px);
    width: min(36vw, 425px);
    height: auto;
    aspect-ratio: 425 / 770;
  }
}

@media (max-width: 680px) {
  .ep-solution-choice-wrap__background {
    top: -12px;
    right: 42px;
    width: 260px;
    opacity: .72;
  }
}

/* Mid-size desktop and tablet. */
@media (max-width: 1180px) {
  .ep-homepage .ep-section-heading h2 { font-size: clamp(30px, 3.1vw, 38px); }
  .ep-solution-panel { padding: 0; background: transparent; box-shadow: none; }
  .ep-solution-panel::before,
  .ep-solution-panel::after { display: none; }
  .ep-icon-card { text-align: center; align-items: center; }
  .ep-icon-card__content { align-items: center; }
  .ep-icon-card > .ep-icon { display: none; }
  .ep-product-slider-controls { display: flex; gap: 10px; }
  .ep-slider-button { display: grid; place-items: center; width: 48px; height: 48px; padding: 0; border: 1px solid var(--ep-product-blue); border-radius: 10px; background: #fff; color: var(--ep-product-blue); }
  .ep-slider-button--prev .ep-icon { transform: rotate(180deg); }
  .ep-product-slider { grid-auto-flow: column; grid-auto-columns: calc((100% - 48px) / 4); grid-template-columns: none; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .ep-product-slider::-webkit-scrollbar { display: none; }
  .ep-product-card { scroll-snap-align: start; }
  .ep-system-card__price { display: block; margin: 12px 0; color: var(--ep-brand-bright); font-weight: 700; }
  .ep-systems-services-wrap__ornament { top: 520px; left: -165px; width: 360px; height: auto; }
  .ep-services-section .ep-section-heading h2 { text-transform: uppercase; }
  .ep-services-section .ep-section-heading p { color: #343b43; }
  .ep-service-row--overlay { position: relative; display: block; min-height: 450px; }
  .ep-service-row--overlay .ep-service-row__image { position: absolute; inset: 0; }
  .ep-service-row--overlay .ep-service-row__body { position: relative; z-index: 2; width: min(48%, 500px); min-height: 0; margin: 24px; padding: 28px; border-radius: 10px; background: #fff; color: var(--ep-ink); }
  .ep-service-row--reverse .ep-service-row__body { margin-left: auto; }
  .ep-service-row__body h3 { color: var(--ep-ink); }
  .ep-service-row__lead,
  .ep-service-row__note { color: var(--ep-muted) !important; }
  .ep-service-steps { display: grid; gap: 7px; margin: 12px 0; padding: 0; list-style: none; counter-reset: ep-service-step; }
  .ep-service-steps li { display: flex; gap: 12px; counter-increment: ep-service-step; }
  .ep-service-steps li::before { content: counter(ep-service-step, decimal-leading-zero); display: grid; place-items: center; flex: 0 0 22px; width: 22px; height: 22px; border: 1px solid var(--ep-product-blue); border-radius: 8px; color: var(--ep-product-blue); font-size: 12px; line-height: 1; font-weight: 500; }
  .ep-about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .ep-about-left,
  .ep-about-right { display: grid; gap: 20px; }
  .ep-about-intro { display: flex; justify-content: space-between; gap: 20px; }
  .ep-about-intro p { color: var(--ep-muted); }
  .ep-about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .ep-article-card__image { position: relative; }
  .ep-article-card__badge { position: absolute; top: 10px; right: 10px; }
}

@media (max-width: 960px) {
  .ep-mainbar__inner { grid-template-columns: 1fr auto; gap: 14px; }
  .ep-brand,
  .ep-brand .custom-logo { max-width: 180px; }
  .ep-header-actions { grid-column: 2; }
  .ep-hero { min-height: 620px; height: auto; }
  .ep-hero__inner { height: auto; padding-block: 66px 90px; }
  .ep-hero .ep-kicker { margin-bottom: 24px; }
  .ep-hero__grid { grid-template-columns: 1fr; gap: 30px; }
  .ep-hero__title,
  .ep-hero__content,
  .ep-hero__content p { width: auto; max-width: 650px; }
  .ep-hero__content { align-items: flex-start; }
  .ep-hero__content .ep-button { margin-top: 20px; }
  .ep-icon-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ep-choice-grid { grid-template-columns: 1fr; }
  .ep-choice-card { min-height: 0; height: auto; }
  .ep-product-slider { grid-auto-columns: calc((100% - 16px) / 2); }
  .ep-system-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .ep-service-row--overlay { min-height: 560px; }
  .ep-service-row--overlay .ep-service-row__body { width: calc(100% - 48px); max-width: 540px; }
  .ep-about-layout { grid-template-columns: 1fr; }
  .ep-about-left h2 { max-width: 620px; }
  .ep-about-intro { align-items: flex-start; }
  .ep-portfolio-grid,
  .ep-review-grid,
  .ep-article-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .ep-review-card:last-child,
  .ep-article-card:last-child { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .ep-brand,
  .ep-brand .custom-logo { max-width: 165px; }
  .ep-homepage .ep-section,
  .ep-homepage .ep-section--compact { padding: 44px 0; }
  .ep-homepage .ep-section-heading { margin-bottom: 26px; }
  .ep-homepage .ep-section-heading h2 { font-size: 30px; }
  .ep-product-slider-controls { align-self: flex-end; }
  .ep-slider-button { width: 44px; height: 44px; }
  .ep-product-slider { grid-auto-columns: 86%; gap: 12px; }
  .ep-icon-card-grid,
  .ep-system-grid,
  .ep-portfolio-grid,
  .ep-review-grid,
  .ep-article-grid { grid-template-columns: 1fr; }
  .ep-icon-card { min-height: 170px; }
  .ep-choice-card { gap: 12px; background: transparent; }
  .ep-choice-card__body { border-radius: 10px; }
  .ep-choice-card__image { min-height: 250px; border-radius: 10px; }
  .ep-promo-strip { align-items: flex-start; flex-direction: column; }
  .ep-service-row--overlay { min-height: 0; display: grid; grid-template-rows: 260px auto; background: #fff; }
  .ep-service-row--overlay .ep-service-row__image { position: relative; grid-row: 1; }
  .ep-service-row--overlay .ep-service-row__body { grid-row: 2; width: 100%; max-width: none; margin: 0; padding: 28px 24px; border-radius: 0 0 10px 10px; }
  .ep-service-row .ep-button { margin-left: 0; }
  .ep-systems-services-wrap__ornament { top: 720px; left: -180px; width: 290px; height: auto; opacity: .78; }
  .ep-services-section .ep-section-heading h2 { text-transform: uppercase; }
  .ep-about-intro { flex-direction: column; }
  .ep-about-stats { grid-template-columns: 1fr 1fr; }
  .ep-filter-pills { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 5px; }
  .ep-filter-pills span { flex: 0 0 auto; }
  .ep-review-card:last-child,
  .ep-article-card:last-child { grid-column: auto; }
  .ep-final-cta__card { padding: 32px 24px; }
}

/* Small structural safeguards for fidelity components. */
.ep-system-card__body { display: flex; flex-direction: column; }
.ep-about-stats { grid-column: auto; }

@media (max-width: 767px) {
  .ep-system-card__body { padding-inline: 22px; }
  .ep-system-card__body p { max-width: none; }
  .ep-button--systems { width: 100%; min-width: 0; }
}
@media (min-width: 1181px) {
  .ep-rating-summary > div:nth-child(2) { align-self: start; }
  .ep-rating-summary > div:nth-child(3) { align-self: end; }
}

/* The Figma hero uses direct copy over photography at every breakpoint. */
.ep-homepage .ep-hero__content {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* --------------------------------------------------------------------------
   Header + hero pixel pass — 0.2.2
   Values are taken directly from the 1440 px Figma frame.
   -------------------------------------------------------------------------- */

.ep-brand__mobile-logo { display: none; }
.ep-topbar__socials span { display: grid; place-items: center; }

@media (min-width: 1181px) {
  /* Header: 52 + 72 + 75 = 199 px. */
  .ep-site-header { background: #121418; }
  .ep-topbar,
  .ep-mainbar { background: #121418; }
  .ep-mainbar { border-bottom: 0; }
  .ep-navbar { background: #1f2229; }

  .ep-topbar,
  .ep-topbar__inner { height: 52px; min-height: 52px; }
  .ep-topbar__inner { padding: 10px 0; }
  .ep-topbar__contacts { gap: 40px; color: #fff; font-size: 16px; line-height: 24px; }
  .ep-topbar__contacts a,
  .ep-topbar__contacts > span { gap: 10px; color: #fff; font-weight: 400; }
  .ep-topbar__contacts .ep-icon { color: #0077ce; }
  .ep-topbar__contacts a:hover { color: #ffed2b; }
  .ep-topbar__socials { width: 152px; gap: 8px; }
  .ep-topbar__socials a,
  .ep-topbar__socials span {
    width: 32px;
    height: 32px;
    border: .5px solid rgba(255,255,255,.16);
    border-radius: 50%;
    background: transparent;
    color: #fff;
  }
  .ep-topbar__socials a:hover { border-color: rgba(255,255,255,.45); background: rgba(255,255,255,.08); color: #fff; }

  .ep-mainbar,
  .ep-mainbar__inner { height: 72px; min-height: 72px; }
  .ep-mainbar__inner {
    grid-template-columns: 215px 779px 206px;
    gap: 20px;
    padding: 10px 0;
  }
  .ep-brand { width: 215px; max-width: 215px; height: 31px; }
  .ep-brand img,
  .ep-brand .custom-logo { width: 215px; max-width: 215px; height: 31px; max-height: 31px; }
  .ep-brand__desktop-logo { display: block; }
  .ep-brand__mobile-logo { display: none; }

  .ep-header-search { width: 779px; max-width: 779px; justify-self: stretch; }
  .ep-header-search .ep-search-form {
    width: 779px;
    height: 52px;
    min-height: 52px;
    gap: 10px;
    padding: 0 20px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 10px;
    background: transparent;
    box-shadow: none;
  }
  .ep-header-search .ep-search-form:focus-within { border-color: rgba(136,178,209,.7); box-shadow: none; }
  .ep-header-search .ep-search-form .ep-icon { width: 23px; height: 23px; color: #fff; }
  .ep-header-search .ep-search-form__field {
    height: 24px;
    padding: 0;
    color: #fff;
    font-size: 16px;
    line-height: 24px;
  }
  .ep-header-search .ep-search-form__field::placeholder { color: rgba(255,255,255,.20); opacity: 1; }
  .ep-header-search .ep-search-form__submit { display: none; }

  .ep-header-actions { width: 206px; height: 52px; gap: 20px; justify-content: flex-end; }
  .ep-header-action--account { display: none; }
  .ep-header-action--cart {
    width: 34px;
    height: 24px;
    border: 0;
    border-radius: 0;
    color: #0077ce;
  }
  .ep-header-action--cart:hover { border: 0; color: #ffed2b; }
  .ep-header-action--cart .ep-icon { width: 24px; height: 24px; }
  .ep-cart-count {
    top: 0;
    right: 0;
    min-width: 20px;
    height: 20px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: #121418;
    font-family: Montserrat, Arial, sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
  }
  .ep-header-consult {
    width: 152px;
    height: 52px;
    min-height: 52px;
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    box-shadow: none;
  }

  .ep-navbar,
  .ep-navbar__inner { height: 75px; min-height: 75px; }
  .ep-navbar__inner { gap: 0; padding: 10px 0; }
  .ep-products-link {
    width: 158px;
    min-width: 158px;
    height: 55px;
    min-height: 55px;
    padding: 14px 20px;
    border: 1px solid #fff;
    border-radius: 10px;
    background: transparent;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
  }
  .ep-products-link .ep-icon { width: 18px; height: 18px; }
  .ep-products-link:hover { border-color: #0077ce; background: #004f89; color: #fff; }
  .ep-primary-menu {
    flex: 0 0 786px;
    width: 786px;
    margin-left: auto;
    justify-content: flex-start;
    gap: 40px;
  }
  .ep-primary-menu a {
    min-height: 24px;
    padding: 0;
    color: #88b2d1;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
  }
  .ep-primary-menu a:hover,
  .ep-primary-menu .current-menu-item > a { color: #fff; }
  .ep-primary-menu .sub-menu { top: calc(100% + 14px); background: #1f2229; border-color: rgba(255,255,255,.12); }
  .ep-primary-menu .sub-menu a { min-height: 40px; padding: 7px 10px; color: #cfe1ed; }
  .ep-primary-menu .sub-menu a:hover { background: rgba(255,255,255,.06); color: #fff; }

  /* Hero: exact coordinates from the Figma frame. */
  .ep-hero {
    height: 630px;
    min-height: 630px;
    align-items: flex-start;
  }
  .ep-hero__media {
    background-position: center center;
    transform: none;
  }
  .ep-hero__overlay {
    background: linear-gradient(90deg, rgba(0,0,0,.80) 0%, rgba(0,0,0,.50) 100%);
  }
  .ep-hero__inner {
    position: relative;
    height: 470px;
    margin-top: 80px;
    padding: 0;
  }
  .ep-hero .ep-kicker {
    position: absolute;
    top: 210px;
    left: 0;
    width: 310px;
    height: 36px;
    margin: 0;
    padding: 6px 14px;
    border: 1px solid #ffed2b;
    border-radius: 10px;
    background: rgba(255,237,43,.10);
    color: #ffed2b;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }
  .ep-hero__grid {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 1239px;
    height: 174px;
  }
  .ep-hero__title {
    position: absolute;
    top: 0;
    left: 0;
    width: 668px;
    max-width: 668px;
    height: 174px;
    margin: 0;
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0;
    text-transform: uppercase;
  }
  .ep-hero__content {
    position: absolute;
    top: 4px;
    right: 0;
    width: 521px;
    max-width: 521px;
    height: 170px;
    min-height: 170px;
    display: block;
  }
  .ep-hero__content p {
    position: absolute;
    top: 0;
    right: 0;
    width: 409px;
    margin: 0;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
  }
  .ep-hero__content .ep-button {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 200px;
    height: 52px;
    min-height: 52px;
    margin: 0;
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    white-space: nowrap;
  }

  /* Uploaded Figma assets: preserve the exact art without CSS redrawing it. */
  .ep-brand img,
  .ep-brand .custom-logo {
    object-fit: contain;
    object-position: left center;
  }
  .ep-topbar__contacts .ep-media-icon {
    width: 20px;
    height: 20px;
  }
  .ep-topbar__socials .ep-icon {
    width: 14px;
    height: 14px;
  }
  .ep-topbar__socials .ep-topbar__social--custom {
    border: 0;
    background: transparent;
  }
  .ep-topbar__socials .ep-media-icon--social {
    width: 32px;
    height: 32px;
  }
  .ep-header-search .ep-media-icon--search {
    width: 23px;
    height: 23px;
  }
  .ep-header-action--cart .ep-media-icon--cart {
    width: 24px;
    height: 24px;
  }
  .ep-products-link .ep-media-icon--products_menu {
    width: 18px;
    height: 18px;
  }

  /* Figma uses a 282 px text run plus 14 px padding on both sides. */
  .ep-hero .ep-kicker {
    width: max-content;
    min-width: 0;
    max-width: none;
    box-sizing: border-box;
    justify-content: flex-start;
    white-space: nowrap;
    overflow: visible;
    font-family: Montserrat, Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
  }
}

@media (max-width: 1180px) {
  .ep-brand__desktop-logo { display: none; }
  .ep-brand__mobile-logo { display: block; }
}


/* Header media controls — 0.2.3 */
.ep-brand__desktop-logo,
.ep-brand__mobile-logo,
.ep-mobile-panel__head img { object-fit: contain; object-position: left center; }
.ep-menu-toggle .ep-media-icon--mobile_menu { width: 25px; height: 25px; }
.ep-mobile-panel__head .ep-media-icon--mobile_close { width: 26px; height: 26px; }
.ep-header-action--account .ep-media-icon--account { width: 22px; height: 22px; }

/* --------------------------------------------------------------------------
   Header geometry verification + social icon shells — 0.2.4
   The uploaded social assets are the inner Figma glyphs. The 32 px circular
   button, stroke and exact glyph dimensions are rendered by the theme.
   -------------------------------------------------------------------------- */
@media (min-width: 1181px) {
  .ep-topbar__socials {
    width: 152px;
    height: 32px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .ep-topbar__socials .ep-topbar__social,
  .ep-topbar__socials .ep-topbar__social--custom {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 50%;
    background: transparent;
    color: #fff;
    overflow: hidden;
  }

  .ep-topbar__socials .ep-topbar__social:hover,
  .ep-topbar__socials .ep-topbar__social--custom:hover {
    border-color: rgba(255, 255, 255, .45);
    background: rgba(255, 255, 255, .08);
    color: #fff;
  }

  .ep-topbar__socials .ep-media-icon--social {
    display: block;
    max-width: none;
    object-fit: contain;
    object-position: center;
  }

  /* Exact inner-vector bounds from Epodecor.fig. */
  .ep-topbar__social--instagram .ep-media-icon--social { width: 12px; height: 12px; }
  .ep-topbar__social--telegram  .ep-media-icon--social { width: 12px; height: 10px; }
  .ep-topbar__social--facebook  .ep-media-icon--social { width: 7px;  height: 14px; }
  .ep-topbar__social--youtube   .ep-media-icon--social { width: 14px; height: 10px; }

  /* SVG fallbacks use the same visual envelope as uploaded glyphs. */
  .ep-topbar__social--instagram .ep-icon { width: 12px; height: 12px; }
  .ep-topbar__social--telegram  .ep-icon { width: 12px; height: 10px; }
  .ep-topbar__social--facebook  .ep-icon { width: 7px;  height: 14px; }
  .ep-topbar__social--youtube   .ep-icon { width: 14px; height: 10px; }
}

@media (max-width: 1023px) {
  .ep-solution-choice-wrap.has-custom-background { background-size: auto 100%; background-position: center top; }
}

/* 0.2.10 — static solution cards and always-interactive product carousel. */
.ep-solution-types .ep-icon-card:hover {
  border-color: transparent;
  background: #f1f8fc;
  transform: none;
  box-shadow: none;
}
.ep-product-card__title,
.ep-product-card__title a {
  display: block;
  width: 100%;
  text-align: center;
}
.ep-slider-button {
  cursor: pointer;
}
.ep-slider-button[aria-disabled="true"] {
  opacity: 1;
  cursor: pointer;
}
.ep-product-slider.is-simulating {
  will-change: transform, opacity;
}


/* Stage 15: unified Figma pass for the remaining homepage sections. */
.ep-about-section h2,
.ep-portfolio-section .ep-section-heading h2,
.ep-reviews-section .ep-section-heading h2,
.ep-education-section .ep-section-heading h2,
.ep-final-cta h2 {
  text-transform: uppercase;
}

.ep-about-intro p,
.ep-portfolio-section .ep-section-heading p,
.ep-education-section .ep-section-heading p {
  color: #1f2229;
}

.ep-about-intro .ep-button,
.ep-portfolio-section .ep-section-heading .ep-button,
.ep-reviews-section .ep-section-heading .ep-button,
.ep-education-section .ep-section-heading .ep-button {
  border-color: var(--ep-product-blue);
  background: transparent;
  color: var(--ep-product-blue);
  box-shadow: none;
  white-space: nowrap;
}

.ep-about-intro .ep-button:hover,
.ep-portfolio-section .ep-section-heading .ep-button:hover,
.ep-reviews-section .ep-section-heading .ep-button:hover,
.ep-education-section .ep-section-heading .ep-button:hover {
  border-color: var(--ep-product-blue);
  background: rgba(31,139,244,.08);
  color: var(--ep-product-blue);
}

.ep-about-stats > div {
  border: 0;
  background: #f1f8fc;
}
.ep-about-stats strong { color: var(--ep-product-blue); }
.ep-about-stats span { color: #8b97a3; }
.ep-about-media img { transform: none !important; }

.ep-promo-strip--about strong { text-transform: uppercase; }
.ep-promo-strip--about.has-custom-background,
.ep-rating-summary.has-custom-background,
.ep-final-cta__card.has-custom-background {
  background-color: var(--ep-ink);
  background-image: var(--ep-products-promo-background);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.ep-promo-strip--about .ep-button { white-space: nowrap; }

.ep-portfolio-card {
  border-color: transparent;
  background: #f1f8fc;
  box-shadow: none;
}
.ep-portfolio-card:hover { border-color: transparent; box-shadow: none; transform: none; }
.ep-portfolio-card:hover img { transform: none; }
.ep-portfolio-card__body { text-align: center; }
.ep-portfolio-card__body h3 { text-transform: uppercase; }
.ep-portfolio-card__body p { color: #919aa4; }
.ep-portfolio-card__image .ep-pill,
.ep-article-card__badge {
  border: 1px solid rgba(255,237,43,1);
  background: rgba(255,237,43,.10);
  color: #ffe81f;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.ep-filter-pills span {
  border-color: #d5e4ed;
  background: #fff;
  color: #5d6974;
  cursor: default;
}
.ep-filter-pills .is-active {
  border-color: var(--ep-product-blue);
  background: var(--ep-product-blue);
  color: #fff;
}

.ep-rating-summary { background-color: var(--ep-ink); }
.ep-rating-summary__source { white-space: nowrap; }
.ep-review-card { box-shadow: none; }
.ep-review-card__head strong { font-size: 16px; line-height: 19px; }
.ep-review-card__head small { color: #919aa4; font-size: 12px; line-height: 18px; }
.ep-review-card p { color: #1f2229; }

.ep-article-card {
  border-color: transparent;
  background: #f1f8fc;
  box-shadow: none;
}
.ep-article-card:hover { border-color: transparent; box-shadow: none; transform: none; }
.ep-article-card:hover img { transform: none; }
.ep-article-card h3 { text-transform: uppercase; }
.ep-article-card__meta { color: #8b97a3; }

.ep-final-cta__card { background-color: var(--ep-ink); }
.ep-final-cta__action .ep-button {
  white-space: nowrap;
  cursor: pointer;
}
.ep-final-cta__telegram-icon { width: 20px; height: 20px; object-fit: contain; }
.ep-final-cta__action span { color: rgba(255,255,255,.62); }

.ep-site-footer { background: #121418; }
.ep-footer__title {
  color: rgba(255,255,255,.50);
  font-weight: 600;
}
.ep-footer-menu a { color: #fff; font-weight: 400; }
.ep-footer-menu li:first-child a { font-weight: 600; }
.ep-footer-brand > p { color: rgba(255,255,255,.62); }
.ep-footer-contacts,
.ep-footer-contacts a { color: #fff; }
.ep-footer-contacts .ep-media-icon { object-fit: contain; }
.ep-footer-contacts li > .ep-footer-icon,
.ep-footer-contacts li > .ep-media-icon,
.ep-footer-contacts li > .ep-icon {
  display: block;
  flex: 0 0 18px;
  width: 18px !important;
  height: 18px !important;
  min-width: 18px;
  max-width: 18px !important;
  min-height: 18px;
  max-height: 18px !important;
  margin: 0;
  object-fit: contain;
}
.ep-footer-contacts li > svg { color: #fff; }
.ep-made-in-ua { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,.75); }
.ep-footer-flag {
  display: block;
  flex: 0 0 16px;
  width: 16px !important;
  height: 12px !important;
  max-width: 16px !important;
  max-height: 12px !important;
  margin: 0;
  object-fit: contain;
}
.ep-footer-flag-emoji { display: inline-flex; width: 16px; font-size: 13px; line-height: 1; }


@media (min-width: 1181px) {
  .ep-about-section,
  .ep-portfolio-section,
  .ep-reviews-section,
  .ep-education-section { padding: 70px 0; }

  .ep-about-left h2,
  .ep-portfolio-section .ep-section-heading h2,
  .ep-reviews-section .ep-section-heading h2,
  .ep-education-section .ep-section-heading h2,
  .ep-final-cta h2 {
    font-size: 32px;
    line-height: 38px;
    letter-spacing: 0;
  }

  .ep-about-intro .ep-button { width: 196px; }
  .ep-about-stats > div { padding: 20px; }
  .ep-promo-strip--about { min-height: 142px; margin-top: 32px; padding: 34px 40px; }
  .ep-promo-strip--about .ep-button { width: 186px; }

  .ep-portfolio-section .ep-section-heading .ep-button { width: 163px; }
  .ep-portfolio-card__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 103px;
    padding: 20px 40px;
  }
  .ep-portfolio-card__body h3 { font-size: 18px; line-height: 22px; }
  .ep-portfolio-card__body p { margin-top: 0; font-size: 14px; line-height: 21px; }
  .ep-portfolio-card__image .ep-pill { min-height: 36px; padding: 6px 14px; border-radius: 12px; font-size: 16px; line-height: 24px; }

  .ep-reviews-section .ep-section-heading .ep-button { width: 219px; }
  .ep-rating-summary { border-radius: 10px; }
  .ep-review-card { border: 1px solid #dbe8ef; }

  .ep-education-section .ep-section-heading .ep-button { width: 140px; }
  .ep-article-card__badge { min-height: 36px; padding: 6px 14px; border-radius: 12px; font-size: 16px; line-height: 24px; }
  .ep-article-card__body { display: flex; flex-direction: column; justify-content: center; }
  .ep-article-card h3 { font-size: 18px; line-height: 22px; }

  .ep-final-cta__card { padding: 54px 60px; }
  .ep-final-cta__action .ep-button { width: 309px; }

  .ep-footer__title { font-size: 20px; line-height: 30px; }
  .ep-footer-menu { gap: 10px; }
  .ep-footer-menu a { font-size: 16px; line-height: 24px; }
}

@media (max-width: 1180px) {
  .ep-about-section h2,
  .ep-portfolio-section .ep-section-heading h2,
  .ep-reviews-section .ep-section-heading h2,
  .ep-education-section .ep-section-heading h2,
  .ep-final-cta h2 { text-wrap: balance; }
}

@media (max-width: 767px) {
  .ep-about-intro .ep-button,
  .ep-portfolio-section .ep-section-heading .ep-button,
  .ep-reviews-section .ep-section-heading .ep-button,
  .ep-education-section .ep-section-heading .ep-button,
  .ep-promo-strip--about .ep-button,
  .ep-final-cta__action .ep-button {
    width: 100%;
    min-width: 0;
    max-width: none;
  }
  .ep-footer__title { font-size: 18px; }
  .ep-footer-menu a { font-size: 15px; }
}


/* 0.2.17 — Figma footer menu and payment/delivery badge pass. */
.ep-site-footer { padding: 62px 0 26px; }
.ep-footer-grid {
  grid-template-columns: 238px 175px 175px 225px 190px;
  justify-content: space-between;
  gap: 32px;
}
.ep-footer-logo { margin-bottom: 12px; }
.ep-footer-brand > p { max-width: 225px; margin: 0; font-size: 12px; line-height: 16px; }
.ep-footer-contacts { gap: 8px; margin: 20px 0 16px; }
.ep-footer-contacts li { gap: 8px; font-size: 13px; line-height: 18px; }
.ep-footer-socials { display: flex; align-items: center; gap: 8px; margin: 0 0 18px; }
.ep-footer-social {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  color: #fff;
  transition: border-color .2s ease, background-color .2s ease;
}
.ep-footer-social:hover { border-color: rgba(255,255,255,.45); background: rgba(255,255,255,.06); }
.ep-footer-social .ep-media-icon,
.ep-footer-social .ep-icon { width: 14px !important; height: 14px !important; object-fit: contain; }
.ep-made-in-ua { margin-top: 0; font-size: 11px; line-height: 16px; }
.ep-footer__title { margin: 0 0 16px; color: rgba(255,255,255,.52); font-size: 16px; line-height: 24px; font-weight: 600; }
.ep-footer-menu { gap: 7px; }
.ep-footer-menu a { color: rgba(255,255,255,.86); font-size: 13px; line-height: 20px; font-weight: 400; }
.ep-footer-menu li:first-child a { font-weight: 400; }
.ep-footer-menu__featured a,
.ep-footer-menu .is-featured > a { color: #fff; font-weight: 600 !important; }
.ep-footer-services { gap: 12px; margin-top: 34px; padding: 22px 0; }
.ep-footer-service-row { display: grid !important; grid-template-columns: 72px minmax(0,1fr); gap: 12px; align-items: center; }
.ep-footer-service-row > strong { min-width: 0; color: rgba(255,255,255,.78); font-size: 12px; line-height: 18px; font-weight: 500; }
.ep-footer-badges { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.ep-footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 5px 10px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 7px;
  background: rgba(255,255,255,.035);
  color: rgba(255,255,255,.90);
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}
.ep-footer-badge > span { padding: 0; border: 0; color: inherit; font-size: inherit; }
.ep-footer-service-icon,
.ep-footer-badge > .ep-icon {
  display: block;
  flex: 0 0 auto;
  width: 20px !important;
  height: 20px !important;
  max-width: 28px !important;
  max-height: 20px !important;
  object-fit: contain;
  color: #fff;
}
.ep-footer-bottom { align-items: center; padding-top: 24px; font-size: 10px; line-height: 16px; }
.ep-footer-bottom a { white-space: nowrap; }

@media (max-width: 1180px) {
  .ep-footer-grid { grid-template-columns: 1.25fr repeat(2, 1fr); gap: 34px 28px; }
  .ep-footer-column--company,
  .ep-footer-column--help { margin-top: 0; }
}
@media (max-width: 767px) {
  .ep-site-footer { padding-top: 48px; }
  .ep-footer-grid { grid-template-columns: 1fr 1fr; gap: 34px 24px; }
  .ep-footer-brand { grid-column: 1 / -1; }
  .ep-footer-service-row { grid-template-columns: 1fr; gap: 8px; }
  .ep-footer-bottom { align-items: flex-start; }
}
@media (max-width: 520px) {
  .ep-footer-grid { grid-template-columns: 1fr; }
  .ep-footer-brand { grid-column: auto; }
  .ep-footer-badge { font-size: 11px; }
}
