:root {
  --ec-primary: #005daa;
  --ec-secondary: #102a43;
  --ec-accent: #f7941d;
  --ec-success: #1f9d55;
  --ec-warning: #f5a623;
  --ec-bg: #ffffff;
  --ec-surface: #f7fafc;
  --ec-text: #1f2937;
  --ec-muted: #667085;
  --ec-border: #e5e7eb;
  --ec-heading-font: "Segoe UI", Arial, sans-serif;
  --ec-body-font: "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(247, 250, 252, 0.75) 0, rgba(255, 255, 255, 0) 420px),
    var(--ec-bg);
  color: var(--ec-text);
  font-family: var(--ec-body-font);
  font-size: 16px;
  line-height: 1.65;
}

img,
video,
iframe {
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: var(--ec-primary);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--ec-secondary);
  font-family: var(--ec-heading-font);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.15;
  margin: 0 0 18px;
}

h1 {
  font-size: clamp(38px, 5vw, 64px);
}

h2 {
  font-size: clamp(30px, 4vw, 44px);
}

h3 {
  font-size: 22px;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.skip-link:focus {
  clip: auto;
  background: #fff;
  border: 2px solid var(--ec-primary);
  height: auto;
  left: 16px;
  padding: 10px 14px;
  top: 16px;
  width: auto;
  z-index: 10000;
}

.ec-site-header {
  backdrop-filter: blur(18px);
  background: transparent;
  border-bottom: 1px solid rgba(229, 231, 235, 0.72);
  box-shadow: 0 12px 32px rgba(16, 42, 67, 0.06);
  isolation: isolate;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.ec-site-header::before {
  background:
    var(--ec-header-image, none) center / cover no-repeat,
    var(--ec-header-gradient, linear-gradient(180deg, var(--ec-header-bg, #ffffff), var(--ec-header-bg, #ffffff)));
  bottom: 0;
  content: "";
  left: 0;
  opacity: var(--ec-header-opacity, 0.86);
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.ec-site-header.is-sticky.is-scrolled::before {
  background: var(--ec-sticky-header-bg, #ffffff);
  opacity: var(--ec-sticky-header-opacity, 0.96);
}

.ec-site-header:not(.is-sticky) {
  position: relative;
}

.ec-site-header.is-floating {
  border-radius: 18px;
  left: 24px;
  right: 24px;
  top: 18px;
  width: calc(100% - 48px);
}

.admin-bar .ec-site-header.is-floating {
  top: 50px;
}

.ec-site-header.is-transparent.is-floating {
  left: 24px;
  right: 24px;
  width: calc(100% - 48px);
}

.ec-site-header.is-transparent {
  --ec-header-bg: #102a43;
  border-bottom-color: rgba(255, 255, 255, 0.14);
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.admin-bar .ec-site-header.is-transparent {
  top: 32px;
}

.ec-site-header.is-transparent.is-scrolled {
  position: fixed;
  top: 0;
}

.admin-bar .ec-site-header.is-transparent.is-scrolled {
  top: 32px;
}

.ec-site-header.is-transparent .ec-primary-nav__menu > li > a,
.ec-site-header.is-transparent .ec-site-header__brand,
.ec-site-header.is-transparent .ec-site-header__phone {
  color: #fff;
}

.ec-site-header__inner {
  align-items: center;
  display: flex;
  gap: 24px;
  min-height: 84px;
}

.ec-header-align-left .ec-site-header__inner {
  justify-content: flex-start;
}

.ec-header-align-center .ec-site-header__inner {
  justify-content: center;
}

.ec-header-align-right .ec-site-header__inner {
  justify-content: flex-end;
}

.ec-header-align-space-between .ec-site-header__inner {
  justify-content: space-between;
}

.ec-header-layout-stacked .ec-site-header__inner {
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 16px;
  padding-top: 16px;
}

.ec-header-layout-stacked .ec-primary-nav {
  flex-basis: 100%;
  order: 3;
}

.ec-header-layout-stacked .ec-primary-nav__menu {
  justify-content: center;
}

.ec-header-layout-center_logo .ec-site-header__brand {
  order: 2;
}

.ec-header-layout-center_logo .ec-primary-nav {
  order: 1;
}

.ec-header-layout-center_logo .ec-site-header__actions,
.ec-header-layout-center_logo .ec-site-header__social,
.ec-header-layout-center_logo .ec-site-header__search,
.ec-header-layout-center_logo .ec-site-header__phone {
  order: 3;
}

.ec-site-header__brand {
  align-items: center;
  color: var(--ec-secondary);
  display: inline-flex;
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
}

.ec-site-header__brand img {
  display: block;
  max-height: 60px;
  object-fit: contain;
  width: auto;
}

.ec-logo--transparent,
.ec-logo--sticky,
.ec-logo--mobile {
  display: none !important;
}

.ec-site-header.has-transparent-logo.is-transparent:not(.is-scrolled) .ec-logo--default {
  display: none !important;
}

.ec-site-header.has-transparent-logo.is-transparent:not(.is-scrolled) .ec-logo--transparent {
  display: block !important;
}

.ec-site-header.has-sticky-logo.is-scrolled .ec-logo--default {
  display: none !important;
}

.ec-site-header.has-sticky-logo.is-scrolled .ec-logo--sticky {
  display: block !important;
}

.ec-header-desktop-hide {
  display: none;
}

.ec-site-header__phone {
  align-items: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: var(--ec-secondary);
  display: inline-flex;
  font-weight: 800;
  min-height: 46px;
  padding: 10px 18px;
  text-decoration: none;
  white-space: nowrap;
}

.ec-site-header__social,
.ec-site-header__actions {
  align-items: center;
  display: flex;
  gap: 10px;
}

.ec-site-header__actions .ec-buttons {
  margin-top: 0;
}

.ec-site-header__social a,
.ec-site-header__search {
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(16, 42, 67, 0.14);
  border-radius: 999px;
  color: var(--ec-secondary);
  display: inline-flex;
  height: 42px;
  justify-content: center;
  text-decoration: none;
  width: 42px;
}

.ec-site-header.is-transparent .ec-site-header__social a,
.ec-site-header.is-transparent .ec-site-header__search {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.ec-site-header__search {
  cursor: pointer;
}

.ec-announcement-bar,
.ec-top-bar {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.ec-announcement-bar {
  background: var(--ec-announcement-bg, var(--ec-primary));
}

.ec-top-bar {
  background: var(--ec-top-bar-bg, var(--ec-secondary));
}

.ec-announcement-bar__inner,
.ec-top-bar__inner,
.ec-top-bar__links {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  min-height: 38px;
}

.ec-announcement-bar a,
.ec-top-bar a {
  color: #fff;
}

.ec-search-popup {
  align-items: center;
  background: rgba(16, 42, 67, 0.72);
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  padding: 24px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10000;
}

.ec-search-popup[hidden] {
  display: none;
}

.ec-search-popup__dialog {
  background: #fff;
  border-radius: 18px;
  max-width: 720px;
  padding: 34px;
  position: relative;
  width: 100%;
}

.ec-search-popup__close {
  background: var(--ec-secondary);
  border: 0;
  border-radius: 999px;
  color: #fff;
  height: 34px;
  position: absolute;
  right: 16px;
  top: 16px;
  width: 34px;
}

.ec-primary-nav {
  flex: 1;
}

.ec-primary-nav__menu,
.ec-site-footer__menu {
  align-items: center;
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ec-primary-nav__menu > li {
  position: relative;
}

.ec-primary-nav__menu a,
.ec-site-footer__menu a {
  color: var(--ec-secondary);
  font-weight: 600;
  position: relative;
  text-decoration: none;
}

.ec-menu-item__label,
.ec-menu-item__description,
.ec-menu-item__badge {
  display: block;
}

.ec-menu-item__description {
  color: var(--ec-muted);
  font-size: 13px;
  font-weight: 500;
  margin-top: 5px;
}

.ec-menu-item__badge {
  background: rgba(247, 148, 29, 0.14);
  border-radius: 999px;
  color: var(--ec-accent);
  display: inline-flex;
  font-size: 10px;
  font-weight: 800;
  margin-left: 6px;
  padding: 3px 7px;
  text-transform: uppercase;
}

.ec-dropdown-menu {
  background: #fff;
  border: 1px solid var(--ec-border);
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(16, 42, 67, 0.14);
  left: 0;
  list-style: none;
  margin: 0;
  min-width: 240px;
  opacity: 0;
  padding: 12px;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 18px);
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 1001;
}

.ec-dropdown-menu--nested {
  left: 100%;
  top: 0;
}

.ec-dropdown-menu a,
.ec-mega-menu a {
  border-radius: 10px;
  color: var(--ec-secondary);
  display: block;
  padding: 10px 12px;
}

.ec-dropdown-menu a:hover,
.ec-mega-menu a:hover {
  background: rgba(0, 93, 170, 0.07);
  color: var(--ec-primary);
}

.ec-primary-nav__menu li:hover > .ec-dropdown-menu,
.ec-primary-nav__menu li:focus-within > .ec-dropdown-menu,
.ec-primary-nav__menu li:hover > .ec-mega-menu,
.ec-primary-nav__menu li:focus-within > .ec-mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.ec-mega-menu {
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid rgba(229, 231, 235, 0.8);
  box-shadow: 0 28px 80px rgba(16, 42, 67, 0.15);
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 84px;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 1001;
}

.ec-mega-menu__inner {
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 2fr);
  padding-bottom: 34px;
  padding-top: 34px;
}

.ec-mega-menu__intro {
  background: linear-gradient(135deg, rgba(0, 93, 170, 0.1), rgba(247, 148, 29, 0.1));
  border: 1px solid rgba(0, 93, 170, 0.1);
  border-radius: 18px;
  padding: 24px;
}

.ec-mega-menu__featured {
  background: var(--ec-primary);
  color: #fff !important;
  display: inline-flex !important;
  font-weight: 800;
  margin-top: 18px;
}

.ec-mega-menu__grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.ec-mega-menu__grid > li > a {
  font-weight: 800;
}

.ec-mega-menu__grid .sub-menu {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  position: static;
}

.ec-primary-nav__menu > li > a::after {
  background: linear-gradient(90deg, var(--ec-primary), var(--ec-accent));
  border-radius: 999px;
  bottom: -8px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

.ec-primary-nav__menu a:hover,
.ec-site-footer__menu a:hover {
  color: var(--ec-primary);
}

.ec-primary-nav__menu > li > a:hover::after,
.ec-primary-nav__menu > .current-menu-item > a::after {
  transform: scaleX(1);
}

.ec-nav-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  display: none;
  flex-direction: column;
  gap: 5px;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.ec-nav-toggle span:not(.screen-reader-text) {
  background: var(--ec-secondary);
  display: block;
  height: 2px;
  width: 24px;
}

.ec-section {
  background:
    var(--ec-section-gradient, linear-gradient(180deg, var(--ec-section-bg, transparent), var(--ec-section-bg, transparent)));
  color: var(--ec-section-color, inherit);
  padding-bottom: 80px;
  padding-top: 80px;
  position: relative;
}

.ec-section::before {
  background: var(--ec-overlay-color, transparent);
  bottom: 0;
  content: "";
  left: 0;
  opacity: var(--ec-overlay-opacity, 0);
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
}

.ec-section > .container,
.ec-section > .container-fluid {
  position: relative;
  z-index: 1;
}

.ec-section h1,
.ec-section h2,
.ec-section h3,
.ec-section h4,
.ec-section h5,
.ec-section h6,
.ec-section .ec-section-title {
  color: var(--ec-section-heading-color, inherit);
}

.ec-section h1,
.ec-section h2,
.ec-section .ec-section-title {
  font-size: var(--ec-section-heading-size, inherit);
}

.ec-section .ec-content,
.ec-section .ec-content p,
.ec-section .ec-section-intro,
.ec-section p {
  color: var(--ec-section-body-color, inherit);
}

.ec-section .ec-content,
.ec-section .ec-content p,
.ec-section .ec-section-intro {
  font-size: var(--ec-section-body-size, inherit);
}

.ec-section--full {
  background-position: center;
  background-size: cover;
}

.ec-section--shadow {
  box-shadow: 0 20px 60px rgba(16, 42, 67, 0.09);
}

.ec-section--overlap-previous {
  --ec-section-overlap: clamp(72px, 8vw, 118px);
  overflow: visible;
  position: relative;
  z-index: 12;
}

.ec-section--overlap-half {
  margin-bottom: 0 !important;
  margin-top: 0 !important;
}

.ec-section--overlap-manual {
  margin-bottom: var(--ec-section-overlap) !important;
  margin-top: calc(var(--ec-section-overlap) * -1) !important;
}

.ec-section--overlap-previous > .container,
.ec-section--overlap-previous > .container-fluid {
  position: relative;
  z-index: 3;
}

.ec-section--overlap-half > .container,
.ec-section--overlap-half > .container-fluid {
  transform: translateY(-50%);
  transform-origin: center;
}

.ec-section--overlap-previous .ec-section-intro {
  display: none;
}

.ec-section--overlap-previous.ec-cards .ec-card-grid {
  align-items: stretch;
  margin-left: auto;
  margin-right: auto;
  max-width: min(100%, 1180px);
}

.ec-section--overlap-manual.ec-cards .ec-card {
  min-height: max(150px, calc(var(--ec-section-overlap) * 2));
}

.ec-container-narrow {
  max-width: 920px;
}

.ec-container-wide {
  max-width: 1440px;
}

.ec-section-title,
.ec-section-intro {
  margin-left: auto;
  margin-right: auto;
  max-width: 840px;
  text-align: center;
}

.ec-section-title {
  margin-bottom: 18px;
  position: relative;
}

.ec-section-title::after {
  background: linear-gradient(90deg, var(--ec-primary), var(--ec-accent));
  border-radius: 999px;
  content: "";
  display: block;
  height: 4px;
  margin: 18px auto 0;
  width: 72px;
}

.ec-section-intro {
  color: var(--ec-muted);
  margin-bottom: 36px;
}

.ec-content > *:last-child {
  margin-bottom: 0;
}

.ec-eyebrow {
  color: var(--ec-accent);
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.ec-text-center {
  text-align: center;
}

.ec-text-right {
  text-align: right;
}

.ec-hero {
  isolation: isolate;
  min-height: 620px;
  overflow: hidden;
}

.ec-hero::after,
.ec-default-hero::after {
  background:
    linear-gradient(135deg, rgba(0, 93, 170, 0.08) 25%, transparent 25%) 0 0 / 28px 28px,
    linear-gradient(135deg, transparent 75%, rgba(247, 148, 29, 0.08) 75%) 0 0 / 28px 28px;
  bottom: -1px;
  content: "";
  height: 180px;
  left: 0;
  opacity: 0.7;
  position: absolute;
  right: 0;
  z-index: -1;
}

.ec-hero__image,
.ec-rounded-media {
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 18px;
  box-shadow: 0 28px 80px rgba(16, 42, 67, 0.18);
  display: block;
  width: 100%;
}

.ec-default-hero {
  align-items: center;
  background:
    linear-gradient(125deg, rgba(0, 93, 170, 0.12), rgba(247, 148, 29, 0.08) 52%, rgba(31, 157, 85, 0.08)),
    #fff;
  display: flex;
  min-height: 520px;
  overflow: hidden;
}

.ec-buttons {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: var(--ec-button-group-gap, 14px);
  justify-content: var(--ec-button-group-align, flex-start);
  margin-top: 28px;
}

.ec-button {
  align-items: center;
  border: var(--ec-button-border-width, 1px) solid var(--ec-button-border, transparent);
  border-radius: var(--ec-button-radius, 999px);
  display: inline-flex;
  font-weight: 700;
  gap: 8px;
  height: var(--ec-button-height, auto);
  justify-content: center;
  min-height: 46px;
  padding: var(--ec-button-padding-y, 12px) var(--ec-button-padding-x, 20px);
  text-decoration: none;
  width: var(--ec-button-width, auto);
  box-shadow: var(--ec-button-shadow, 0 10px 24px rgba(0, 93, 170, 0.12));
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.ec-button[style*="--ec-button-bg"] {
  background: var(--ec-button-bg) !important;
}

.ec-button[style*="--ec-button-color"] {
  color: var(--ec-button-color) !important;
}

.ec-button--small {
  min-height: 38px;
  padding: var(--ec-button-padding-y, 8px) var(--ec-button-padding-x, 14px);
}

.ec-button--large {
  min-height: 56px;
  padding: var(--ec-button-padding-y, 16px) var(--ec-button-padding-x, 28px);
}

.ec-button--square {
  --ec-button-radius: 0;
}

.ec-button--rounded {
  --ec-button-radius: 8px;
}

.ec-button--pill {
  --ec-button-radius: 999px;
}

.ec-hero--fullscreen {
  min-height: 100vh;
}

.ec-breadcrumbs {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}

.ec-button:hover {
  background: var(--ec-button-hover-bg, var(--ec-button-bg));
  border-color: var(--ec-button-hover-border, var(--ec-button-border, transparent));
  box-shadow: var(--ec-button-hover-shadow, var(--ec-button-shadow, 0 16px 34px rgba(0, 93, 170, 0.18)));
  color: var(--ec-button-hover-color, var(--ec-button-color));
  transform: translateY(-1px);
}

.ec-button[style*="--ec-button-hover-bg"]:hover {
  background: var(--ec-button-hover-bg) !important;
}

.ec-button[style*="--ec-button-hover-color"]:hover {
  color: var(--ec-button-hover-color) !important;
}

.ec-button[style*="--ec-button-hover-border"]:hover {
  border-color: var(--ec-button-hover-border) !important;
}

.ec-button[style*="--ec-button-hover-shadow"]:hover {
  box-shadow: var(--ec-button-hover-shadow) !important;
}

.ec-button--primary {
  background: linear-gradient(135deg, var(--ec-primary), #0078d4);
  color: #fff;
}

.ec-button--secondary {
  background: var(--ec-secondary);
  color: #fff;
}

.ec-button--accent {
  background: linear-gradient(135deg, var(--ec-accent), #ffb13d);
  color: #101828;
}

.ec-button--outline {
  background: transparent;
  border-color: var(--ec-primary);
  color: var(--ec-primary);
}

.ec-button[style*="--ec-button-bg"] {
  background: var(--ec-button-bg) !important;
}

.ec-button[style*="--ec-button-color"] {
  color: var(--ec-button-color) !important;
}

.ec-button[style*="--ec-button-border"] {
  border-color: var(--ec-button-border) !important;
}

.ec-button[style*="--ec-button-border-width"] {
  border-width: var(--ec-button-border-width) !important;
}

.ec-button[style*="--ec-button-radius"] {
  border-radius: var(--ec-button-radius) !important;
}

.ec-button[style*="--ec-button-padding-y"],
.ec-button[style*="--ec-button-padding-x"] {
  padding: var(--ec-button-padding-y, 12px) var(--ec-button-padding-x, 20px) !important;
}

.ec-button[style*="--ec-button-width"] {
  width: var(--ec-button-width) !important;
}

.ec-button[style*="--ec-button-height"] {
  height: var(--ec-button-height) !important;
}

.ec-button[style*="--ec-button-shadow"] {
  box-shadow: var(--ec-button-shadow) !important;
}

.ec-card-grid,
.ec-post-grid,
.ec-image-grid {
  display: grid;
  gap: 24px;
}

.ec-grid-1 {
  grid-template-columns: 1fr;
}

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

.ec-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.ec-grid-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.ec-grid-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.ec-card,
.ec-post-card {
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(145deg, rgba(0, 93, 170, 0.22), rgba(247, 148, 29, 0.16)) border-box;
  border: 1px solid transparent;
  border-radius: 16px;
  height: 100%;
  overflow: hidden;
  transition: box-shadow 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.ec-card:hover,
.ec-post-card:hover {
  box-shadow: 0 22px 60px rgba(16, 42, 67, 0.14);
  transform: translateY(-5px);
}

.ec-card__media,
.ec-card__image img {
  aspect-ratio: 3 / 2;
  display: block;
  object-fit: cover;
  width: 100%;
}

.ec-card__body {
  padding: 28px;
}

.ec-card__link {
  color: var(--ec-primary);
  font-weight: 700;
}

.ec-team-card__image img {
  aspect-ratio: 1 / 1;
}

.ec-team-card__designation {
  color: var(--ec-primary);
  font-weight: 700;
  margin: -10px 0 14px;
}

.ec-team-card__bio {
  color: #4b5563;
}

.ec-team-card__contact,
.ec-team-card__social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.ec-team-card__contact a {
  color: var(--ec-secondary);
  font-size: 14px;
  font-weight: 600;
}

.ec-team-card__social a {
  align-items: center;
  background: rgba(0, 93, 170, 0.08);
  border-radius: 999px;
  color: var(--ec-primary);
  display: inline-flex;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.ec-filter-nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 32px;
  justify-content: center;
  margin: 0 0 34px;
}

.ec-filter-button {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--ec-secondary);
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 600;
  gap: 8px;
  padding: 8px 0;
  transition: color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.ec-filter-button.is-active {
  color: var(--ec-primary);
}

.ec-filter-button.is-active::before {
  content: "→";
  font-weight: 800;
}

.ec-filter-nav--pills .ec-filter-button,
.ec-filter-nav--tabs .ec-filter-button {
  border-radius: 999px;
  padding: 9px 16px;
}

.ec-filter-nav--pills .ec-filter-button.is-active,
.ec-filter-nav--tabs .ec-filter-button.is-active {
  background: rgba(0, 93, 170, 0.08);
  box-shadow: inset 0 0 0 1px rgba(0, 93, 170, 0.16);
}

.ec-filter-nav--underline .ec-filter-button {
  border-bottom: 2px solid transparent;
}

.ec-filter-nav--underline .ec-filter-button.is-active {
  border-bottom-color: var(--ec-primary);
}

.ec-filter-grid {
  gap: var(--ec-filter-grid-gap, 24px);
}

.ec-filter-grid.is-filtering .ec-filter-card {
  opacity: 0;
  transform: translateY(14px) scale(.985);
}

.ec-filter-card {
  animation: ecFilterCardIn 320ms ease both;
  animation-delay: calc(min(var(--ec-filter-item-index, 0), 8) * 38ms);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.ec-filter-card.is-filter-hidden {
  display: none;
}

@keyframes ecFilterCardIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.ec-filter-card__image {
  position: relative;
}

.ec-filter-card__terms {
  align-items: center;
  bottom: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  left: 24px;
  position: absolute;
  right: 24px;
  z-index: 2;
}

.ec-filter-card__terms span {
  background: var(--ec-primary);
  border-radius: 4px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  padding: 6px 8px;
  text-transform: uppercase;
}

.ec-filter-card__link {
  display: inline-flex;
  margin-top: 12px;
  text-transform: uppercase;
}

.ec-filter-grid--minimal .ec-filter-card {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.ec-filter-grid--bordered .ec-filter-card {
  border-color: #d9e2ee;
}

.ec-filter-grid--shadow .ec-filter-card {
  box-shadow: 0 18px 46px rgba(16, 42, 67, 0.12);
}

.ec-icon {
  align-items: center;
  background: linear-gradient(135deg, rgba(0, 93, 170, 0.12), rgba(247, 148, 29, 0.16));
  border: 1px solid rgba(0, 93, 170, 0.1);
  border-radius: 14px;
  color: var(--ec-primary);
  display: inline-flex;
  height: 48px;
  justify-content: center;
  margin-bottom: 18px;
  width: 48px;
}

.ec-cta__inner,
.ec-newsletter__inner {
  background:
    linear-gradient(135deg, rgba(0, 93, 170, 0.96), rgba(16, 42, 67, 0.96)),
    var(--ec-secondary);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  box-shadow: 0 28px 70px rgba(16, 42, 67, 0.2);
  color: #fff;
  padding: 52px;
  text-align: center;
}

.ec-cta__inner h2,
.ec-newsletter__inner h2 {
  color: #fff;
}

.ec-stats__grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ec-stat {
  background: #fff;
  border: 1px solid rgba(0, 93, 170, 0.08);
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(16, 42, 67, 0.08);
  padding: 28px;
  text-align: center;
}

.ec-stat strong {
  color: var(--ec-primary);
  display: block;
  font-size: 42px;
  line-height: 1;
}

.ec-stat span {
  color: var(--ec-muted);
  display: block;
  margin-top: 10px;
}

.ec-timeline__list {
  counter-reset: step;
  display: grid;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ec-timeline__list li {
  background: #fff;
  border: 1px solid rgba(0, 93, 170, 0.1);
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(16, 42, 67, 0.07);
  padding: 28px;
  position: relative;
}

.ec-timeline__list li::before {
  background: linear-gradient(180deg, var(--ec-primary), var(--ec-accent));
  border-radius: 999px;
  bottom: 28px;
  content: "";
  left: 0;
  position: absolute;
  top: 28px;
  width: 4px;
}

.ec-timeline__list span {
  color: var(--ec-accent);
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
}

.ec-testimonial {
  background: #fff;
  border: 1px solid rgba(0, 93, 170, 0.1);
  border-radius: 18px;
  box-shadow: 0 18px 46px rgba(16, 42, 67, 0.1);
  margin: 0;
  padding: 32px;
}

.ec-testimonial blockquote {
  font-size: 20px;
  margin: 0 0 24px;
}

.ec-testimonial figcaption span {
  color: var(--ec-muted);
  display: block;
}

.ec-logo-slider img {
  filter: grayscale(100%);
  max-height: 72px;
  object-fit: contain;
  opacity: 0.78;
  width: 100%;
}

.ec-image-grid img {
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(16, 42, 67, 0.12);
  object-fit: cover;
  width: 100%;
}

.ec-video__frame,
.ec-map__frame {
  aspect-ratio: 16 / 9;
  background: var(--ec-surface);
  border: 1px solid rgba(0, 93, 170, 0.1);
  border-radius: 18px;
  box-shadow: 0 22px 56px rgba(16, 42, 67, 0.14);
  overflow: hidden;
}

.ec-video__frame iframe,
.ec-video__frame video,
.ec-map__frame iframe {
  border: 0;
  height: 100%;
  width: 100%;
}

.ec-tabs__content {
  background: #fff;
  border: 1px solid var(--ec-border);
  border-radius: 0 0 16px 16px;
  border-top: 0;
  padding: 28px;
}

.accordion-item {
  border-color: rgba(0, 93, 170, 0.1);
  overflow: hidden;
}

.accordion-button {
  color: var(--ec-secondary);
  font-weight: 700;
}

.accordion-button:not(.collapsed) {
  background: rgba(0, 93, 170, 0.08);
  color: var(--ec-primary);
}

.ec-spacer {
  padding: 0;
}

.ec-spacer hr {
  border-color: var(--ec-border);
  margin: 0;
}

.ec-site-footer {
  background:
    linear-gradient(135deg, #0b2036, var(--ec-secondary));
  color: #d8e2ef;
  padding: 64px 0 28px;
}

.ec-site-footer__cta {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 46px;
  padding: 30px;
}

.ec-site-footer__cta h2 {
  color: #fff;
  margin-bottom: 0;
}

.ec-site-footer__grid {
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(260px, 1.2fr) repeat(4, minmax(0, 1fr));
}

.ec-site-footer__brand img {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 18px;
  padding: 8px;
}

.ec-site-footer__content {
  color: #d8e2ef;
  max-width: 360px;
}

.ec-site-footer__contact {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.ec-site-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.ec-site-footer__social a {
  align-items: center;
  background: rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  display: inline-flex;
  gap: 8px;
  padding: 8px 12px;
  text-decoration: none;
}

.ec-site-footer__column h3 {
  color: #fff;
  font-size: 17px;
}

.ec-site-footer__links {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ec-site-footer__links a {
  color: #d8e2ef;
  text-decoration: none;
}

.ec-site-footer__links a:hover,
.ec-site-footer__contact a:hover,
.ec-site-footer__social a:hover {
  color: #fff;
}

.ec-site-footer__bottom {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-top: 42px;
  padding-top: 24px;
}

.ec-site-footer__bottom p {
  margin: 0;
}

.ec-site-footer a,
.ec-site-footer h1,
.ec-site-footer h2,
.ec-site-footer h3 {
  color: #fff;
}

.ec-back-to-top {
  align-items: center;
  background: var(--ec-primary);
  border: 0;
  border-radius: 999px;
  bottom: 24px;
  color: #fff;
  display: none;
  height: 44px;
  justify-content: center;
  position: fixed;
  right: 24px;
  width: 44px;
  z-index: 999;
}

.ec-back-to-top.is-visible {
  display: flex;
}

.ec-hide-desktop {
  display: none !important;
}

@media (max-width: 991px) {
  .ec-section {
    font-size: var(--ec-tablet-font-size, inherit);
    margin-bottom: var(--ec-tablet-margin-bottom, inherit);
    margin-top: var(--ec-tablet-margin-top, inherit);
    padding-bottom: var(--ec-tablet-padding-bottom, 56px);
    padding-top: var(--ec-tablet-padding-top, 56px);
  }

  .ec-section h1,
  .ec-section h2,
  .ec-section .ec-section-title {
    font-size: var(--ec-section-heading-tablet-size, var(--ec-section-heading-size, inherit));
  }

  .ec-section .ec-content,
  .ec-section .ec-content p,
  .ec-section .ec-section-intro {
    font-size: var(--ec-section-body-tablet-size, var(--ec-section-body-size, inherit));
  }

  .ec-section--overlap-previous {
    --ec-section-overlap: var(--ec-tablet-section-overlap, clamp(54px, 7vw, 82px));
  }

  .ec-section--overlap-manual {
    margin-bottom: var(--ec-section-overlap) !important;
    margin-top: calc(var(--ec-section-overlap) * -1) !important;
  }

  .ec-site-header__inner {
    min-height: 72px;
  }

  .ec-site-header::before {
    background: var(--ec-mobile-header-bg, #ffffff);
    opacity: var(--ec-mobile-header-opacity, 0.96);
  }

  .ec-header-tablet-hide,
  .ec-site-header__social,
  .ec-site-header__phone {
    display: none;
  }

  .ec-nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .ec-primary-nav {
    background: #fff;
    border-top: 1px solid var(--ec-border);
    display: none;
    left: 0;
    padding: 20px;
    position: absolute;
    right: 0;
    top: 72px;
  }

  .ec-primary-nav.is-open {
    display: block;
  }

  .ec-primary-nav__menu {
    align-items: flex-start;
    flex-direction: column;
  }

  .ec-dropdown-menu,
  .ec-mega-menu {
    background: #f8fbff;
    border: 0;
    box-shadow: none;
    display: none;
    left: auto;
    opacity: 1;
    padding: 10px 0 0 14px;
    pointer-events: auto;
    position: static;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
  }

  .ec-primary-nav__menu li:hover > .ec-dropdown-menu,
  .ec-primary-nav__menu li:focus-within > .ec-dropdown-menu,
  .ec-primary-nav__menu li:hover > .ec-mega-menu,
  .ec-primary-nav__menu li:focus-within > .ec-mega-menu {
    display: block;
  }

  .ec-mega-menu__inner,
  .ec-mega-menu__grid {
    display: grid;
    grid-template-columns: 1fr;
    padding: 0;
  }

  .ec-site-header__cta {
    display: none;
  }

  .ec-grid-4,
  .ec-grid-5,
  .ec-grid-6,
  .ec-stats__grid,
  .ec-site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ec-hide-tablet {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .ec-header-mobile-hide {
    display: none;
  }

  .ec-site-header.has-mobile-logo .ec-logo--default,
  .ec-site-header.has-mobile-logo .ec-logo--transparent,
  .ec-site-header.has-mobile-logo .ec-logo--sticky {
    display: none !important;
  }

  .ec-site-header.has-mobile-logo .ec-logo--mobile {
    display: block !important;
  }

  .ec-site-header.is-floating {
    border-radius: 0;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
  }

  .ec-announcement-bar__inner,
  .ec-top-bar__inner,
  .ec-top-bar__links {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    padding-bottom: 8px;
    padding-top: 8px;
  }

  .ec-section {
    font-size: var(--ec-mobile-font-size, var(--ec-tablet-font-size, inherit));
    margin-bottom: var(--ec-mobile-margin-bottom, var(--ec-tablet-margin-bottom, inherit));
    margin-top: var(--ec-mobile-margin-top, var(--ec-tablet-margin-top, inherit));
    padding-bottom: 56px;
    padding-bottom: var(--ec-mobile-padding-bottom, 56px);
    padding-top: 56px;
    padding-top: var(--ec-mobile-padding-top, 56px);
  }

  .ec-section h1,
  .ec-section h2,
  .ec-section .ec-section-title {
    font-size: var(--ec-section-heading-mobile-size, var(--ec-section-heading-tablet-size, var(--ec-section-heading-size, inherit)));
  }

  .ec-section .ec-content,
  .ec-section .ec-content p,
  .ec-section .ec-section-intro {
    font-size: var(--ec-section-body-mobile-size, var(--ec-section-body-tablet-size, var(--ec-section-body-size, inherit)));
  }

  .ec-section--overlap-previous {
    --ec-section-overlap: var(--ec-mobile-section-overlap, 0px);
  }

  .ec-section--overlap-manual {
    margin-bottom: var(--ec-section-overlap) !important;
    margin-top: calc(var(--ec-section-overlap) * -1) !important;
  }

  .ec-hero {
    min-height: auto;
  }

  .ec-grid-2,
  .ec-grid-3,
  .ec-grid-4,
  .ec-grid-5,
  .ec-grid-6,
  .ec-stats__grid {
    grid-template-columns: 1fr;
  }

  .ec-cta__inner,
  .ec-newsletter__inner {
    padding: 32px 22px;
  }

  .ec-site-footer__inner,
  .ec-site-footer__cta,
  .ec-site-footer__bottom,
  .ec-site-footer__menu {
    align-items: flex-start;
    flex-direction: column;
  }

  .ec-site-footer__grid {
    grid-template-columns: 1fr;
  }

  .ec-hide-mobile {
    display: none !important;
  }

  .ec-hide-desktop {
    display: block !important;
  }
}


/* Performance-first builder foundation: lightweight replacements for the few Bootstrap utilities used by templates. */
.container{width:min(100% - 32px,var(--ec-container,1200px));margin-inline:auto}.container-fluid{width:100%;margin-inline:auto}.row{display:flex;flex-wrap:wrap;margin-inline:calc(var(--ec-gutter,24px)/-2);row-gap:var(--ec-row-gap,var(--ec-gutter,24px))}.row>*{box-sizing:border-box;padding-inline:calc(var(--ec-gutter,24px)/2);width:100%}.g-5{--ec-gutter:48px;--ec-row-gap:48px}.align-items-center{align-items:center}@media (min-width:992px){.col-lg-5{width:41.666667%}.col-lg-6{width:50%}.col-lg-7{width:58.333333%}.order-lg-1{order:1}.order-lg-2{order:2}}
.collapse:not(.show){display:none}.accordion-item{border:1px solid rgba(15,23,42,.12);border-radius:var(--ec-radius,16px);overflow:hidden;margin-bottom:12px;background:#fff}.accordion-button{width:100%;display:flex;align-items:center;justify-content:space-between;gap:16px;border:0;background:#fff;padding:18px 20px;font:inherit;font-weight:700;color:var(--ec-text);cursor:pointer;text-align:left}.accordion-button:not(.collapsed){background:rgba(0,93,170,.06);color:var(--ec-primary)}.accordion-body{padding:0 20px 20px}.nav{display:flex;flex-wrap:wrap;gap:8px;list-style:none;padding:0;margin:0 0 24px}.nav-tabs{border-bottom:1px solid rgba(15,23,42,.12)}.nav-link{border:1px solid transparent;background:transparent;border-radius:999px;padding:10px 16px;cursor:pointer;color:var(--ec-text);font-weight:700}.nav-link.active{background:var(--ec-primary);color:#fff}.tab-pane{display:none}.tab-pane.active,.tab-pane.show{display:block}
.ec-spacing-none{padding-block:0!important}.ec-spacing-small{padding-block:var(--ec-section-gap-sm)!important}.ec-spacing-medium{padding-block:var(--ec-section-gap-md)!important}.ec-spacing-large{padding-block:var(--ec-section-gap-lg)!important}.ec-section--full{width:100%}.ec-container-full{width:100%}.ec-style-modern{background:linear-gradient(180deg,#fff,rgba(0,93,170,.05))}.ec-style-corporate{background:#f8fafc}.ec-style-minimal{background:#fff}.ec-style-dark{background:#0f172a;color:#fff}.ec-style-dark h1,.ec-style-dark h2,.ec-style-dark h3,.ec-style-dark p{color:inherit}.ec-style-gradient{background:linear-gradient(135deg,var(--ec-primary),var(--ec-accent));color:#fff}.ec-style-gradient h1,.ec-style-gradient h2,.ec-style-gradient h3,.ec-style-gradient p{color:inherit}.ec-style-rounded>.container,.ec-style-rounded>.container-fluid{border-radius:var(--ec-radius,16px);box-shadow:var(--ec-shadow);padding:48px;background:#fff}

.ec-section[style*="--ec-section-heading-color"] h1,
.ec-section[style*="--ec-section-heading-color"] h2,
.ec-section[style*="--ec-section-heading-color"] h3,
.ec-section[style*="--ec-section-heading-color"] h4,
.ec-section[style*="--ec-section-heading-color"] h5,
.ec-section[style*="--ec-section-heading-color"] h6,
.ec-section[style*="--ec-section-heading-color"] .ec-section-title {
  color: var(--ec-section-heading-color) !important;
}

.ec-section[style*="--ec-section-heading-size"] h1,
.ec-section[style*="--ec-section-heading-size"] h2,
.ec-section[style*="--ec-section-heading-size"] .ec-section-title {
  font-size: var(--ec-section-heading-size) !important;
}

.ec-section[style*="--ec-section-body-color"] .ec-content,
.ec-section[style*="--ec-section-body-color"] .ec-content p,
.ec-section[style*="--ec-section-body-color"] .ec-section-intro,
.ec-section[style*="--ec-section-body-color"] p {
  color: var(--ec-section-body-color) !important;
}

.ec-section[style*="--ec-section-body-size"] .ec-content,
.ec-section[style*="--ec-section-body-size"] .ec-content p,
.ec-section[style*="--ec-section-body-size"] .ec-section-intro {
  font-size: var(--ec-section-body-size) !important;
}

@media (max-width: 991px) {
  .ec-section[style*="--ec-section-heading-tablet-size"] h1,
  .ec-section[style*="--ec-section-heading-tablet-size"] h2,
  .ec-section[style*="--ec-section-heading-tablet-size"] .ec-section-title {
    font-size: var(--ec-section-heading-tablet-size) !important;
  }

  .ec-section[style*="--ec-section-body-tablet-size"] .ec-content,
  .ec-section[style*="--ec-section-body-tablet-size"] .ec-content p,
  .ec-section[style*="--ec-section-body-tablet-size"] .ec-section-intro {
    font-size: var(--ec-section-body-tablet-size) !important;
  }
}

@media (max-width: 767px) {
  .ec-section[style*="--ec-section-heading-mobile-size"] h1,
  .ec-section[style*="--ec-section-heading-mobile-size"] h2,
  .ec-section[style*="--ec-section-heading-mobile-size"] .ec-section-title {
    font-size: var(--ec-section-heading-mobile-size) !important;
  }

  .ec-section[style*="--ec-section-body-mobile-size"] .ec-content,
  .ec-section[style*="--ec-section-body-mobile-size"] .ec-content p,
  .ec-section[style*="--ec-section-body-mobile-size"] .ec-section-intro {
    font-size: var(--ec-section-body-mobile-size) !important;
  }
}
@media (max-width:991px){.ec-spacing-small{padding-block:32px!important}.ec-spacing-medium{padding-block:52px!important}.ec-spacing-large{padding-block:72px!important}.g-5{--ec-gutter:28px;--ec-row-gap:28px}}

.ec-blog-hero {
  background: linear-gradient(135deg, rgba(7, 59, 99, 0.92), rgba(0, 93, 170, 0.76)), var(--ec-blog-hero-image, none);
  background-position: center;
  background-size: cover;
  color: #fff;
  padding: clamp(92px, 13vw, 168px) 0 clamp(58px, 8vw, 96px);
}

.ec-blog-hero h1,
.ec-blog-single-hero h1 {
  color: inherit;
  font-size: clamp(42px, 6vw, 74px);
  letter-spacing: -0.05em;
  line-height: 0.98;
  margin: 10px 0 18px;
  max-width: 900px;
}

.ec-blog-hero__intro {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2vw, 22px);
  max-width: 760px;
}

.ec-breadcrumbs {
  align-items: center;
  color: rgba(255, 255, 255, 0.78);
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  gap: 9px;
  margin-bottom: 22px;
}

.ec-breadcrumbs a {
  color: inherit;
}

.ec-blog-filters {
  align-items: end;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 22px;
  box-shadow: 0 20px 55px rgba(15, 35, 55, 0.09);
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto auto;
  margin: -64px 0 44px;
  padding: 22px;
  position: relative;
  z-index: 2;
}

.ec-dynamic-listing .ec-blog-filters {
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.ec-blog-filters label {
  display: grid;
  gap: 8px;
  margin: 0;
}

.ec-blog-filters span {
  color: #334155;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ec-blog-filters input,
.ec-blog-filters select,
.ec-blog-sidebar-search input,
.ec-blog-newsletter input {
  border: 1px solid #d5e0ea;
  border-radius: 999px;
  min-height: 46px;
  padding: 0 16px;
  width: 100%;
}

.ec-blog-filters__reset {
  color: var(--ec-primary);
  font-weight: 800;
  padding-bottom: 13px;
}

.ec-blog-layout {
  display: grid;
  gap: 40px;
}

.ec-blog-layout.has-sidebar {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
}

.ec-blog-grid,
.ec-blog-featured__grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ec-blog-listing--list_sidebar .ec-blog-grid {
  grid-template-columns: 1fr;
}

.ec-blog-listing--featured_content .ec-blog-grid,
.ec-blog-listing--magazine .ec-blog-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.ec-blog-listing--featured_content .ec-blog-card,
.ec-blog-listing--magazine .ec-blog-card {
  grid-column: span 2;
}

.ec-blog-listing--featured_content .ec-blog-card:first-child,
.ec-blog-listing--magazine .ec-blog-card:first-child {
  grid-column: span 3;
}

.ec-blog-featured {
  margin-bottom: 48px;
}

.ec-blog-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 0;
  box-shadow: 0 18px 48px rgba(15, 35, 55, 0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.ec-blog-card:hover {
  box-shadow: 0 24px 70px rgba(15, 35, 55, 0.14);
  transform: translateY(-4px);
}

.ec-blog-card__image {
  aspect-ratio: 16 / 10;
  display: block;
  overflow: hidden;
}

.ec-blog-card__image img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
  width: 100%;
}

.ec-blog-card:hover .ec-blog-card__image img {
  transform: scale(1.04);
}

.ec-blog-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(22px, 3vw, 34px);
}

.ec-blog-card__meta,
.ec-blog-single-meta {
  align-items: center;
  color: #64748b;
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  gap: 10px;
}

.ec-blog-card__type {
  color: var(--ec-primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ec-blog-card__meta a,
.ec-blog-category-pill {
  background: rgba(0, 93, 170, 0.1);
  border-radius: 999px;
  color: var(--ec-primary);
  font-weight: 800;
  padding: 5px 10px;
}

.ec-blog-card h3 {
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.18;
  margin: 18px 0 14px;
}

.ec-blog-card p {
  color: #526579;
}

.ec-blog-card__footer {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-top: auto;
}

.ec-blog-sidebar {
  align-self: start;
  display: grid;
  gap: 18px;
  position: sticky;
  top: 112px;
}

.ec-blog-layout.has-sidebar-left > .ec-blog-sidebar {
	order: -1;
}

.ec-blog-listing--carousel .ec-blog-grid {
	display: grid;
	grid-auto-columns: minmax(280px, 380px);
	grid-auto-flow: column;
	grid-template-columns: none;
	overflow-x: auto;
	padding-bottom: 10px;
	scroll-snap-type: x mandatory;
}

.ec-blog-listing--carousel .ec-blog-card {
	scroll-snap-align: start;
}

.ec-layout-builder__rows {
	display: grid;
	gap: clamp(24px, 4vw, 48px);
}

.ec-layout-builder__row {
	display: grid;
	grid-template-columns: var(--ec-layout-columns, minmax(0, 1fr));
	gap: var(--ec-layout-gap, 24px);
	border-radius: 18px;
}

.ec-layout-builder__column {
	min-width: 0;
	border-radius: 16px;
}

.ec-layout-widget + .ec-layout-widget {
	margin-top: 18px;
}

.ec-layout-widget__heading {
	margin: 0;
}

.ec-layout-widget__image {
	margin: 0;
}

.ec-layout-widget__image img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 16px;
}

.ec-align-left {
	margin-right: auto;
	text-align: left;
}

.ec-align-center {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.ec-align-right {
	margin-left: auto;
	text-align: right;
}

.ec-layout-widget__icon {
	line-height: 1;
}

.ec-layout-widget__divider {
	margin: 0;
	border: 0;
	border-top-style: solid;
}

.ec-fixed-layout__columns {
	align-items: var(--ec-fixed-align, start);
	display: grid;
	gap: var(--ec-fixed-gap, 24px);
	grid-template-columns: var(--ec-fixed-columns, minmax(0, 1fr));
}

.ec-fixed-layout__column {
	min-width: 0;
}

.ec-fixed-block + .ec-fixed-block {
	margin-top: 20px;
}

.ec-fixed-block__heading,
.ec-fixed-block h2,
.ec-fixed-block h3 {
	margin-top: 0;
}

.ec-fixed-block__image {
	margin: 0;
}

.ec-fixed-block__image img,
.ec-fixed-block__hero img {
	display: block;
	height: auto;
	width: 100%;
}

.ec-fixed-block__image img {
	border-radius: 16px;
}

.ec-fixed-block__hero,
.ec-fixed-block__cta,
.ec-fixed-block__form,
.ec-fixed-block__video,
.ec-fixed-block__testimonials,
.ec-fixed-block__faq,
.ec-fixed-block__events {
	border-radius: 18px;
}

.ec-fixed-block__hero {
	display: grid;
	gap: 24px;
	grid-template-columns: minmax(0, 1fr);
}

.ec-fixed-block__cta {
	background: #0b4c78;
	color: #fff;
	padding: clamp(24px, 4vw, 40px);
}

.ec-fixed-block__cta .ec-content,
.ec-fixed-block__cta .ec-content p {
	color: inherit;
}

.ec-fixed-block__dynamic-listing .ec-blog-listing {
	padding: 0;
}

.ec-fixed-block__dynamic-listing .ec-container,
.ec-fixed-block__dynamic-listing .container {
	max-width: none;
	padding-left: 0;
	padding-right: 0;
}

.ec-fixed-testimonial-list,
.ec-fixed-faq-list,
.ec-fixed-event-list {
	display: grid;
	gap: 14px;
}

.ec-fixed-testimonial-list blockquote,
.ec-fixed-faq-list details,
.ec-fixed-event-list article {
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.1);
	border-radius: 14px;
	margin: 0;
	padding: 18px;
}

.ec-fixed-testimonial-list cite {
	display: grid;
	font-style: normal;
	font-weight: 700;
	gap: 2px;
}

.ec-fixed-testimonial-list cite span {
	color: #64748b;
	font-size: 0.9em;
	font-weight: 500;
}

.ec-fixed-faq-list summary {
	cursor: pointer;
	font-weight: 700;
}

.ec-contact-form__fallback {
	background: #ffffff;
	border: 1px solid rgba(15, 23, 42, 0.1);
	border-radius: 24px;
	box-shadow: 0 24px 70px rgba(15, 35, 55, 0.09);
	padding: clamp(24px, 4vw, 40px);
}

.ec-contact-form__grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ec-contact-form__grid label {
	display: grid;
	gap: 8px;
	font-weight: 700;
}

.ec-contact-form__grid input,
.ec-contact-form__grid select,
.ec-contact-form__grid textarea {
	background: #f8fafc;
	border: 1px solid rgba(15, 23, 42, 0.14);
	border-radius: 12px;
	color: #0f172a;
	min-height: 48px;
	padding: 12px 14px;
	width: 100%;
}

.ec-contact-form__grid textarea {
	resize: vertical;
}

.ec-contact-form__full,
.ec-contact-form__recaptcha {
	grid-column: 1 / -1;
}

.ec-contact-form__recaptcha {
	color: #64748b;
	font-size: 0.9rem;
	margin: 16px 0;
}

/* Focus Dynamics inspired landing style. Non-branded, editor-managed via custom CSS classes. */
.fd-inspired {
  font-family: Manrope, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.fd-hero.ec-hero {
  background:
    radial-gradient(circle at 8% 20%, rgba(255, 255, 255, 0.28), transparent 24%),
    radial-gradient(circle at 90% 15%, rgba(101, 214, 255, 0.24), transparent 26%),
    linear-gradient(135deg, #112f91 0%, #225fed 52%, #6f7df7 100%);
  color: #ffffff;
  min-height: min(760px, 92vh);
  padding-block: clamp(90px, 12vw, 150px);
}

.fd-hero.ec-hero::after {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12) 25%, transparent 25%) 0 0 / 34px 34px,
    linear-gradient(135deg, transparent 75%, rgba(255, 255, 255, 0.1) 75%) 0 0 / 34px 34px;
  opacity: 0.55;
}

.fd-hero h1 {
  color: #ffffff;
  font-size: clamp(48px, 7vw, 94px);
  letter-spacing: -0.07em;
  line-height: 0.95;
  max-width: 780px;
}

.fd-hero .ec-eyebrow,
.fd-hero .ec-content,
.fd-hero .ec-content h2,
.fd-hero .ec-content p {
  color: #ffffff;
}

.fd-hero .ec-content h2 {
  font-size: clamp(24px, 3vw, 42px);
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin-bottom: 18px;
  max-width: 720px;
}

.fd-hero .ec-content p {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 1.3vw, 21px);
  max-width: 650px;
}

.fd-hero .ec-hero__image {
  aspect-ratio: 1 / 1;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 44px;
  box-shadow: 0 36px 90px rgba(0, 16, 64, 0.28);
  object-fit: cover;
  transform: rotate(2deg);
}

.fd-hero .ec-button--primary,
.fd-cta .ec-button--accent {
  background: #ffffff;
  color: #1742cf;
}

.fd-hero .ec-button--outline {
  border-color: rgba(255, 255, 255, 0.7);
  color: #ffffff;
}

.fd-intro h2,
.fd-services .ec-section-title,
.fd-promo .ec-section-title,
.fd-insights .ec-section-title,
.fd-contact h2 {
  color: #111827;
  font-size: clamp(36px, 4.8vw, 68px);
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.fd-intro .ec-rounded-media {
  aspect-ratio: 4 / 5;
  border: 0;
  border-radius: 36px;
  box-shadow: 0 30px 80px rgba(15, 35, 55, 0.16);
  object-fit: cover;
}

.fd-partners.ec-logo-slider {
  background: #f7f8ff;
}

.fd-partners .ec-logo-swiper {
  background: #ffffff;
  border: 1px solid rgba(34, 95, 237, 0.12);
  border-radius: 30px;
  box-shadow: 0 28px 80px rgba(22, 45, 120, 0.08);
  padding: clamp(22px, 4vw, 42px);
}

.fd-partners .swiper-wrapper {
  align-items: center;
}

.fd-partners .swiper-slide {
  align-items: center;
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 18px;
  display: flex;
  justify-content: center;
  min-height: 96px;
  padding: 22px;
}

.fd-partners img {
  filter: none;
  max-height: 58px;
  opacity: 1;
}

.fd-services.ec-cards,
.fd-promo.ec-cards,
.fd-insights.ec-posts-grid {
  background: #f3f5ff;
}

.fd-services .ec-card-grid {
  gap: clamp(20px, 3vw, 34px);
}

.fd-services .ec-card {
  background: #ffffff;
  border: 1px solid rgba(34, 95, 237, 0.1);
  border-radius: 30px;
  box-shadow: 0 22px 70px rgba(25, 42, 105, 0.08);
  overflow: hidden;
}

.fd-services .ec-grid-5 {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.fd-services .ec-icon {
  align-items: center;
  background: rgba(34, 95, 237, 0.1);
  border-radius: 18px;
  color: #225fed;
  display: inline-flex;
  height: 54px;
  justify-content: center;
  margin-bottom: 22px;
  width: 54px;
}

.fd-services .ec-card__media {
  aspect-ratio: 16 / 11;
  border-radius: 0 0 28px 28px;
}

.fd-services .ec-card__body {
  padding: 30px;
}

.fd-services .ec-card h3 {
  color: #111827;
  font-size: clamp(22px, 2vw, 30px);
  letter-spacing: -0.04em;
}

.fd-services .ec-card__link,
.fd-promo .ec-card__link {
  align-items: center;
  color: #225fed;
  display: inline-flex;
  font-weight: 800;
  gap: 8px;
  margin-top: 18px;
  text-decoration: none;
}

.fd-services .ec-card__link::after,
.fd-promo .ec-card__link::after {
  content: "→";
}

.fd-promo .ec-card {
  background: #ffffff;
  border: 0;
  border-radius: 34px;
  box-shadow: 0 28px 90px rgba(25, 42, 105, 0.09);
  overflow: hidden;
}

.fd-promo .ec-card__media {
  aspect-ratio: 16 / 10;
}

.fd-promo .ec-card__body {
  padding: clamp(28px, 4vw, 42px);
}

.fd-cta .ec-cta__inner {
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(135deg, #142f91, #225fed 58%, #7384ff);
  border: 0;
  border-radius: 36px;
  padding: clamp(42px, 7vw, 88px);
}

.fd-cta .ec-cta__inner h2,
.fd-cta .ec-cta__inner .ec-content,
.fd-cta .ec-cta__inner .ec-content p {
  color: #ffffff;
}

.fd-insights .ec-post-card {
  background: #ffffff;
  border-color: rgba(34, 95, 237, 0.1);
  border-radius: 28px;
  box-shadow: 0 24px 76px rgba(25, 42, 105, 0.08);
}

.fd-insights .ec-post-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

.fd-insights .ec-card__body {
  padding: 28px;
}

.fd-contact.ec-contact-form {
  background: #ffffff;
}

.fd-contact .ec-contact-form__fallback {
  background: #f8f9ff;
  border-color: rgba(34, 95, 237, 0.14);
  border-radius: 30px;
  box-shadow: 0 28px 90px rgba(25, 42, 105, 0.1);
}

.fd-contact .ec-contact-form__grid input,
.fd-contact .ec-contact-form__grid select,
.fd-contact .ec-contact-form__grid textarea {
  background: #ffffff;
  border-color: rgba(34, 95, 237, 0.18);
  border-radius: 14px;
}

@media (max-width: 900px) {
	.ec-layout-builder__row,
	.ec-fixed-layout__columns {
		grid-template-columns: 1fr;
	}

	.ec-contact-form__grid {
		grid-template-columns: 1fr;
	}

  .fd-hero.ec-hero {
    padding-block: 80px;
  }

  .fd-hero .ec-hero__image {
    border-radius: 28px;
    margin-top: 28px;
    transform: none;
  }

  .fd-intro h2,
  .fd-services .ec-section-title,
  .fd-promo .ec-section-title,
  .fd-insights .ec-section-title,
  .fd-contact h2 {
    font-size: clamp(32px, 9vw, 48px);
  }

  .fd-partners .swiper-slide {
    min-height: 76px;
  }
}

@media (max-width: 900px) and (min-width: 641px) {
	.ec-fixed-layout:not(.ec-fixed-layout--1_col) .ec-fixed-layout__columns {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.ec-fixed-layout__columns {
		grid-template-columns: 1fr;
	}
}

.ec-blog-widget {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 20px;
  box-shadow: 0 18px 46px rgba(15, 35, 55, 0.07);
  padding: 24px;
}

.ec-blog-widget h3 {
  margin-top: 0;
}

.ec-blog-widget ul {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ec-blog-sidebar-search,
.ec-blog-newsletter {
  display: grid;
  gap: 10px;
}

.ec-blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ec-banner__inner {
  align-items: center;
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  overflow: hidden;
  position: relative;
}

.ec-banner__inner--compact {
  min-height: 320px;
}

.ec-banner__inner--default {
  min-height: 460px;
}

.ec-banner__inner--large {
  min-height: 620px;
}

.ec-banner__inner--centered,
.ec-banner__inner--background_image {
  place-items: center;
}

.ec-banner__inner--image_right,
.ec-banner__inner--image_left {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
}

.ec-banner__inner--image_left .ec-banner__media {
  order: -1;
}

.ec-banner__content {
  max-width: 820px;
  position: relative;
  z-index: 2;
}

.ec-banner__content h1 {
  font-size: clamp(40px, 6vw, 78px);
  letter-spacing: -0.055em;
}

.ec-banner__content h2 {
  color: var(--ec-section-heading-color, var(--ec-secondary));
  font-size: clamp(24px, 3vw, 42px);
}

.ec-banner__media img {
  aspect-ratio: 4 / 3;
  border-radius: 30px;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.14);
  object-fit: cover;
  width: 100%;
}

.ec-flip-box-grid {
  display: grid;
  gap: 24px;
}

.ec-flip-box {
  height: var(--ec-flip-height, 360px);
  perspective: 1200px;
}

.ec-flip-box__inner {
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.ec-flip-box:hover .ec-flip-box__inner,
.ec-flip-box:focus-within .ec-flip-box__inner {
  transform: rotateY(180deg);
}

.ec-flip-box__face {
  backface-visibility: hidden;
  border-radius: 22px;
  inset: 0;
  overflow: hidden;
  position: absolute;
}

.ec-flip-box__face--front {
  background: #111827;
  color: var(--ec-flip-front-color, #ffffff);
}

.ec-flip-box__face--front img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.ec-flip-box__overlay {
  background: var(--ec-flip-front-overlay, #000000);
  inset: 0;
  opacity: var(--ec-flip-front-opacity, 0.45);
  position: absolute;
}

.ec-flip-box__face--back {
  align-items: center;
  background: var(--ec-flip-back-bg, #088bff);
  color: var(--ec-flip-back-color, #ffffff);
  display: flex;
  justify-content: center;
  transform: rotateY(180deg);
}

.ec-flip-box__content {
  color: inherit;
  padding: 30px;
  position: relative;
  z-index: 2;
}

.ec-flip-box__content h3,
.ec-flip-box__content .ec-content,
.ec-flip-box__content .ec-content p {
  color: inherit;
}

.ec-flip-box__content .ec-icon {
  margin-bottom: 18px;
}

.ec-flip-box__content .ec-button {
  margin-top: 18px;
}

.ec-solution-slider {
  background: #eef3f8;
  overflow: hidden;
}

.ec-solution-slider__header {
  align-items: flex-end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: clamp(28px, 4vw, 46px);
}

.ec-solution-slider__header .ec-section-title {
  margin-bottom: 10px;
}

.ec-solution-slider__nav {
  display: flex;
  flex: 0 0 auto;
  gap: 12px;
}

.ec-solution-slider__button {
  align-items: center;
  background: transparent;
  border: 2px solid #d4dee9;
  border-radius: 999px;
  color: #93a4b7;
  cursor: pointer;
  display: inline-flex;
  font-size: 30px;
  font-weight: 400;
  height: 48px;
  justify-content: center;
  line-height: 1;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
  width: 48px;
}

.ec-solution-slider__button:hover,
.ec-solution-slider__button:focus-visible {
  border-color: #0b82f0;
  color: #0b82f0;
  transform: translateY(-1px);
}

.ec-solution-slider__button.swiper-button-disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.ec-solution-card-swiper {
  overflow: visible;
  padding-bottom: 38px;
  --ec-solution-default-card-width: 360px;
  --ec-solution-transition: 420ms;
}

.ec-solution-card-swiper--compact {
  --ec-solution-card-height: 430px;
}

.ec-solution-card-swiper--default {
  --ec-solution-card-height: 520px;
}

.ec-solution-card-swiper--large {
  --ec-solution-card-height: 620px;
}

.ec-solution-card-swiper .swiper-slide {
  height: auto;
  max-width: min(88vw, 360px);
  width: var(--ec-solution-card-width, var(--ec-solution-default-card-width, 360px));
}

.ec-solution-card {
  --ec-solution-card-radius: 0;
  --ec-solution-card-shadow: none;
  --ec-solution-hover-bg: #088bff;
  --ec-solution-hover-color: #ffffff;
  --ec-solution-hover-overlay: #000000;
  --ec-solution-hover-overlay-opacity: 0.42;
  color: #ffffff;
  height: var(--ec-solution-card-height, 520px);
  perspective: 1200px;
  position: relative;
}

.ec-solution-card__inner {
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform var(--ec-solution-transition, 420ms) cubic-bezier(0.2, 0.8, 0.2, 1);
}

.ec-solution-card.is-flipped .ec-solution-card__inner,
.ec-solution-card--flip:hover .ec-solution-card__inner,
.ec-solution-card--flip:focus-within .ec-solution-card__inner {
  transform: rotateY(180deg);
}

.ec-solution-card__face {
  backface-visibility: hidden;
  border-radius: var(--ec-solution-card-radius, 0);
  box-shadow: var(--ec-solution-card-shadow, none);
  inset: 0;
  overflow: hidden;
  position: absolute;
}

.ec-solution-card__face--front {
  background: #08111f;
}

.ec-solution-card__face--back {
  align-items: flex-end;
  background: var(--ec-solution-hover-bg);
  color: var(--ec-solution-hover-color);
  display: flex;
  padding: 34px;
  transform: rotateY(180deg);
}

.ec-solution-card__image,
.ec-solution-card__overlay {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.ec-solution-card__image {
  object-fit: cover;
  transform: scale(1.02);
  transition: transform var(--ec-solution-transition, 420ms) ease, filter var(--ec-solution-transition, 420ms) ease;
}

.ec-solution-card__overlay {
  background:
    linear-gradient(180deg, rgba(3, 7, 18, 0.2) 0%, rgba(3, 7, 18, 0.2) 44%, rgba(0, 0, 0, 0.86) 100%),
    rgba(0, 0, 0, 0.18);
  opacity: 1;
  transition: background var(--ec-solution-transition, 420ms) ease, opacity var(--ec-solution-transition, 420ms) ease;
  z-index: 1;
}

.ec-solution-card__content {
  bottom: 0;
  left: 0;
  padding: clamp(24px, 3vw, 36px);
  position: absolute;
  right: 0;
  transform: translateY(0);
  transition: background var(--ec-solution-transition, 420ms) ease, color var(--ec-solution-transition, 420ms) ease, min-height var(--ec-solution-transition, 420ms) ease, transform var(--ec-solution-transition, 420ms) ease;
  z-index: 2;
}

.ec-solution-card__hover-media {
  align-items: center;
  display: flex;
  inset: 0 0 46%;
  justify-content: center;
  opacity: 0;
  padding: 36px;
  pointer-events: none;
  position: absolute;
  transform: translateY(16px);
  transition: opacity var(--ec-solution-transition, 420ms) ease, transform var(--ec-solution-transition, 420ms) ease;
  z-index: 3;
}

.ec-solution-card__hover-media img {
  max-height: 150px;
  max-width: min(70%, 220px);
  object-fit: contain;
}

.ec-solution-card h3,
.ec-solution-card .ec-content,
.ec-solution-card .ec-content p {
  color: inherit;
}

.ec-solution-card h3 {
  font-size: clamp(24px, 2.2vw, 34px);
  letter-spacing: -0.04em;
  line-height: 1.22;
  margin: 0;
}

.ec-solution-card__text {
  display: none;
  font-size: 18px;
  line-height: 1.55;
  margin-top: 24px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity var(--ec-solution-transition, 420ms) ease, transform var(--ec-solution-transition, 420ms) ease;
}

.ec-solution-card__link {
  align-items: center;
  color: inherit;
  display: inline-flex;
  font-weight: 800;
  gap: 7px;
  margin-top: 18px;
  opacity: 0;
  text-decoration: none;
  transform: translateY(14px);
  transition: opacity var(--ec-solution-transition, 420ms) ease, transform var(--ec-solution-transition, 420ms) ease;
}

.ec-solution-card__action {
  align-items: center;
  background: var(--ec-solution-hover-bg);
  border: 0;
  color: var(--ec-solution-hover-color);
  cursor: pointer;
  display: inline-flex;
  font-size: 42px;
  height: 58px;
  justify-content: center;
  line-height: 1;
  opacity: 0;
  position: absolute;
  right: 0;
  text-decoration: none;
  top: 0;
  transform: translateY(-8px);
  transition: opacity var(--ec-solution-transition, 420ms) ease, transform var(--ec-solution-transition, 420ms) ease, background var(--ec-solution-transition, 420ms) ease;
  width: 58px;
  z-index: 4;
}

.ec-solution-card:hover .ec-solution-card__action,
.ec-solution-card:focus-within .ec-solution-card__action,
.ec-solution-card-swiper .swiper-slide-active .ec-solution-card__action,
.ec-solution-card-swiper .is-active .ec-solution-card__action {
  opacity: 1;
  transform: translateY(0);
}

.ec-solution-card__back-content {
  position: relative;
  z-index: 2;
}

.ec-solution-card__back-content .ec-content {
  margin-top: 18px;
}

.ec-solution-card:hover .ec-solution-card__overlay,
.ec-solution-card:focus-within .ec-solution-card__overlay,
.ec-solution-card-swiper .swiper-slide-active .ec-solution-card__overlay,
.ec-solution-card-swiper .is-active .ec-solution-card__overlay {
  background: var(--ec-solution-hover-overlay);
  opacity: var(--ec-solution-hover-overlay-opacity);
}

.ec-solution-card:hover .ec-solution-card__hover-media,
.ec-solution-card:focus-within .ec-solution-card__hover-media,
.ec-solution-card-swiper .swiper-slide-active .ec-solution-card__hover-media,
.ec-solution-card-swiper .is-active .ec-solution-card__hover-media {
  opacity: 1;
  transform: translateY(0);
}

.ec-solution-card:hover .ec-solution-card__content,
.ec-solution-card:focus-within .ec-solution-card__content,
.ec-solution-card-swiper .swiper-slide-active .ec-solution-card__content,
.ec-solution-card-swiper .is-active .ec-solution-card__content {
  background: var(--ec-solution-hover-bg);
  color: var(--ec-solution-hover-color);
  min-height: 46%;
}

.ec-solution-card:hover .ec-solution-card__text,
.ec-solution-card:focus-within .ec-solution-card__text,
.ec-solution-card:hover .ec-solution-card__link,
.ec-solution-card:focus-within .ec-solution-card__link,
.ec-solution-card-swiper .swiper-slide-active .ec-solution-card__text,
.ec-solution-card-swiper .is-active .ec-solution-card__text {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.ec-solution-card-swiper .swiper-slide-active .ec-solution-card__link,
.ec-solution-card-swiper .is-active .ec-solution-card__link,
.ec-solution-card:hover .ec-solution-card__link,
.ec-solution-card:focus-within .ec-solution-card__link {
  display: inline-flex;
  opacity: 1;
  transform: translateY(0);
}

.ec-solution-card--zoom:hover .ec-solution-card__image,
.ec-solution-card--zoom:focus-within .ec-solution-card__image,
.ec-solution-card-swiper .swiper-slide-active .ec-solution-card--zoom .ec-solution-card__image,
.ec-solution-card-swiper .is-active .ec-solution-card--zoom .ec-solution-card__image {
  transform: scale(1.06);
}

.ec-solution-card--anim-fade-up .ec-solution-card__content {
  transform: translateY(0);
}

.ec-solution-card--anim-zoom:hover .ec-solution-card__content,
.ec-solution-card--anim-zoom:focus-within .ec-solution-card__content,
.ec-solution-card-swiper .swiper-slide-active .ec-solution-card--anim-zoom .ec-solution-card__content,
.ec-solution-card-swiper .is-active .ec-solution-card--anim-zoom .ec-solution-card__content {
  transform: scale(1.01);
}

.ec-solution-slider__scrollbar.swiper-scrollbar {
  background: #d7e0ea;
  border-radius: 999px;
  bottom: 0;
  height: 4px;
  left: 0;
  position: relative;
  width: 100%;
}

.ec-solution-slider__scrollbar .swiper-scrollbar-drag {
  background: #088bff;
  border-radius: 999px;
}

@media (max-width: 900px) {
  .ec-banner__inner--image_right,
  .ec-banner__inner--image_left {
    grid-template-columns: 1fr;
  }

  .ec-banner__inner--image_left .ec-banner__media {
    order: 0;
  }

  .ec-solution-slider__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .ec-solution-card-swiper .swiper-slide {
    width: min(82vw, 330px);
  }

  .ec-solution-card {
    height: min(var(--ec-solution-card-height, 520px), 500px);
  }
}

@media (max-width: 600px) {
  .ec-solution-slider__nav {
    order: -1;
  }

  .ec-solution-slider__button {
    height: 42px;
    width: 42px;
  }

  .ec-solution-card-swiper .swiper-slide {
    width: 84vw;
  }

  .ec-solution-card {
    height: 430px;
  }

  .ec-solution-card__face--back,
  .ec-solution-card__content {
    padding: 24px;
  }
}

.ec-blog-tags a {
  background: #eef6ff;
  border-radius: 999px;
  color: var(--ec-primary);
  font-size: 13px;
  font-weight: 800;
  padding: 7px 11px;
}

.ec-blog-pagination,
.ec-blog-load-more {
  margin-top: 44px;
  text-align: center;
}

.ec-blog-pagination .page-numbers {
  border: 1px solid #d5e0ea;
  border-radius: 999px;
  display: inline-flex;
  margin: 4px;
  min-width: 42px;
  padding: 10px 14px;
}

.ec-blog-pagination .current {
  background: var(--ec-primary);
  color: #fff;
}

.ec-blog-single-hero {
  background: #0f172a;
  color: #fff;
  overflow: hidden;
  padding: clamp(92px, 12vw, 150px) 0 clamp(58px, 9vw, 110px);
  position: relative;
}

.ec-blog-single-hero__media {
  inset: 0;
  opacity: 0.42;
  position: absolute;
}

.ec-blog-single-hero__media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.ec-blog-single-hero .container {
  position: relative;
  z-index: 2;
}

.ec-blog-single-meta {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.ec-blog-single-layout {
  display: grid;
  gap: 40px;
  grid-template-columns: 150px minmax(0, 840px);
  justify-content: center;
}

.ec-blog-share {
  align-self: start;
  display: grid;
  gap: 10px;
  position: sticky;
  top: 120px;
}

.ec-blog-share span {
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.ec-blog-share a {
  border: 1px solid #d5e0ea;
  border-radius: 999px;
  font-weight: 800;
  padding: 9px 12px;
  text-align: center;
}

.ec-blog-content {
  font-size: clamp(18px, 1.7vw, 20px);
  line-height: 1.8;
}

.ec-blog-content > * + * {
  margin-top: 1.35em;
}

.ec-blog-content blockquote {
  border-left: 4px solid var(--ec-primary);
  color: #0f2f4a;
  font-size: 1.22em;
  font-weight: 800;
  margin: 34px 0;
  padding-left: 24px;
}

.ec-blog-author-box {
  background: #f7fbff;
  padding: 44px 0;
}

.ec-blog-author-box__inner {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  display: grid;
  gap: 20px;
  grid-template-columns: 80px minmax(0, 1fr);
  margin: 0 auto;
  max-width: 880px;
  padding: 26px;
}

.ec-blog-author-box img {
  border-radius: 999px;
}

.ec-blog-post-nav {
  border-top: 1px solid #e2e8f0;
  padding: 28px 0;
}

.ec-blog-post-nav .container {
  display: flex;
  gap: 18px;
  justify-content: space-between;
}

@media (max-width: 1100px) {
  .ec-blog-filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ec-blog-layout.has-sidebar,
  .ec-blog-single-layout {
    grid-template-columns: 1fr;
  }

  .ec-blog-sidebar,
  .ec-blog-share {
    position: static;
  }

  .ec-blog-share {
    display: flex;
    flex-wrap: wrap;
  }
}

@media (max-width: 760px) {
  .ec-blog-grid,
  .ec-blog-featured__grid,
  .ec-blog-listing--featured_content .ec-blog-grid,
  .ec-blog-listing--magazine .ec-blog-grid {
    grid-template-columns: 1fr;
  }

  .ec-blog-listing--featured_content .ec-blog-card,
  .ec-blog-listing--magazine .ec-blog-card,
  .ec-blog-listing--featured_content .ec-blog-card:first-child,
  .ec-blog-listing--magazine .ec-blog-card:first-child {
    grid-column: auto;
  }

  .ec-blog-filters {
    margin-top: -36px;
    grid-template-columns: 1fr;
  }

  .ec-blog-post-nav .container {
    flex-direction: column;
  }
}

.ec-footer-builder {
  background-color: var(--ec-footer-bg, #111827);
  background-image: var(--ec-footer-bg-image, none);
  background-position: center;
  background-size: cover;
  color: var(--ec-footer-color, #fff);
  padding-top: var(--ec-footer-padding-top, 72px);
  padding-bottom: var(--ec-footer-padding-bottom, 34px);
}

.ec-footer-builder.has-background-image {
  background-image: linear-gradient(rgba(17, 24, 39, 0.88), rgba(17, 24, 39, 0.88)), var(--ec-footer-bg-image);
}

.ec-footer-builder a {
  color: var(--ec-footer-link, #fff);
}

.ec-footer-builder a:hover {
  color: var(--ec-footer-link-hover, #60a5fa);
}

.ec-footer-builder__grid {
  display: grid;
  gap: var(--ec-footer-column-gap, 34px);
  grid-template-columns: repeat(var(--ec-footer-columns, 4), minmax(0, 1fr));
}

.ec-footer-builder--columns-1 { --ec-footer-columns: 1; }
.ec-footer-builder--columns-2 { --ec-footer-columns: 2; }
.ec-footer-builder--columns-3 { --ec-footer-columns: 3; }
.ec-footer-builder--columns-4 { --ec-footer-columns: 4; }
.ec-footer-builder--columns-5 { --ec-footer-columns: 5; }
.ec-footer-builder--columns-6 { --ec-footer-columns: 6; }

.ec-footer-builder__column {
  min-width: 0;
}

.ec-footer-builder__column--50 {
  grid-column: span 2;
}

.ec-footer-builder__column--66,
.ec-footer-builder__column--75,
.ec-footer-builder__column--100 {
  grid-column: span 3;
}

.ec-footer-builder__block + .ec-footer-builder__block {
  margin-top: 26px;
}

.ec-footer-builder__block h3 {
  color: var(--ec-footer-color, #fff);
  font-size: 18px;
  line-height: 1.3;
  margin: 0 0 14px;
}

.ec-footer-builder__image img {
  display: block;
  height: auto;
}

.ec-footer-builder__image--center img {
  margin-inline: auto;
}

.ec-footer-builder__image--right img {
  margin-left: auto;
}

.ec-footer-builder__divider {
  border: 0;
  margin: 0;
}

.ec-footer-builder__spacer {
  min-height: 1px;
}

.ec-footer-builder__copyright {
  font-size: 14px;
  margin: 0;
  opacity: 0.78;
}

.ec-footer-builder__bottom {
  background: var(--ec-footer-copyright-bg, transparent);
  border-top: 1px solid var(--ec-footer-copyright-border, rgba(255, 255, 255, 0.12));
  margin-top: 42px;
  padding-top: var(--ec-footer-copyright-padding-top, 18px);
  padding-bottom: var(--ec-footer-copyright-padding-bottom, 18px);
}

.ec-footer-builder__bottom p {
  color: var(--ec-footer-color, #fff);
  font-size: 14px;
  margin: 0;
  opacity: 0.78;
}

.ec-footer-builder__bottom--left {
  text-align: left;
}

.ec-footer-builder__bottom--center {
  text-align: center;
}

.ec-footer-builder__bottom--right {
  text-align: right;
}

.ec-footer-builder__newsletter {
  align-items: center;
  display: flex;
  gap: 10px;
}

.ec-footer-builder__newsletter input {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: var(--ec-footer-color, #fff);
  min-height: 46px;
  padding: 0 16px;
  width: 100%;
}

.ec-footer-builder__newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.ec-site-footer__social--plain a {
  background: transparent;
  height: auto;
  width: auto;
}

.ec-site-footer__social--circle a,
.ec-site-footer__social--square a {
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  height: var(--ec-footer-social-size, 38px);
  justify-content: center;
  width: var(--ec-footer-social-size, 38px);
}

.ec-site-footer__social--circle a {
  border-radius: 999px;
}

.ec-site-footer__social--square a {
  border-radius: 10px;
}

@media (max-width: 900px) {
  .ec-footer-builder__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ec-footer-builder__column--50,
  .ec-footer-builder__column--66,
  .ec-footer-builder__column--75,
  .ec-footer-builder__column--100 {
    grid-column: span 1;
  }
}

@media (max-width: 640px) {
  .ec-footer-builder {
    padding-top: var(--ec-footer-mobile-padding-top, 48px);
    padding-bottom: var(--ec-footer-mobile-padding-bottom, 28px);
  }

  .ec-footer-builder__grid {
    grid-template-columns: 1fr;
  }

  .ec-footer-builder__newsletter {
    align-items: stretch;
    flex-direction: column;
  }
}

/* IT Consulting full website demo styling. */
.it-hero.ec-hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(34, 199, 169, 0.24), transparent 30%),
    linear-gradient(135deg, rgba(7, 22, 44, 0.94), rgba(11, 99, 206, 0.76));
  overflow: hidden;
}

.it-hero.ec-hero::after {
  background: linear-gradient(90deg, rgba(7, 22, 44, 0.78), rgba(7, 22, 44, 0.18));
  opacity: 1;
}

.it-hero .container {
  position: relative;
  z-index: 2;
}

.it-hero .ec-eyebrow {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #c7fff3;
  display: inline-flex;
  letter-spacing: 0.08em;
  padding: 8px 14px;
}

.it-hero h1 {
  color: #fff;
  font-size: clamp(42px, 6vw, 76px);
  letter-spacing: -0.055em;
  line-height: 0.98;
  margin-bottom: 24px;
  max-width: 820px;
}

.it-hero .ec-content {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 1.8vw, 22px);
  max-width: 660px;
}

.it-hero .ec-hero__image {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 34px;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.34);
  min-height: 420px;
  object-fit: cover;
}

.it-hero--fancy.ec-hero {
  background:
    radial-gradient(circle at 18% 12%, rgba(109, 93, 252, 0.34), transparent 28%),
    radial-gradient(circle at 84% 24%, rgba(34, 199, 169, 0.38), transparent 30%),
    linear-gradient(135deg, #07162c, #0b63ce 55%, #102a43);
}

.it-demo-section .ec-section-title {
  color: #0b1f3a;
  font-size: clamp(30px, 4vw, 52px);
  letter-spacing: -0.04em;
}

.it-card-grid .ec-card,
.it-glass-cards .ec-card,
.it-icon-grid .ec-card,
.it-image-cards .ec-card {
  border: 1px solid rgba(11, 99, 206, 0.11);
  border-radius: 24px;
  box-shadow: 0 18px 55px rgba(11, 31, 58, 0.09);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.it-card-grid .ec-card:hover,
.it-glass-cards .ec-card:hover,
.it-icon-grid .ec-card:hover,
.it-image-cards .ec-card:hover {
  border-color: rgba(11, 99, 206, 0.28);
  box-shadow: 0 28px 80px rgba(11, 31, 58, 0.16);
  transform: translateY(-8px);
}

.it-icon-grid .ec-card__media {
  display: none;
}

.it-glass-cards {
  background:
    radial-gradient(circle at 10% 20%, rgba(34, 199, 169, 0.13), transparent 25%),
    linear-gradient(180deg, #ffffff, #f2f7ff);
}

.it-image-cards .ec-card__media {
  height: 230px;
}

.it-image-cards .ec-card__image img,
.it-card-grid .ec-card__image img {
  height: 100%;
  object-fit: cover;
}

.it-split img {
  border-radius: 32px;
  box-shadow: 0 28px 80px rgba(11, 31, 58, 0.16);
}

.it-process {
  background: linear-gradient(180deg, #f8fbff, #ffffff);
}

.it-stats {
  background:
    radial-gradient(circle at 20% 20%, rgba(34, 199, 169, 0.24), transparent 28%),
    linear-gradient(135deg, #07162c, #0b1f3a) !important;
}

.it-gradient-cta {
  background:
    radial-gradient(circle at 85% 20%, rgba(34, 199, 169, 0.3), transparent 24%),
    linear-gradient(135deg, #0b63ce, #0b1f3a) !important;
  color: #fff;
}

.it-gradient-cta .ec-section-title,
.it-gradient-cta .ec-content,
.it-gradient-cta p {
  color: #fff;
}

.it-demo-legal {
  margin-inline: auto;
  max-width: 920px;
}

.it-demo-legal h2,
.it-demo-legal h3 {
  color: #0b1f3a;
}

@media (max-width: 991px) {
  .it-hero .ec-hero__image {
    min-height: 320px;
  }
}

/* Premium IT consulting header/menu refinements. */
.ec-site-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 14px 44px rgba(7, 22, 44, 0.08);
  transition: box-shadow 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.ec-site-header::before {
  transition: opacity 220ms ease, background 220ms ease, backdrop-filter 220ms ease;
}

.ec-site-header.is-scrolled {
  border-bottom-color: rgba(11, 31, 58, 0.08);
  box-shadow: 0 18px 60px rgba(7, 22, 44, 0.13);
}

.ec-site-header.is-scrolled .ec-site-header__inner {
  min-height: 70px;
}

.ec-site-header.is-scrolled::before {
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.94);
}

.ec-site-header__inner {
  gap: clamp(14px, 1.5vw, 24px);
  min-height: 88px;
  transition: min-height 220ms ease;
}

.ec-site-header__brand {
  background: rgba(11, 31, 58, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  flex: 0 0 auto;
  min-width: 150px;
  padding: 10px 14px;
  transition: background 220ms ease, box-shadow 220ms ease, padding 220ms ease;
}

.ec-site-header__brand img {
  max-height: 48px;
  max-width: 190px;
}

.ec-site-header.is-scrolled .ec-site-header__brand {
  background: #0b1f3a;
  box-shadow: 0 12px 28px rgba(11, 31, 58, 0.14);
  padding: 8px 12px;
}

.ec-site-header.is-scrolled .ec-site-header__brand img {
  max-height: 42px;
}

.ec-primary-nav {
  min-width: 0;
}

.ec-primary-nav__menu {
  gap: clamp(12px, 1.25vw, 24px);
  justify-content: center;
}

.ec-primary-nav__menu > li > a {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 15px;
  font-weight: 800;
  gap: 6px;
  letter-spacing: -0.01em;
  padding: 10px 4px;
  white-space: nowrap;
}

.ec-primary-nav__menu > li.has-dropdown > a::before {
  border-bottom: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  height: 6px;
  order: 3;
  transform: rotate(45deg) translateY(-2px);
  width: 6px;
}

.ec-primary-nav__menu > li.current-menu-item > a,
.ec-primary-nav__menu > li.current-menu-ancestor > a,
.ec-primary-nav__menu > li.current_page_parent > a {
  color: var(--ec-primary);
}

.ec-site-header.is-transparent:not(.is-scrolled) .ec-primary-nav__menu > li.current-menu-item > a,
.ec-site-header.is-transparent:not(.is-scrolled) .ec-primary-nav__menu > li.current-menu-ancestor > a {
  color: #c7fff3;
}

.ec-submenu-toggle {
  display: none;
}

.ec-dropdown-menu {
  border: 1px solid rgba(11, 99, 206, 0.1);
  border-radius: 20px;
  box-shadow: 0 28px 80px rgba(7, 22, 44, 0.18);
  min-width: 292px;
  padding: 12px;
  top: calc(100% + 14px);
}

.ec-dropdown-menu a,
.ec-mega-menu a {
  border-radius: 14px;
  padding: 13px 14px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.ec-dropdown-menu a:hover,
.ec-mega-menu a:hover {
  background: linear-gradient(135deg, rgba(11, 99, 206, 0.09), rgba(34, 199, 169, 0.09));
  color: #0b63ce;
  transform: translateX(3px);
}

.ec-mega-menu {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(11, 99, 206, 0.1);
  border-top: 1px solid rgba(11, 99, 206, 0.1);
  top: 88px;
}

.ec-site-header.is-scrolled .ec-mega-menu {
  top: 70px;
}

.ec-mega-menu__inner {
  gap: 28px;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.8fr);
  padding-bottom: 32px;
  padding-top: 32px;
}

.ec-mega-menu__intro {
  background:
    radial-gradient(circle at 95% 5%, rgba(34, 199, 169, 0.24), transparent 34%),
    linear-gradient(135deg, #0b1f3a, #0b63ce);
  border: 0;
  color: #fff;
  overflow: hidden;
  padding: 28px;
}

.ec-mega-menu__intro h3,
.ec-mega-menu__intro p {
  color: #fff;
}

.ec-mega-menu__featured {
  background: #fff;
  border-radius: 999px !important;
  color: #0b63ce !important;
  padding: 12px 16px !important;
}

.ec-mega-menu__grid {
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ec-mega-menu__grid > li > a {
  background: #f7fbff;
  border: 1px solid rgba(11, 99, 206, 0.09);
  height: 100%;
  min-height: 104px;
  padding: 16px;
}

.ec-mega-menu__grid > li > a::before {
  background: linear-gradient(135deg, #0b63ce, #22c7a9);
  border-radius: 12px;
  content: "";
  display: block;
  height: 34px;
  margin-bottom: 12px;
  width: 34px;
}

.ec-menu-item__description {
  color: #64748b;
  font-size: 12.5px;
  line-height: 1.45;
  margin-top: 7px;
}

.ec-site-header__phone {
  min-height: 42px;
  padding: 9px 15px;
}

.ec-site-header__actions .ec-button {
  box-shadow: 0 12px 26px rgba(11, 99, 206, 0.14);
  font-weight: 850;
  min-height: 44px;
  padding: 11px 20px;
}

.ec-primary-nav__mobile-cta {
  display: none;
}

@media (max-width: 1240px) {
  .ec-site-header__phone {
    display: none;
  }

  .ec-primary-nav__menu {
    gap: 12px;
  }

  .ec-primary-nav__menu > li > a {
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  body.ec-mobile-nav-open {
    overflow: hidden;
  }

  .ec-site-header {
    position: sticky;
  }

  .ec-site-header.is-transparent {
    position: sticky;
  }

  .ec-site-header__inner,
  .ec-site-header.is-scrolled .ec-site-header__inner {
    min-height: 74px;
  }

  .ec-site-header__brand,
  .ec-site-header.is-scrolled .ec-site-header__brand {
    border-radius: 14px;
    min-width: 132px;
    padding: 8px 10px;
  }

  .ec-site-header__brand img,
  .ec-site-header.is-scrolled .ec-site-header__brand img {
    max-height: 40px;
    max-width: 160px;
  }

  .ec-nav-toggle {
    background: #0b1f3a;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(11, 31, 58, 0.18);
  }

  .ec-nav-toggle span:not(.screen-reader-text) {
    background: #fff;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .ec-nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .ec-nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .ec-nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .ec-primary-nav {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(11, 99, 206, 0.11);
    border-radius: 0 0 24px 24px;
    box-shadow: 0 28px 80px rgba(7, 22, 44, 0.18);
    display: block;
    max-height: calc(100vh - 74px);
    opacity: 0;
    overflow-y: auto;
    padding: 18px;
    pointer-events: none;
    top: 74px;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .ec-primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .ec-primary-nav__menu {
    gap: 6px;
  }

  .ec-primary-nav__menu > li {
    border-bottom: 1px solid #e7eef7;
    position: relative;
    width: 100%;
  }

  .ec-primary-nav__menu > li > a {
    color: #0b1f3a !important;
    display: flex;
    justify-content: space-between;
    padding: 14px 46px 14px 4px;
    width: 100%;
  }

  .ec-primary-nav__menu > li.has-dropdown > a::before {
    display: none;
  }

  .ec-submenu-toggle {
    align-items: center;
    background: #eef5ff;
    border: 1px solid rgba(11, 99, 206, 0.12);
    border-radius: 10px;
    display: inline-flex;
    height: 34px;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 8px;
    width: 34px;
  }

  .ec-submenu-toggle span {
    border-bottom: 2px solid #0b63ce;
    border-right: 2px solid #0b63ce;
    height: 8px;
    transform: rotate(45deg) translateY(-2px);
    transition: transform 180ms ease;
    width: 8px;
  }

  .is-submenu-open > .ec-submenu-toggle span {
    transform: rotate(225deg) translate(-2px, -2px);
  }

  .ec-dropdown-menu,
  .ec-mega-menu {
    background: #f7fbff;
    border-radius: 16px;
    display: none;
    margin: 0 0 12px;
    padding: 10px;
  }

  .ec-primary-nav__menu li:hover > .ec-dropdown-menu,
  .ec-primary-nav__menu li:focus-within > .ec-dropdown-menu,
  .ec-primary-nav__menu li:hover > .ec-mega-menu,
  .ec-primary-nav__menu li:focus-within > .ec-mega-menu {
    display: none;
  }

  .ec-primary-nav__menu li.is-submenu-open > .ec-dropdown-menu,
  .ec-primary-nav__menu li.is-submenu-open > .ec-mega-menu {
    display: block;
  }

  .ec-mega-menu__inner,
  .ec-mega-menu__grid {
    gap: 10px;
    grid-template-columns: 1fr;
  }

  .ec-mega-menu__intro {
    display: none;
  }

  .ec-mega-menu__grid > li > a {
    min-height: auto;
  }

  .ec-mega-menu__grid > li > a::before {
    display: none;
  }

  .ec-site-header__actions {
    display: none;
  }

  .ec-primary-nav__mobile-cta {
    display: block;
    padding-top: 16px;
  }

  .ec-primary-nav__mobile-cta .ec-buttons {
    margin-top: 0;
  }

  .ec-primary-nav__mobile-cta .ec-button {
    justify-content: center;
    width: 100%;
  }
}

/* Header top-level items stay compact; descriptions are shown only inside dropdown/mega cards. */
.ec-primary-nav__menu > li > a > .ec-menu-item__description {
  display: none;
}

.ec-dropdown-menu .ec-menu-item__description,
.ec-mega-menu .ec-menu-item__description {
  display: block;
}

.ec-site-header__brand .ec-site-header__logo-text {
  color: #fff;
  font-weight: 850;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

@media (min-width: 992px) {
  .ec-primary-nav__menu > li {
    display: flex;
    align-items: center;
  }

  .ec-primary-nav__menu > li > a {
    min-height: 44px;
  }

  .ec-site-header__actions {
    flex: 0 0 auto;
  }
}

/* Header visibility, safe submenu hover, and polished inner-page forms. */
.ec-site-header {
  color: #0b1f3a;
  isolation: isolate;
  z-index: 9999;
}

.ec-site-header::before {
  background: rgba(255, 255, 255, 0.96) !important;
  opacity: 1 !important;
}

.ec-site-header.is-transparent:not(.is-scrolled)::before {
  background: rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: blur(16px);
}

.ec-site-header.is-scrolled::before,
.ec-site-header.is-transparent.is-scrolled::before {
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(20px);
  opacity: 1 !important;
}

.ec-site-header .ec-primary-nav__menu > li > a,
.ec-site-header.is-transparent .ec-primary-nav__menu > li > a,
.ec-site-header.is-transparent:not(.is-scrolled) .ec-primary-nav__menu > li > a,
.ec-site-header.is-scrolled .ec-primary-nav__menu > li > a {
  color: #0b1f3a !important;
  text-shadow: none;
}

.ec-site-header .ec-primary-nav__menu > li > a:hover,
.ec-site-header .ec-primary-nav__menu > li.current-menu-item > a,
.ec-site-header .ec-primary-nav__menu > li.current-menu-ancestor > a,
.ec-site-header .ec-primary-nav__menu > li.current_page_parent > a {
  color: #0b63ce !important;
}

.ec-site-header__brand {
  margin-right: clamp(10px, 1.5vw, 22px);
}

@media (min-width: 992px) {
  .ec-primary-nav__menu > li {
    position: relative;
  }

  .ec-primary-nav__menu > li::after {
    content: "";
    height: 22px;
    left: -14px;
    pointer-events: auto;
    position: absolute;
    right: -14px;
    top: 100%;
  }

  .ec-dropdown-menu,
  .ec-mega-menu {
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
    visibility: hidden;
  }

  .ec-primary-nav__menu li:hover > .ec-dropdown-menu,
  .ec-primary-nav__menu li:focus-within > .ec-dropdown-menu,
  .ec-primary-nav__menu li:hover > .ec-mega-menu,
  .ec-primary-nav__menu li:focus-within > .ec-mega-menu {
    display: block;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .ec-dropdown-menu {
    top: calc(100% + 8px);
  }

  .ec-mega-menu {
    top: 82px;
  }

  .ec-site-header.is-scrolled .ec-mega-menu {
    top: 68px;
  }
}

.ec-inner-premium .ec-section-title,
.ec-inner-premium h1,
.ec-inner-premium h2 {
  letter-spacing: -0.045em;
}

.ec-inner-hero.ec-hero {
  align-items: center;
  background:
    radial-gradient(circle at 82% 12%, rgba(34, 199, 169, 0.2), transparent 30%),
    radial-gradient(circle at 16% 16%, rgba(11, 99, 206, 0.28), transparent 32%),
    linear-gradient(135deg, #07162c 0%, #0b1f3a 48%, #0b63ce 100%) !important;
  color: #fff;
  display: flex;
  min-height: clamp(480px, 62vh, 620px) !important;
  padding-top: clamp(118px, 10vw, 160px) !important;
  padding-bottom: clamp(58px, 7vw, 92px) !important;
  position: relative;
}

.ec-inner-hero.ec-hero::before {
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 28px 28px;
  content: "";
  inset: 0;
  opacity: 0.38;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.ec-inner-hero.ec-hero::after {
  background:
    linear-gradient(90deg, rgba(7, 22, 44, 0.78), rgba(7, 22, 44, 0.16)),
    linear-gradient(135deg, rgba(11, 99, 206, 0.16), rgba(34, 199, 169, 0.1));
  inset: 0;
  height: auto;
  opacity: 1;
  z-index: -1;
}

.ec-inner-hero .container {
  position: relative;
  z-index: 2;
}

.ec-inner-hero .row {
  align-items: center !important;
}

.ec-inner-hero .ec-eyebrow {
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #c7fff3;
  display: inline-flex;
  font-size: 12px;
  gap: 8px;
  letter-spacing: 0.12em;
  padding: 8px 14px;
}

.ec-inner-hero .ec-eyebrow::before {
  background: #22c7a9;
  border-radius: 50%;
  content: "";
  height: 7px;
  width: 7px;
}

.ec-inner-hero h1 {
  color: #fff;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.055em;
  line-height: 1;
  margin-bottom: 22px;
  max-width: 780px;
}

.ec-inner-hero .ec-content,
.ec-inner-hero .ec-content p {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.72;
  max-width: 680px;
}

.ec-inner-hero .ec-hero__image {
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 32px;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.34);
  height: clamp(300px, 38vw, 460px);
  object-fit: cover;
  object-position: center;
  overflow: hidden;
  width: 100%;
}

.ec-inner-image-content .ec-rounded-media,
.ec-inner-image-content img {
  object-fit: cover;
  object-position: center;
}

.ec-inner-premium .ec-card,
.ec-inner-premium .ec-post-card,
.ec-inner-premium .ec-testimonial,
.ec-inner-premium .ec-faq-item {
  border-color: rgba(11, 99, 206, 0.1);
  box-shadow: 0 22px 60px rgba(7, 22, 44, 0.08);
}

.ec-contact-form .gform_wrapper {
  background: #ffffff;
  border: 1px solid rgba(11, 99, 206, 0.12);
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(7, 22, 44, 0.12);
  padding: clamp(22px, 4vw, 38px);
}

.ec-contact-form .gform_fields {
  column-gap: 18px !important;
  row-gap: 18px !important;
}

.ec-contact-form .gfield_label {
  color: #0b1f3a;
  font-size: 13px;
  font-weight: 850;
}

.ec-contact-form input[type="text"],
.ec-contact-form input[type="email"],
.ec-contact-form input[type="tel"],
.ec-contact-form select,
.ec-contact-form textarea {
  background: #f7fbff;
  border: 1px solid #d7e6f6;
  border-radius: 14px;
  box-shadow: none;
  min-height: 48px;
  padding: 12px 14px;
  width: 100%;
}

.ec-contact-form textarea {
  min-height: 130px;
}

.ec-contact-form .gform_button,
.ec-contact-form input[type="submit"] {
  background: linear-gradient(135deg, #0b63ce, #088bff);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(11, 99, 206, 0.22);
  color: #fff;
  cursor: pointer;
  font-weight: 850;
  min-height: 52px;
  padding: 14px 26px;
}

.ec-contact-form .gform_button:hover,
.ec-contact-form input[type="submit"]:hover {
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .ec-site-header::before,
  .ec-site-header.is-transparent::before {
    background: rgba(255, 255, 255, 0.98) !important;
    opacity: 1 !important;
  }

  .ec-primary-nav {
    left: 14px;
    right: 14px;
    width: auto;
  }

  .ec-inner-hero.ec-hero {
    min-height: auto !important;
    padding-top: 104px !important;
    text-align: left;
  }

  .ec-inner-hero .ec-hero__image {
    height: auto;
    min-height: 260px;
  }
}

@media (max-width: 640px) {
  .ec-inner-hero h1 {
    font-size: clamp(32px, 11vw, 44px);
  }

  .ec-inner-hero .ec-buttons {
    align-items: stretch;
    flex-direction: column;
  }

  .ec-inner-hero .ec-button {
    width: 100%;
  }
}

/* Premium corporate footer refinements. */
.ec-footer-builder {
  background:
    radial-gradient(circle at 10% 10%, rgba(34, 199, 169, 0.16), transparent 32%),
    radial-gradient(circle at 88% 18%, rgba(11, 99, 206, 0.22), transparent 34%),
    linear-gradient(135deg, #07162c 0%, #0b1f3a 48%, #071827 100%);
  color: var(--ec-footer-color, #e6eef8);
  overflow: hidden;
  position: relative;
}

.ec-footer-builder::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  inset: 0;
  opacity: 0.45;
  pointer-events: none;
  position: absolute;
}

.ec-footer-builder > .container,
.ec-footer-builder__bottom {
  position: relative;
  z-index: 1;
}

.ec-footer-builder__glow {
  background: linear-gradient(90deg, #0b63ce, #22c7a9, #f5a623);
  border-radius: 999px;
  height: 3px;
  margin-bottom: 42px;
  max-width: 100%;
  opacity: 0.95;
}

.ec-footer-builder__grid {
  align-items: start;
}

.ec-footer-builder__column {
  min-width: 0;
}

.ec-footer-builder__block h3,
.ec-site-footer__column h3 {
  color: #fff;
  font-size: 15px;
  font-weight: 850;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.ec-footer-builder__block--text .ec-site-footer__content,
.ec-footer-builder__block--text .ec-site-footer__content p {
  color: rgba(230, 238, 248, 0.82);
  font-size: 15px;
  line-height: 1.75;
}

.ec-footer-builder__image img {
  background: rgba(255, 255, 255, 0.94);
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
  padding: 10px 12px;
}

.ec-footer-builder .ec-site-footer__links {
  gap: 11px;
}

.ec-footer-builder .ec-site-footer__links a,
.ec-footer-builder .ec-site-footer__menu a,
.ec-footer-builder__legal > a {
  align-items: center;
  color: rgba(230, 238, 248, 0.78);
  display: inline-flex;
  gap: 8px;
  line-height: 1.35;
  position: relative;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.ec-footer-builder .ec-site-footer__links a::before {
  background: linear-gradient(135deg, #0b63ce, #22c7a9);
  border-radius: 999px;
  content: "";
  height: 6px;
  opacity: 0.9;
  transition: transform 180ms ease;
  width: 6px;
}

.ec-footer-builder .ec-site-footer__links a:hover,
.ec-footer-builder .ec-site-footer__menu a:hover,
.ec-footer-builder__legal > a:hover {
  color: #fff;
  transform: translateX(4px);
}

.ec-footer-builder .ec-site-footer__links a:hover::before {
  transform: scale(1.45);
}

.ec-footer-builder .ec-site-footer__contact {
  gap: 14px;
  margin-top: 0;
}

.ec-site-footer__contact-item {
  align-items: flex-start;
  color: rgba(230, 238, 248, 0.82) !important;
  display: grid;
  gap: 12px;
  grid-template-columns: 36px minmax(0, 1fr);
  line-height: 1.55;
  text-decoration: none;
}

.ec-site-footer__contact-item i {
  align-items: center;
  background: rgba(11, 99, 206, 0.22);
  border: 1px solid rgba(96, 165, 250, 0.24);
  border-radius: 12px;
  color: #60a5fa;
  display: inline-flex;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.ec-site-footer__contact-item:hover {
  color: #fff !important;
}

.ec-footer-builder .ec-site-footer__social {
  gap: 11px;
  margin-top: 18px;
}

.ec-footer-builder .ec-site-footer__social a {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.ec-footer-builder .ec-site-footer__social a:hover {
  background: linear-gradient(135deg, #0b63ce, #22c7a9);
  border-color: transparent;
  color: #fff;
  transform: translateY(-3px);
}

.ec-footer-builder__newsletter {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
  padding: 10px;
}

.ec-footer-builder__newsletter input {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
  min-width: 0;
}

.ec-footer-builder__newsletter input:focus {
  border-color: rgba(96, 165, 250, 0.8);
  box-shadow: 0 0 0 4px rgba(11, 99, 206, 0.14);
  outline: 0;
}

.ec-footer-builder__newsletter .ec-button {
  border-radius: 999px;
  flex: 0 0 auto;
  min-height: 46px;
  white-space: nowrap;
}

.ec-footer-builder__bottom {
  backdrop-filter: blur(18px);
  background: rgba(0, 0, 0, 0.14);
  border-top-color: rgba(255, 255, 255, 0.1);
}

.ec-footer-builder__bottom-inner {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
}

.ec-footer-builder__legal,
.ec-site-footer__menu {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ec-footer-builder__legal .ec-site-footer__menu {
  display: contents;
}

.ec-footer-builder__bottom--center .ec-footer-builder__bottom-inner {
  justify-content: space-between;
  text-align: left;
}

.ec-back-to-top {
  background: linear-gradient(135deg, #0b63ce, #22c7a9);
  box-shadow: 0 16px 36px rgba(11, 99, 206, 0.28);
  transition: opacity 180ms ease, transform 180ms ease;
}

.ec-back-to-top:hover {
  transform: translateY(-3px);
}

@media (max-width: 900px) {
  .ec-footer-builder__bottom-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .ec-footer-builder__legal,
  .ec-site-footer__menu {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .ec-footer-builder__glow {
    margin-bottom: 30px;
  }

  .ec-footer-builder__newsletter {
    border-radius: 18px;
  }

  .ec-footer-builder__newsletter .ec-button {
    width: 100%;
  }
}

/* Premium enterprise homepage. */
.ec-premium-home-shell.ec-section {
  background: #f7fbff;
  padding: 0;
}

.ec-premium-home-shell > .ec-container-full {
  padding-left: 0;
  padding-right: 0;
}

.ep-home {
  background: #f7fbff;
  color: #132238;
  overflow: hidden;
}

.ep-container {
  margin-inline: auto;
  max-width: 1240px;
  padding-inline: clamp(20px, 4vw, 42px);
  position: relative;
  z-index: 2;
}

.ep-section {
  padding-block: clamp(72px, 8vw, 118px);
  position: relative;
}

.ep-section--tight {
  padding-block: clamp(48px, 6vw, 76px);
}

.ep-kicker {
  align-items: center;
  color: #0b63ce;
  display: inline-flex;
  font-size: 13px;
  font-weight: 850;
  gap: 10px;
  letter-spacing: .12em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.ep-kicker::before {
  background: linear-gradient(135deg, #0b63ce, #22c7a9);
  border-radius: 999px;
  content: "";
  height: 8px;
  width: 8px;
}

.ep-heading {
  color: #07162c;
  font-size: clamp(34px, 5vw, 66px);
  letter-spacing: -0.055em;
  line-height: .98;
  margin: 0;
}

.ep-heading--section {
  font-size: clamp(30px, 3.8vw, 48px);
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.ep-lead {
  color: #52627a;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.72;
  margin: 22px 0 0;
  max-width: 720px;
}

.ep-btns {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.ep-btn {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 850;
  gap: 10px;
  min-height: 52px;
  padding: 14px 22px;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.ep-btn--primary {
  background: linear-gradient(135deg, #0b63ce, #088bff);
  box-shadow: 0 18px 36px rgba(11, 99, 206, .25);
  color: #fff !important;
}

.ep-btn--ghost {
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(11, 99, 206, .14);
  color: #0b1f3a !important;
}

.ep-btn:hover {
  transform: translateY(-3px);
}

.ep-hero {
  background:
    radial-gradient(circle at 15% 10%, rgba(34, 199, 169, .22), transparent 28%),
    radial-gradient(circle at 85% 22%, rgba(11, 99, 206, .25), transparent 32%),
    linear-gradient(135deg, #f8fbff 0%, #edf6ff 48%, #f7fbff 100%);
  min-height: 640px;
  overflow: hidden;
  padding: clamp(64px, 6vw, 92px) 0 clamp(48px, 6vw, 72px);
  position: relative;
}

.ep-hero::before,
.ep-hero::after {
  border: 1px solid rgba(11, 99, 206, .12);
  border-radius: 999px;
  content: "";
  filter: blur(.1px);
  position: absolute;
}

.ep-hero::before {
  animation: epFloat 12s ease-in-out infinite;
  height: 420px;
  right: -160px;
  top: 130px;
  width: 420px;
}

.ep-hero::after {
  animation: epFloat 15s ease-in-out infinite reverse;
  bottom: 30px;
  height: 320px;
  left: -120px;
  width: 320px;
}

.ep-particles {
  background-image: radial-gradient(rgba(11,99,206,.2) 1px, transparent 1px);
  background-size: 28px 28px;
  inset: 0;
  opacity: .42;
  pointer-events: none;
  position: absolute;
}

.ep-hero-grid {
  align-items: center;
  display: grid;
  gap: clamp(34px, 5vw, 72px);
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
}

.ep-hero-panel {
  position: relative;
}

.ep-hero-visual {
  min-height: 610px;
  position: relative;
}

.ep-hero-visual__image {
  border-radius: 34px;
  box-shadow: 0 36px 90px rgba(7, 22, 44, .2);
  height: 590px;
  object-fit: cover;
  position: absolute;
  right: 0;
  top: 0;
  width: min(82%, 570px);
}

.ep-orbit {
  animation: epPulse 2.8s ease-in-out infinite;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(11,99,206,.12);
  border-radius: 50%;
  box-shadow: 0 20px 55px rgba(7,22,44,.12);
  height: 86px;
  left: 5%;
  position: absolute;
  top: 185px;
  width: 86px;
}

.ep-floating-card {
  animation: epFloat 9s ease-in-out infinite;
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(11,99,206,.12);
  border-radius: 22px;
  box-shadow: 0 22px 60px rgba(7, 22, 44, .14);
  display: grid;
  gap: 14px;
  grid-template-columns: 54px minmax(0, 1fr);
  max-width: 470px;
  padding: 20px;
  position: absolute;
}

.ep-floating-card i,
.ep-mini-icon {
  align-items: center;
  background: linear-gradient(135deg, #0b63ce, #22c7a9);
  border-radius: 16px;
  color: #fff;
  display: inline-flex;
  font-size: 22px;
  height: 54px;
  justify-content: center;
  width: 54px;
}

.ep-floating-card span {
  color: #7a8698;
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
}

.ep-floating-card strong {
  color: #07162c;
  display: block;
  font-size: 18px;
  line-height: 1.35;
}

.ep-floating-card--one {
  left: 0;
  top: 250px;
}

.ep-floating-card--two {
  animation-delay: -2s;
  bottom: 110px;
  right: 110px;
}

.ep-play {
  align-items: center;
  background: #fff;
  border: 0;
  border-radius: 999px;
  box-shadow: 0 18px 50px rgba(11, 99, 206, .2);
  color: #0b63ce;
  display: inline-flex;
  font-weight: 850;
  gap: 12px;
  padding: 10px 18px 10px 10px;
}

.ep-play i {
  align-items: center;
  background: #0b63ce;
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.ep-hero-stats {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 42px;
}

.ep-stat {
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(11, 99, 206, .1);
  border-radius: 20px;
  box-shadow: 0 16px 44px rgba(7,22,44,.08);
  padding: 18px;
}

.ep-stat strong {
  color: #07162c;
  display: block;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -.04em;
}

.ep-stat span {
  color: #5a6b80;
  display: block;
  font-size: 13px;
  font-weight: 750;
  margin-top: 4px;
}

.ep-trust-strip {
  background: #fff;
  border-block: 1px solid #e5eef8;
  padding: 24px 0;
}

.ep-logo-row {
  align-items: center;
  display: grid;
  gap: 18px;
  grid-template-columns: 190px repeat(6, minmax(0, 1fr));
}

.ep-logo-row p {
  color: #64748b;
  font-weight: 850;
  margin: 0;
}

.ep-logo-chip {
  align-items: center;
  background: #f7fbff;
  border: 1px solid #e5eef8;
  border-radius: 16px;
  color: #26364a;
  display: flex;
  font-size: 13px;
  font-weight: 850;
  justify-content: center;
  min-height: 58px;
  padding: 12px;
}

.ep-logo-chip img {
  display: block;
  max-height: 34px;
  max-width: 140px;
  object-fit: contain;
}

.ep-text-link {
  align-items: center;
  color: #0b63ce;
  display: inline-flex;
  font-weight: 850;
  gap: 8px;
  margin-top: 18px;
  text-decoration: none;
}

.ep-text-link:hover {
  color: #084f9f;
}

.ep-split-head {
  align-items: end;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, .95fr) minmax(0, .75fr);
  margin-bottom: 42px;
}

.ep-journey {
  background: #07162c;
  color: #fff;
}

.ep-journey .ep-heading,
.ep-journey .ep-heading--section {
  color: #fff;
}

.ep-journey .ep-lead {
  color: rgba(255,255,255,.72);
}

.ep-flow {
  align-items: center;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 34px;
  position: relative;
}

.ep-flow::before {
  background: linear-gradient(90deg, #0b63ce, #22c7a9, #f5a623);
  content: "";
  display: none;
  height: 3px;
  left: 10%;
  position: absolute;
  right: 10%;
  top: 50%;
}

.ep-flow-step {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 18px;
  position: relative;
  text-align: center;
  z-index: 1;
}

.ep-flow-step:not(:last-child)::after {
  background: linear-gradient(90deg, #0b63ce, #22c7a9);
  content: "";
  height: 3px;
  left: 100%;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
}

.ep-flow-step:nth-child(2)::after {
  background: linear-gradient(90deg, #22c7a9, #8ac77a);
}

.ep-flow-step:nth-child(3)::after {
  background: linear-gradient(90deg, #8ac77a, #f5a623);
}

.ep-solution-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ep-solution-card,
.ep-feature-card,
.ep-case-card,
.ep-ai-card,
.ep-testimonial-card,
.ep-insight-card,
.ep-product-node,
.ep-industry-panel {
  border: 1px solid rgba(11, 99, 206, .12);
  border-radius: 26px;
  box-shadow: 0 22px 55px rgba(7, 22, 44, .08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.ep-solution-card {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.12);
  color: #fff;
  overflow: hidden;
  padding: 22px;
  position: relative;
}

.ep-solution-card::after {
  background: linear-gradient(135deg, rgba(11,99,206,.55), rgba(34,199,169,.38));
  content: "";
  inset: auto 0 0;
  height: 4px;
  position: absolute;
  transform: scaleX(.25);
  transform-origin: left;
  transition: transform 220ms ease;
}

.ep-solution-card:hover,
.ep-feature-card:hover,
.ep-case-card:hover,
.ep-ai-card:hover,
.ep-testimonial-card:hover,
.ep-insight-card:hover,
.ep-product-node:hover {
  box-shadow: 0 32px 70px rgba(7, 22, 44, .15);
  transform: translateY(-8px);
}

.ep-solution-card:hover::after {
  transform: scaleX(1);
}

.ep-solution-card i,
.ep-feature-card i,
.ep-ai-card i,
.ep-product-node i {
  align-items: center;
  background: linear-gradient(135deg, #0b63ce, #22c7a9);
  border-radius: 16px;
  color: #fff;
  display: inline-flex;
  font-size: 22px;
  height: 52px;
  justify-content: center;
  margin-bottom: 18px;
  width: 52px;
}

.ep-solution-card h3,
.ep-feature-card h3,
.ep-ai-card h3,
.ep-case-card h3,
.ep-insight-card h3 {
  color: inherit;
  font-size: 20px;
  letter-spacing: -.025em;
  margin: 0 0 10px;
}

.ep-solution-card p,
.ep-feature-card p,
.ep-ai-card p,
.ep-case-card p,
.ep-insight-card p,
.ep-testimonial-card p {
  color: inherit;
  line-height: 1.65;
  margin: 0;
  opacity: .76;
}

.ep-card-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ep-feature-card {
  background: rgba(255,255,255,.78);
  overflow: hidden;
  padding: 26px;
  position: relative;
}

.ep-feature-card::before {
  color: rgba(11,99,206,.08);
  content: attr(data-number);
  font-size: 74px;
  font-weight: 900;
  line-height: 1;
  position: absolute;
  right: 18px;
  top: 10px;
}

.ep-industries {
  background:
    radial-gradient(circle at 10% 20%, rgba(11, 99, 206, .08), transparent 30%),
    linear-gradient(180deg, #fff, #f7fbff);
}

.ep-industry-layout {
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(230px, 300px) minmax(0, 1fr);
  margin-top: 34px;
}

.ep-industry-tabs {
  display: grid;
  gap: 12px;
  position: sticky;
  top: 110px;
}

.ep-industry-tab {
  align-items: center;
  background: #fff;
  border: 1px solid #dce9f7;
  border-radius: 20px;
  box-shadow: 0 14px 34px rgba(7, 22, 44, .04);
  color: #10213a;
  cursor: pointer;
  display: flex;
  font-weight: 850;
  gap: 12px;
  min-height: 51px;
  padding: 6px 20px;
  position: relative;
  text-align: left;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.ep-industry-tab::after {
  background: linear-gradient(180deg, #22c7a9, #f5a623);
  border-radius: 999px;
  content: "";
  height: 0;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  transition: height 180ms ease;
  width: 4px;
}

.ep-industry-tab i {
  align-items: center;
  background: #eef6ff;
  border-radius: 12px;
  color: #0b63ce;
  display: inline-flex;
  height: 34px;
  justify-content: center;
  min-width: 34px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
  width: 34px;
}

.ep-industry-tab.is-active,
.ep-industry-tab:hover {
  background: linear-gradient(135deg, #0b63ce, #088bff);
  border-color: rgba(8, 139, 255, .55);
  box-shadow: 0 22px 46px rgba(11, 99, 206, .18);
  color: #fff;
  transform: translateX(6px);
}

.ep-industry-tab.is-active::after,
.ep-industry-tab:hover::after {
  height: 38px;
}

.ep-industry-tab.is-active i,
.ep-industry-tab:hover i {
  background: rgba(255, 255, 255, .18);
  color: #fff;
  transform: scale(1.06);
}

.ep-industry-panel {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(244, 249, 255, .92));
  display: none;
  gap: 32px;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .85fr);
  overflow: hidden;
  padding: 32px;
  position: relative;
}

.ep-industry-panel::before {
  background: linear-gradient(135deg, rgba(11, 99, 206, .14), rgba(34, 199, 169, .12));
  border-radius: 999px;
  content: "";
  height: 190px;
  position: absolute;
  right: -80px;
  top: -90px;
  width: 190px;
}

.ep-industry-panel.is-active {
  animation: epFadeUp 320ms ease both;
  display: grid;
}

.ep-industry-panel img,
.ep-case-card img,
.ep-testimonial-card img,
.ep-insight-card img {
  border-radius: 22px;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  width: 100%;
}

.ep-industry-panel > div,
.ep-industry-panel img {
  position: relative;
  z-index: 1;
}

.ep-panel-stats {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 24px;
}

.ep-panel-stats div {
  background: #f4f9ff;
  border: 1px solid #e2edf8;
  border-radius: 16px;
  padding: 16px;
}

.ep-panel-stats strong {
  color: #0b63ce;
  display: block;
  font-size: 24px;
}

.ep-ecosystem {
  background: #fff;
}

.ep-product-web {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  position: relative;
}

.ep-product-web::before {
  background:
    linear-gradient(90deg, transparent, rgba(11,99,206,.18), transparent),
    linear-gradient(0deg, transparent, rgba(34,199,169,.14), transparent);
  content: "";
  inset: 13% 8%;
  pointer-events: none;
  position: absolute;
}

.ep-product-node {
  background: #fff;
  padding: 24px;
  position: relative;
  z-index: 1;
}

.ep-timeline {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 38px;
}

.ep-time-step {
  background: #fff;
  border: 1px solid #e2edf8;
  border-radius: 22px;
  padding: 22px;
  position: relative;
}

.ep-time-step::before {
  background: linear-gradient(135deg, #0b63ce, #22c7a9);
  border-radius: 999px;
  color: #fff;
  content: attr(data-step);
  display: grid;
  font-weight: 900;
  height: 38px;
  place-items: center;
  width: 38px;
}

.ep-metrics {
  background: linear-gradient(135deg, #07162c, #0b1f3a);
  color: #fff;
}

.ep-metrics .ep-heading--section {
  color: #fff;
}

.ep-metric-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 34px;
}

.ep-metric {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  padding: 28px;
}

.ep-metric strong {
  color: #fff;
  display: block;
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -.05em;
}

.ep-case-grid,
.ep-testimonial-grid,
.ep-insight-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ep-insight-grid {
  align-items: stretch;
  gap: 28px;
}

.ep-case-card,
.ep-testimonial-card,
.ep-insight-card {
  background: #fff;
  overflow: hidden;
}

.ep-insight-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  position: relative;
}

.ep-insight-card::before {
  background: linear-gradient(90deg, #0b63ce, #22c7a9, #f5a623);
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleX(.25);
  transform-origin: left;
  transition: transform 220ms ease;
  z-index: 2;
}

.ep-insight-card:hover::before {
  transform: scaleX(1);
}

.ep-insight-card img {
  border-radius: 0;
  height: 230px;
  min-height: 0;
  object-fit: cover;
}

.ep-case-card__body,
.ep-testimonial-card__body,
.ep-insight-card__body {
  padding: 24px;
}

.ep-insight-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 26px;
}

.ep-insight-card__body .ep-kicker {
  align-self: flex-start;
  background: #eef6ff;
  border-radius: 999px;
  color: #0b63ce;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1;
  opacity: 1;
  padding: 9px 12px;
  text-transform: uppercase;
}

.ep-insight-card__body .ep-text-link {
  margin-top: auto;
}

.ep-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
}

.ep-tags span {
  background: #eef6ff;
  border-radius: 999px;
  color: #0b63ce;
  font-size: 12px;
  font-weight: 850;
  padding: 7px 10px;
}

.ep-testimonial-card__media {
  position: relative;
}

.ep-video-dot {
  align-items: center;
  background: #fff;
  border-radius: 999px;
  bottom: 18px;
  box-shadow: 0 18px 40px rgba(7,22,44,.18);
  color: #0b63ce;
  display: inline-flex;
  height: 56px;
  justify-content: center;
  position: absolute;
  right: 18px;
  width: 56px;
}

.ep-stars {
  color: #f5a623;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.ep-ai {
  background:
    radial-gradient(circle at 20% 20%, rgba(34,199,169,.2), transparent 28%),
    radial-gradient(circle at 80% 30%, rgba(11,99,206,.2), transparent 30%),
    #07162c;
  color: #fff;
}

.ep-ai .ep-heading--section,
.ep-ai .ep-lead {
  color: #fff;
}

.ep-ai-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 34px;
}

.ep-ai-card {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.14);
  color: #fff;
  padding: 26px;
}

.ep-cta-final {
  background:
    radial-gradient(circle at 90% 20%, rgba(34,199,169,.28), transparent 24%),
    linear-gradient(135deg, #0b63ce, #07162c);
  color: #fff;
  overflow: hidden;
  padding-block: clamp(70px, 8vw, 110px);
}

.ep-cta-final .ep-heading--section,
.ep-cta-final .ep-lead {
  color: #fff;
}

.ec-events--premium {
  --ec-events-accent: var(--ec-accent);
  --ec-events-button-bg: var(--ec-primary);
  --ec-events-button-text: #fff;
  --ec-events-card-bg: #fff;
  background:
    radial-gradient(circle at 12% 8%, rgba(0, 93, 170, .08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.ec-events__header {
  margin: 0 auto clamp(32px, 4vw, 52px);
  max-width: 860px;
  text-align: center;
}

.ec-events__intro {
  color: #4b5f78;
  font-size: clamp(16px, 1.4vw, 18px);
}

.ec-events-tabs {
  align-items: center;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(0, 93, 170, .14);
  border-radius: 999px;
  box-shadow: 0 18px 48px rgba(16, 42, 67, .09);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 0 auto clamp(28px, 3vw, 42px);
  max-width: max-content;
  padding: 8px;
}

.ec-events-tabs__item {
  border-radius: 999px;
  color: var(--ec-secondary);
  font-size: 14px;
  font-weight: 800;
  padding: 11px 18px;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.ec-events-tabs__item:hover,
.ec-events-tabs__item.is-active {
  background: linear-gradient(135deg, var(--ec-primary), #0078d4);
  color: #fff;
  transform: translateY(-1px);
}

.ec-events-grid {
  display: grid;
  gap: clamp(22px, 2.6vw, 34px);
}

.ec-events-grid--1 {
  grid-template-columns: 1fr;
}

.ec-events-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ec-events-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ec-events-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ec-event-card {
  background: var(--ec-events-card-bg);
  border: 1px solid rgba(0, 93, 170, .12);
  border-radius: var(--ec-radius, 16px);
  box-shadow: 0 18px 48px rgba(16, 42, 67, .1);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.ec-event-card:hover {
  border-color: color-mix(in srgb, var(--ec-events-accent) 45%, transparent);
  box-shadow: 0 26px 70px rgba(16, 42, 67, .16);
  transform: translateY(-5px);
}

.ec-events--bordered .ec-event-card {
  box-shadow: none;
}

.ec-events--soft .ec-event-card,
.ec-events--featured .ec-event-card {
  background: linear-gradient(180deg, #fff, rgba(0, 93, 170, .035));
}

.ec-event-card--featured {
  border-color: color-mix(in srgb, var(--ec-events-accent) 55%, transparent);
}

.ec-event-card.is-filter-hidden {
  display: none;
}

.ec-event-card__media {
  aspect-ratio: 16 / 9;
  background: #eaf1f8;
  display: block;
  overflow: hidden;
}

.ec-event-card__media img {
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
  width: 100%;
}

.ec-event-card:hover .ec-event-card__media img {
  transform: scale(1.04);
}

.ec-event-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(20px, 2.1vw, 28px);
}

.ec-event-card__meta {
  align-items: flex-start;
  color: var(--ec-secondary);
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  font-weight: 800;
  gap: 8px;
  letter-spacing: .01em;
  line-height: 1.35;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.ec-event-card__type,
.ec-event-card__featured,
.ec-event-card__countdown {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  padding: 7px 10px;
}

.ec-event-card__type {
  background: rgba(0, 93, 170, .1);
  color: var(--ec-primary);
}

.ec-event-card__featured {
  background: color-mix(in srgb, var(--ec-events-accent) 18%, #fff);
  color: var(--ec-secondary);
}

.ec-event-card__countdown {
  background: rgba(16, 42, 67, .07);
  color: var(--ec-secondary);
}

.ec-event-card__date {
  color: var(--ec-secondary);
  flex-basis: 100%;
  font-size: 13px;
  padding-top: 2px;
}

.ec-event-card h3 {
  font-size: clamp(19px, 1.6vw, 24px);
  line-height: 1.22;
  margin: 0 0 14px;
}

.ec-event-card h3 a {
  color: var(--ec-secondary);
  text-decoration: none;
}

.ec-event-card h3 a:hover {
  color: var(--ec-primary);
}

.ec-event-card p {
  color: var(--ec-text);
  display: -webkit-box;
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 18px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.ec-event-card__details {
  color: #52647a;
  display: grid;
  font-size: 14px;
  gap: 8px;
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
}

.ec-event-card__details li {
  align-items: center;
  display: flex;
  gap: 8px;
}

.ec-event-card__details i {
  color: var(--ec-primary);
}

.ec-event-card__button,
.ec-event-single__cta {
  align-items: center;
  background: linear-gradient(135deg, var(--ec-events-button-bg), #0078d4);
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--ec-events-button-text);
  display: inline-flex;
  font-size: 15px;
  font-weight: 800;
  justify-content: center;
  letter-spacing: .02em;
  margin-top: auto;
  min-height: 50px;
  padding: 13px 22px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
  width: 100%;
}

.ec-event-card__button:hover,
.ec-event-single__cta:hover {
  background: linear-gradient(135deg, var(--ec-secondary), var(--ec-primary));
  box-shadow: 0 14px 34px rgba(0, 93, 170, .22);
  color: #fff;
  transform: translateY(-2px);
}

.ec-events__footer {
  display: flex;
  justify-content: center;
  margin-top: clamp(28px, 4vw, 46px);
}

.ec-events__view-all {
  min-width: 190px;
}

.ec-events-archive-hero {
  background:
    radial-gradient(circle at 15% 18%, rgba(247, 148, 29, .18), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(0, 120, 212, .22), transparent 32%),
    linear-gradient(135deg, #071a31 0%, var(--ec-secondary) 46%, #004f91 100%);
  color: #fff;
  overflow: hidden;
  position: relative;
}

.ec-events-archive-hero::before {
  background-image: radial-gradient(rgba(255,255,255,.16) 1px, transparent 1px);
  background-size: 26px 26px;
  content: "";
  inset: 0;
  opacity: .32;
  position: absolute;
}

.ec-events-archive-hero .container,
.ec-events-archive-hero .container-fluid {
  position: relative;
  z-index: 1;
}

.ec-events-archive-hero h1,
.ec-events-archive-hero .ec-content,
.ec-events-archive-hero .ec-eyebrow {
  color: #fff;
}

.ec-events-archive-hero .ec-hero__image {
  border-radius: 28px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .28);
  min-height: 420px;
  object-fit: cover;
  width: 100%;
}

.ec-events-featured-section {
  background:
    linear-gradient(180deg, #fff 0%, rgba(0, 93, 170, .045) 100%);
}

.ec-events-featured-section .ec-events-grid--1 .ec-event-card {
  display: grid;
  grid-template-columns: minmax(320px, .92fr) minmax(0, 1fr);
}

.ec-events-featured-section .ec-event-card__media {
  aspect-ratio: auto;
  min-height: 360px;
}

.ec-events-featured-section .ec-event-card__body {
  padding: clamp(28px, 4vw, 52px);
}

.ec-events-upcoming-section {
  background:
    radial-gradient(circle at 8% 0%, rgba(0, 93, 170, .09), transparent 30%),
    #f7fbff;
}

.ec-events-why-attend .ec-card {
  border-color: rgba(0, 93, 170, .12);
  box-shadow: 0 18px 44px rgba(16, 42, 67, .08);
}

.ec-events-why-attend .ec-card:hover {
  transform: translateY(-5px);
}

.ec-events-recording-cta {
  background: linear-gradient(135deg, var(--ec-secondary), #005daa);
}

.ec-events-recording-cta .ec-cta__inner {
  background:
    radial-gradient(circle at 85% 20%, rgba(247, 148, 29, .28), transparent 28%),
    rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 24px 80px rgba(0,0,0,.18);
}

.ec-events-recording-cta h2,
.ec-events-recording-cta .ec-content {
  color: #fff;
}

.ec-events__empty {
  background: #fff;
  border: 1px dashed rgba(15,35,55,.18);
  border-radius: 14px;
  color: #52647a;
  padding: 28px;
  text-align: center;
}

.ec-event-single-hero {
  background: linear-gradient(135deg, rgba(7, 22, 44, .92), rgba(11, 99, 206, .76));
  color: #fff;
  min-height: clamp(460px, 54vh, 620px);
  overflow: hidden;
  padding: clamp(130px, 13vw, 180px) 0 clamp(70px, 9vw, 110px);
  position: relative;
}

.ec-event-single-hero__media {
  inset: 0;
  position: absolute;
}

.ec-event-single-hero__media img {
  height: 100%;
  object-fit: cover;
  opacity: .32;
  width: 100%;
}

.ec-event-single-hero .container {
  position: relative;
  z-index: 2;
}

.ec-event-single__type {
  background: var(--ec-primary);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  margin-bottom: 18px;
  padding: 8px 14px;
  text-transform: uppercase;
}

.ec-event-single-hero h1 {
  color: #fff;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.02;
  margin-bottom: 24px;
  max-width: 980px;
}

.ec-event-single__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-bottom: 30px;
}

.ec-event-single__meta span {
  align-items: center;
  color: rgba(255,255,255,.9);
  display: inline-flex;
  gap: 9px;
  font-weight: 700;
}

.ec-event-single-layout {
  align-items: start;
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
}

.ec-event-single-image {
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(15,35,55,.12);
  margin-bottom: 34px;
  overflow: hidden;
}

.ec-event-single-image img {
  aspect-ratio: 16 / 8;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.ec-event-registration {
  background: #fff;
  border: 1px solid rgba(15,35,55,.1);
  border-radius: 22px;
  box-shadow: 0 20px 70px rgba(15,35,55,.1);
  padding: clamp(24px, 3vw, 34px);
  position: sticky;
  top: 120px;
}

.ec-event-registration h2 {
  font-size: 24px;
  margin-bottom: 8px;
}

.ec-event-registration p {
  color: #52647a;
}

@media (max-width: 1100px) {
  .ec-events-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ec-events-featured-section .ec-events-grid--1 .ec-event-card {
    grid-template-columns: 1fr;
  }

  .ec-events-featured-section .ec-event-card__media {
    aspect-ratio: 16 / 9;
    min-height: 0;
  }

  .ec-event-single-layout {
    grid-template-columns: 1fr;
  }

  .ec-event-registration {
    position: static;
  }
}

@media (max-width: 760px) {
  .ec-events-tabs {
    border-radius: 22px;
    justify-content: flex-start;
    max-width: 100%;
  }

  .ec-events-tabs__item {
    flex: 1 1 calc(50% - 8px);
    text-align: center;
  }

  .ec-events-grid,
  .ec-events-grid--2,
  .ec-events-grid--3,
  .ec-events-grid--4 {
    grid-template-columns: 1fr;
  }

  .ec-event-card__button,
  .ec-event-single__cta {
    width: 100%;
  }
}

.ep-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.ep-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes epFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

@keyframes epPulse {
  0%, 100% { transform: scale(1); opacity: .9; }
  50% { transform: scale(1.08); opacity: 1; }
}

@keyframes epFadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1100px) {
  .ep-hero-grid,
  .ep-split-head,
  .ep-industry-layout,
  .ep-industry-panel {
    grid-template-columns: 1fr;
  }

  .ep-hero-visual {
    min-height: 560px;
  }

  .ep-card-grid,
  .ep-solution-grid,
  .ep-product-web,
  .ep-ai-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ep-timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .ep-hero {
    min-height: auto;
    padding-top: 72px;
  }

  .ep-hero-stats,
  .ep-flow,
  .ep-card-grid,
  .ep-solution-grid,
  .ep-product-web,
  .ep-ai-grid,
  .ep-metric-grid,
  .ep-case-grid,
  .ep-testimonial-grid,
  .ep-insight-grid,
  .ep-logo-row,
  .ep-panel-stats,
  .ep-timeline {
    grid-template-columns: 1fr;
  }

  .ep-flow::before,
  .ep-product-web::before {
    display: none;
  }

  .ep-flow-step::after {
    display: none;
  }

  .ep-hero-visual {
    min-height: 490px;
  }

  .ep-hero-visual__image {
    height: 420px;
    width: 100%;
  }

  .ep-floating-card {
    max-width: calc(100% - 24px);
  }

  .ep-floating-card--one {
    left: 12px;
    top: 230px;
  }

  .ep-floating-card--two {
    bottom: 20px;
    right: 12px;
  }
}
