.ecn-core-site{
  --ecn-navy:#0d1527;
  --ecn-navy-2:#111c31;
  --ecn-ink:#111827;
  --ecn-muted:#3f4f66;
  --ecn-soft:#eef3f8;
  --ecn-line:#d4dce8;
  --ecn-white:#ffffff;
  --ecn-blue:#2f80ed;
  --ecn-radius-sm:8px;
  --ecn-radius-md:14px;
  --ecn-radius-lg:20px;
  --ecn-radius-xl:24px;
  --ecn-shadow-soft:0 18px 44px rgba(15,24,42,.08);
  --ecn-shadow-card:0 24px 54px rgba(15,24,42,.14);
  --ecn-shadow-dark:0 24px 70px rgba(0,0,0,.20);
  color:var(--ecn-ink);
  background:#fff;
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

.ecn-core-site,
.ecn-core-site *{
  box-sizing:border-box;
}

.ecn-core-site a{
  color:inherit;
}

.ecn-core-site img{
  display:block;
  max-width:100%;
}

.ecn-core-site :where(a, button, input, textarea):focus-visible{
  outline:3px solid rgba(56,189,248,.95);
  outline-offset:4px;
}

.ecn-skip-link{
  position:fixed;
  left:18px;
  top:18px;
  z-index:999;
  transform:translateY(-140%);
  padding:12px 16px;
  border-radius:999px;
  color:#07111f;
  background:#fff;
  font-weight:900;
  text-decoration:none;
  box-shadow:0 18px 42px rgba(0,0,0,.26);
  transition:transform .2s ease;
}

.ecn-skip-link:focus{
  transform:translateY(0);
}

.ecn-core-site #ecn-services,
.ecn-core-site #ecn-solutions,
.ecn-core-site #ecn-why,
.ecn-core-site #ecn-industries,
.ecn-core-site #ecn-brands,
.ecn-core-site #ecn-technology,
.ecn-core-site #ecn-success,
.ecn-core-site #ecn-faq,
.ecn-core-site #ecn-process,
.ecn-core-site #ecn-contact{
  scroll-margin-top:86px;
}

.ecn-container{
  width:min(1110px, calc(100% - 64px));
  margin:0 auto;
}

.ecn-nav-wrap{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(15,24,42,.96);
  box-shadow:0 10px 30px rgba(8,15,30,.18);
  backdrop-filter:blur(16px);
}

body.admin-bar .ecn-nav-wrap{
  top:32px;
}

.ecn-nav{
  min-height:68px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
}

.ecn-brand{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:#fff;
  text-decoration:none;
  font-size:1rem;
  font-weight:900;
  letter-spacing:.04em;
  text-transform:uppercase;
  white-space:nowrap;
}

.ecn-brand-mark{
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  border:2px solid rgba(255,255,255,.78);
  border-radius:5px;
  font-size:.68rem;
  font-weight:950;
}

.ecn-menu{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:32px;
}

.ecn-menu a{
  color:rgba(255,255,255,.72);
  text-decoration:none;
  font-size:.82rem;
  font-weight:900;
  letter-spacing:.15em;
  text-transform:uppercase;
  transition:color .2s ease;
}

.ecn-menu a:hover{
  color:#fff;
}

.ecn-nav-actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:12px;
}

.ecn-header-phone{
  color:rgba(255,255,255,.76);
  font-size:.86rem;
  font-weight:850;
  text-decoration:none;
  white-space:nowrap;
}

.ecn-header-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:0 18px;
  border-radius:999px;
  color:#fff;
  background:linear-gradient(135deg, var(--ecn-blue), #0ea5e9);
  box-shadow:0 16px 34px rgba(47,128,237,.28);
  font-size:.84rem;
  font-weight:900;
  text-decoration:none;
  white-space:nowrap;
}

.ecn-hero{
  position:relative;
  min-height:calc(100vh - 96px);
  color:#fff;
  background:var(--ecn-navy);
  overflow:hidden;
}

@keyframes ecn-grid-drift{
  from{background-position:0 0, 0 0}
  to{background-position:118px 118px, 118px 118px}
}

@keyframes ecn-scan{
  0%{transform:translateX(-35%) rotate(16deg);opacity:0}
  18%{opacity:.82}
  70%{opacity:.28}
  100%{transform:translateX(135%) rotate(16deg);opacity:0}
}

@keyframes ecn-node-pulse{
  0%,100%{transform:scale(1);opacity:.72}
  50%{transform:scale(1.55);opacity:1}
}

@keyframes ecn-line-flow{
  from{stroke-dashoffset:420}
  to{stroke-dashoffset:0}
}

@keyframes ecn-hero-copy-in{
  from{
    opacity:0;
    transform:translate3d(0, 8px, 0);
  }
  to{
    opacity:1;
    transform:translate3d(0, 0, 0);
  }
}

@keyframes ecn-badge-in{
  from{
    opacity:0;
    transform:translate3d(0, 6px, 0) scale(.985);
  }
  to{
    opacity:1;
    transform:translate3d(0, 0, 0) scale(1);
  }
}

.ecn-language-switch{
  position:relative;
  z-index:2;
  display:inline-flex;
  gap:6px;
  padding:6px;
  flex:0 0 auto;
  border:1px solid rgba(255,255,255,.18);
  border-radius:999px;
  background:rgba(255,255,255,.08);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.10);
  backdrop-filter:blur(16px);
}

.ecn-lang-button{
  min-width:44px;
  min-height:34px;
  border:0;
  border-radius:999px;
  color:rgba(234,242,255,.72);
  background:transparent;
  font:inherit;
  font-size:.74rem;
  font-weight:900;
  letter-spacing:.10em;
  cursor:pointer;
}

.ecn-lang-button.is-active{
  color:#07111f;
  background:#fff;
}

.ecn-hero-slider,
.ecn-hero-slider .swiper-wrapper,
.ecn-hero-slider .swiper-slide,
.ecn-hero-slide{
  min-height:calc(100vh - 96px);
}

.ecn-hero-slide{
  position:relative;
  display:flex;
  align-items:center;
  padding:96px 0 76px;
}

.ecn-hero-slide > img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transform:none;
  filter:saturate(.9) contrast(1.08);
}

.ecn-hero.is-hero-active .swiper-slide-active .ecn-hero-slide > img{
  transform:scale(1.025);
  transition:transform 10s ease-out;
}

.ecn-hero-slide::before,
.ecn-hero-slide::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
}

.ecn-hero-slide::before{
  z-index:1;
  background:
    linear-gradient(90deg, rgba(11,19,35,.96) 0%, rgba(11,19,35,.84) 45%, rgba(11,19,35,.48) 100%),
    linear-gradient(180deg, rgba(11,19,35,.18), rgba(11,19,35,.92));
}

.ecn-hero-slide::after{
  z-index:2;
  background:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size:118px 118px;
  animation:ecn-grid-drift 18s linear infinite;
  animation-play-state:paused;
}

.ecn-hero-depth{
  position:absolute;
  inset:0;
  z-index:3;
  pointer-events:none;
  overflow:hidden;
}

.ecn-hero-depth::before{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  left:-20%;
  width:34%;
  background:linear-gradient(90deg, transparent, rgba(56,189,248,.16), transparent);
  filter:blur(10px);
  animation:ecn-scan 9s ease-in-out infinite;
  animation-play-state:paused;
}

.ecn-topology{
  position:absolute;
  right:max(20px, calc((100vw - 1320px) / 2));
  top:18%;
  width:min(560px, 44vw);
  height:auto;
  opacity:.58;
  filter:drop-shadow(0 0 28px rgba(56,189,248,.28));
}

.ecn-topology path{
  fill:none;
  stroke:rgba(96,165,250,.62);
  stroke-width:1.4;
  stroke-dasharray:12 16;
  animation:ecn-line-flow 13s linear infinite;
  animation-play-state:paused;
}

.ecn-topology circle{
  fill:#dff7ff;
  opacity:.86;
  transform-box:fill-box;
  transform-origin:center;
  animation:ecn-node-pulse 3.8s ease-in-out infinite;
  animation-play-state:paused;
}

.ecn-hero.is-hero-active .ecn-hero-slide::after,
.ecn-hero.is-hero-active .ecn-hero-depth::before,
.ecn-hero.is-hero-active .ecn-topology path,
.ecn-hero.is-hero-active .ecn-topology circle{
  animation-play-state:running;
}

.ecn-topology circle:nth-of-type(2){animation-delay:.55s}
.ecn-topology circle:nth-of-type(3){animation-delay:1.1s}
.ecn-topology circle:nth-of-type(4){animation-delay:1.65s}
.ecn-topology circle:nth-of-type(5){animation-delay:2.2s}

.ecn-hero-content{
  position:relative;
  z-index:3;
}

.ecn-hero-content::before{
  content:"";
  position:absolute;
  z-index:-1;
  left:-34px;
  top:-44px;
  width:min(690px, 92vw);
  height:calc(100% + 88px);
  border:1px solid rgba(255,255,255,.08);
  border-radius:28px;
  background:linear-gradient(135deg, rgba(7,17,31,.44), rgba(7,17,31,.12));
  box-shadow:0 34px 90px rgba(0,0,0,.20);
  backdrop-filter:blur(3px);
  opacity:.72;
}

.ecn-kicker,
.ecn-eyebrow{
  margin:0 0 18px;
  color:#8b96aa;
  font-size:.78rem;
  font-weight:900;
  letter-spacing:.42em;
  text-transform:uppercase;
}

.ecn-kicker{
  color:rgba(255,255,255,.62);
}

.ecn-hero h1{
  margin:0;
  max-width:min(830px, calc(100vw - 500px));
  color:#fff;
  font-size:clamp(4.2rem, 9vw, 8.8rem);
  line-height:.86;
  letter-spacing:-.06em;
  text-transform:uppercase;
}

.ecn-hero h1 span{
  display:block;
  color:rgba(255,255,255,.38);
}

.ecn-hero-copy{
  display:grid;
  grid-template-columns:64px minmax(0, 560px);
  gap:24px;
  align-items:start;
  margin:36px 0 42px;
}

.ecn-hero-copy::before{
  content:"";
  height:1px;
  margin-top:15px;
  background:rgba(255,255,255,.48);
}

.ecn-hero-copy p{
  margin:0;
  color:rgba(255,255,255,.72);
  font-size:1.14rem;
  line-height:1.58;
}

.ecn-hero-badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:-10px 0 28px;
}

.ecn-hero-badges span{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:0 13px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:999px;
  color:rgba(234,242,255,.78);
  background:rgba(255,255,255,.07);
  font-size:.76rem;
  font-weight:850;
  letter-spacing:.08em;
  text-transform:uppercase;
  backdrop-filter:blur(12px);
}

.ecn-hero.is-hero-active .swiper-slide-active .ecn-kicker,
.ecn-hero.is-hero-active .swiper-slide-active .ecn-hero-content h1,
.ecn-hero.is-hero-active .swiper-slide-active .ecn-hero-copy,
.ecn-hero.is-hero-active .swiper-slide-active .ecn-text-link{
  animation:ecn-hero-copy-in .44s cubic-bezier(.2,.8,.2,1) both;
}

.ecn-hero.is-hero-active .swiper-slide-active .ecn-hero-content h1{
  animation-delay:.04s;
}

.ecn-hero.is-hero-active .swiper-slide-active .ecn-hero-copy{
  animation-delay:.10s;
}

.ecn-hero.is-hero-active .swiper-slide-active .ecn-text-link{
  animation-delay:.18s;
}

.ecn-hero.is-hero-active .swiper-slide-active .ecn-hero-badges span{
  animation:ecn-badge-in .34s cubic-bezier(.2,.8,.2,1) both;
}

.ecn-hero.is-hero-active .swiper-slide-active .ecn-hero-badges span:nth-child(1){animation-delay:.14s}
.ecn-hero.is-hero-active .swiper-slide-active .ecn-hero-badges span:nth-child(2){animation-delay:.18s}
.ecn-hero.is-hero-active .swiper-slide-active .ecn-hero-badges span:nth-child(3){animation-delay:.22s}

.ecn-text-link{
  display:inline-flex;
  align-items:center;
  width:max-content;
  min-height:46px;
  padding:0 18px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:999px;
  gap:14px;
  color:rgba(255,255,255,.86);
  background:rgba(255,255,255,.09);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.10);
  text-decoration:none;
  font-size:.8rem;
  font-weight:950;
  letter-spacing:.16em;
  text-transform:uppercase;
  transition:color .2s ease, transform .2s ease, background .2s ease, border-color .2s ease;
}

.ecn-text-link:hover{
  color:#fff;
  transform:translateY(-2px);
  border-color:rgba(255,255,255,.32);
  background:rgba(255,255,255,.13);
}

.ecn-hero-status{
  position:absolute;
  right:40px;
  bottom:28px;
  z-index:5;
  min-width:190px;
  color:rgba(255,255,255,.72);
  font-size:.78rem;
  font-weight:900;
  letter-spacing:.18em;
}

.ecn-progress{
  height:2px;
  margin-top:12px;
  background:rgba(255,255,255,.18);
  overflow:hidden;
}

.ecn-progress span{
  display:block;
  width:0;
  height:100%;
  background:#fff;
  transition:width .12s linear;
}

.ecn-hero-controls{
  position:absolute;
  right:40px;
  bottom:76px;
  z-index:6;
  display:flex;
  gap:10px;
}

.ecn-hero-control{
  display:grid;
  place-items:center;
  width:46px;
  height:46px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:999px;
  color:#fff;
  background:rgba(7,17,31,.62);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.10), 0 18px 42px rgba(0,0,0,.20);
  backdrop-filter:blur(14px);
  cursor:pointer;
  transition:transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.ecn-hero-control:hover{
  transform:translateY(-2px);
  border-color:rgba(255,255,255,.34);
  background:rgba(47,128,237,.72);
  box-shadow:0 18px 46px rgba(47,128,237,.26);
}

.ecn-hero-control svg{
  width:22px;
  height:22px;
  fill:none;
  stroke:currentColor;
  stroke-width:2.2;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.ecn-animate-ready .ecn-reveal{
  opacity:.98;
  transform:translate3d(0, 6px, 0);
  transition:
    opacity var(--ecn-reveal-duration, .28s) cubic-bezier(.2,.8,.2,1),
    transform var(--ecn-reveal-duration, .28s) cubic-bezier(.2,.8,.2,1),
    border-color .20s ease,
    background .20s ease,
    box-shadow .20s ease,
    filter .28s cubic-bezier(.2,.8,.2,1);
  transition-delay:var(--ecn-reveal-delay, 0ms);
  will-change:opacity, transform;
  backface-visibility:hidden;
}

.ecn-animate-ready .ecn-reveal-from-left{
  transform:translate3d(-6px, 0, 0);
}

.ecn-animate-ready .ecn-reveal-from-right{
  transform:translate3d(6px, 0, 0);
}

.ecn-animate-ready .ecn-reveal-soft{
  transform:translate3d(0, 5px, 0);
}

.ecn-animate-ready .ecn-reveal-title{
  transform:translate3d(0, 6px, 0);
}

.ecn-animate-ready .ecn-reveal-zoom{
  transform:translate3d(0, 6px, 0) scale(.996);
}

.ecn-animate-ready .ecn-service-row img.ecn-reveal,
.ecn-animate-ready .ecn-industry-card img.ecn-reveal,
.ecn-animate-ready .ecn-tech-grid img.ecn-reveal{
  transform:translate3d(0, 6px, 0) scale(1.003);
  filter:saturate(.98) contrast(1.02) brightness(.995);
  transition:
    opacity .30s cubic-bezier(.2,.8,.2,1),
    transform .30s cubic-bezier(.2,.8,.2,1),
    filter .30s cubic-bezier(.2,.8,.2,1);
}

.ecn-animate-ready .ecn-reveal.is-visible{
  opacity:1;
  transform:translate3d(0, 0, 0);
}

.ecn-animate-ready .ecn-service-row img.ecn-reveal.is-visible,
.ecn-animate-ready .ecn-industry-card img.ecn-reveal.is-visible,
.ecn-animate-ready .ecn-tech-grid img.ecn-reveal.is-visible{
  transform:translate3d(0, 0, 0) scale(1);
  filter:saturate(1) contrast(1.02) brightness(1);
}

.ecn-animate-ready .ecn-rule.ecn-reveal{
  opacity:1;
  transform:scaleX(0);
  transform-origin:left center;
}

.ecn-animate-ready .ecn-rule.ecn-reveal.is-visible{
  transform:scaleX(1);
}

.ecn-animate-ready .ecn-reveal-zoom.is-visible:hover{
  transform:translate3d(0, -3px, 0) scale(1.004);
}

.ecn-animate-ready .ecn-service-row img.ecn-reveal.is-visible:hover,
.ecn-animate-ready .ecn-industry-card img.ecn-reveal.is-visible:hover,
.ecn-animate-ready .ecn-tech-grid img.ecn-reveal.is-visible:hover{
  transform:translate3d(0, -3px, 0) scale(1.006);
  filter:saturate(1.04) contrast(1.04) brightness(1.01);
}

.ecn-animate-ready :is(.ecn-trust-card,.ecn-dark-card,.ecn-why-card,.ecn-industry-card,[class*="ecn-brand-card"],.ecn-tech-grid article,.ecn-case-card,.ecn-process-grid article,.ecn-faq-item,.ecn-contact-form).ecn-reveal > :not(img){
  opacity:1;
  transform:translate3d(0, 0, 0);
  transition:none;
}

.ecn-animate-ready .ecn-dark-card.ecn-reveal .ecn-card-icon svg *{
  stroke-dasharray:0;
  stroke-dashoffset:0;
  transition:none;
}

.ecn-animate-ready .ecn-dark-card.ecn-reveal.is-visible .ecn-card-icon svg *{
  stroke-dashoffset:0;
}

.ecn-animate-ready .ecn-service-copy.ecn-reveal > *{
  opacity:1;
  transform:translate3d(0, 0, 0);
  transition:none;
}


.ecn-outcome-band{
  padding:42px 0;
  color:#fff;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    #07111f;
  background-size:118px 118px;
  border-top:1px solid rgba(255,255,255,.10);
  border-bottom:1px solid rgba(255,255,255,.10);
}

.ecn-outcome-grid{
  display:grid;
  grid-template-columns:1.2fr repeat(3, minmax(0, 1fr));
  gap:1px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  border-radius:22px;
  background:rgba(255,255,255,.10);
  box-shadow:0 24px 70px rgba(0,0,0,.20);
}

.ecn-outcome-card{
  min-height:154px;
  padding:24px;
  background:rgba(13,27,45,.74);
}

.ecn-outcome-card:first-child{
  background:linear-gradient(135deg, rgba(47,128,237,.24), rgba(56,189,248,.10)), rgba(13,27,45,.82);
}

.ecn-outcome-card small{
  display:block;
  margin-bottom:18px;
  color:rgba(234,242,255,.58);
  font-size:.72rem;
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.ecn-outcome-card strong{
  display:block;
  color:#fff;
  font-size:1.55rem;
  line-height:1.04;
  letter-spacing:-.035em;
}

.ecn-outcome-card p{
  margin:12px 0 0;
  color:rgba(234,242,255,.68);
  line-height:1.58;
}

.ecn-trust-rail{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(190px, 1fr));
  gap:12px;
  margin-top:18px;
}

.ecn-trust-pill{
  min-height:88px;
  padding:18px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  background:rgba(255,255,255,.055);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08);
}

.ecn-trust-pill small{
  display:block;
  margin-bottom:8px;
  color:rgba(234,242,255,.50);
  font-size:.66rem;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.ecn-trust-pill strong{
  display:block;
  color:#fff;
  font-size:.96rem;
  line-height:1.32;
}

.ecn-trust-band{
  padding:34px 0;
  color:#fff;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    #07111f;
  background-size:118px 118px;
  border-top:1px solid rgba(255,255,255,.10);
  border-bottom:1px solid rgba(255,255,255,.10);
}

.ecn-trust-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:16px;
}

.ecn-trust-card{
  min-height:132px;
  padding:24px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:22px;
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
  box-shadow:0 20px 58px rgba(0,0,0,.18);
}

.ecn-trust-card strong{
  display:block;
  color:#fff;
  font-size:clamp(1.55rem, 2.4vw, 2.35rem);
  line-height:1;
  letter-spacing:-.035em;
}

.ecn-trust-card span{
  display:block;
  margin-top:12px;
  color:rgba(234,242,255,.72);
  font-size:1rem;
  line-height:1.52;
}

.ecn-section{
  position:relative;
  isolation:isolate;
  overflow:hidden;
  padding:86px 0;
}

.ecn-section::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  pointer-events:none;
  opacity:0;
  transform:translate3d(0, 8px, 0) scale(1.006);
  transition:opacity .32s cubic-bezier(.2,.8,.2,1), transform .32s cubic-bezier(.2,.8,.2,1);
}

.ecn-section::after{
  content:"";
  position:absolute;
  top:0;
  left:0;
  z-index:0;
  width:100%;
  height:1px;
  pointer-events:none;
  background:linear-gradient(90deg, transparent, rgba(47,128,237,.42), transparent);
  transform:scaleX(0);
  transform-origin:left center;
  opacity:.72;
  transition:transform .28s cubic-bezier(.2,.8,.2,1);
}

.ecn-section.is-section-active::before{
  opacity:1;
  transform:translate3d(0, 0, 0) scale(1);
}

.ecn-section.is-section-active::after{
  transform:scaleX(1);
}

.ecn-light{
  background:
    radial-gradient(circle at 12% 8%, rgba(47,128,237,.07), transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, var(--ecn-soft) 100%);
}

.ecn-light::before{
  background:
    radial-gradient(circle at 78% 18%, rgba(47,128,237,.09), transparent 32%),
    linear-gradient(115deg, transparent 0%, rgba(255,255,255,.42) 42%, transparent 62%);
}

.ecn-dark{
  color:#fff;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    var(--ecn-navy);
  background-size:118px 118px;
}

.ecn-dark::before{
  background:
    radial-gradient(circle at 74% 12%, rgba(56,189,248,.10), transparent 34%),
    linear-gradient(115deg, transparent 0%, rgba(255,255,255,.045) 44%, transparent 64%);
}

.ecn-tech::before{
  background:
    radial-gradient(circle at 86% 18%, rgba(47,128,237,.10), transparent 34%),
    radial-gradient(circle at 10% 90%, rgba(14,165,233,.08), transparent 30%);
}

.ecn-contact::before{
  background:
    radial-gradient(circle at 80% 24%, rgba(14,165,233,.16), transparent 30%),
    radial-gradient(circle at 18% 76%, rgba(47,128,237,.12), transparent 32%);
}

.ecn-section h2{
  margin:0;
  color:var(--ecn-ink);
  font-size:clamp(2.8rem, 6vw, 4.9rem);
  line-height:.92;
  letter-spacing:-.055em;
}

.ecn-dark h2,
.ecn-contact h2{
  color:#fff;
}

.ecn-rule{
  display:block;
  width:96px;
  height:2px;
  margin:26px 0 70px;
  background:currentColor;
  opacity:.82;
}

.ecn-service-row{
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  gap:72px;
  align-items:center;
  min-height:420px;
  padding:44px 0;
}

.ecn-service-row + .ecn-service-row{
  margin-top:18px;
}

.ecn-service-row-flip .ecn-service-copy{
  order:2;
}

.ecn-service-row-flip img{
  order:1;
}

.ecn-service-copy{
  max-width:510px;
}

.ecn-service-number{
  margin:0 0 20px;
  color:#d2d6de;
  font-size:3.8rem;
  line-height:1;
  font-weight:950;
  letter-spacing:-.05em;
}

.ecn-service-copy h3{
  margin:0 0 18px;
  color:var(--ecn-ink);
  font-size:2.18rem;
  line-height:1.02;
  letter-spacing:-.035em;
}

.ecn-service-copy p:last-child{
  margin:0;
  color:#34445a;
  font-size:1rem;
  line-height:1.62;
}

.ecn-service-row img{
  width:100%;
  height:320px;
  object-fit:cover;
  border-radius:4px;
  filter:saturate(.88) contrast(1.05);
}

.ecn-card-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:24px;
}

.ecn-dark-card{
  min-height:274px;
  padding:34px 32px 30px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:var(--ecn-radius-lg);
  background:rgba(255,255,255,.018);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.04);
  transition:border-color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.ecn-dark-card:hover{
  transform:translateY(-3px);
  border-color:rgba(255,255,255,.24);
  background:rgba(255,255,255,.04);
  box-shadow:var(--ecn-shadow-dark);
}

.ecn-card-icon{
  display:grid;
  width:32px;
  height:32px;
  place-items:center;
  margin-bottom:42px;
  color:rgba(255,255,255,.56);
}

.ecn-card-icon svg{
  width:30px;
  height:30px;
  stroke:currentColor;
  fill:none;
  stroke-width:1.7;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.ecn-dark-card h3{
  margin:0 0 16px;
  color:#fff;
  font-size:1.16rem;
  letter-spacing:-.025em;
}

.ecn-dark-card p{
  margin:0;
  color:rgba(255,255,255,.54);
  line-height:1.62;
}

.ecn-why{
  background:
    radial-gradient(circle at 82% 12%, rgba(47,128,237,.08), transparent 34%),
    linear-gradient(180deg, #fbfdff 0%, var(--ecn-soft) 100%);
}

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

.ecn-why-card{
  min-height:300px;
  padding:30px 28px;
  border:1px solid var(--ecn-line);
  border-radius:var(--ecn-radius-lg);
  background:rgba(255,255,255,.84);
  box-shadow:var(--ecn-shadow-soft);
  transition:transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.ecn-why-card:hover{
  transform:translateY(-3px);
  border-color:#aeb8c8;
  background:#fff;
  box-shadow:var(--ecn-shadow-card);
}

.ecn-why-card .ecn-card-icon{
  width:42px;
  height:42px;
  margin-bottom:32px;
  color:var(--ecn-blue);
  border-radius:var(--ecn-radius-md);
  background:rgba(47,128,237,.10);
}

.ecn-why-card h3{
  margin:0 0 14px;
  color:var(--ecn-ink);
  font-size:1.26rem;
  line-height:1.12;
  letter-spacing:-.03em;
}

.ecn-why-card p{
  margin:0;
  color:#34445a;
  line-height:1.62;
}

.ecn-case-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:24px;
}

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

.ecn-industry-card{
  min-height:520px;
  padding:28px;
  border:1px solid var(--ecn-line);
  border-radius:var(--ecn-radius-lg);
  background:#fff;
  box-shadow:var(--ecn-shadow-soft);
  transition:box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}

.ecn-industry-card:hover{
  transform:translateY(-3px);
  border-color:#aeb8c8;
  box-shadow:var(--ecn-shadow-card);
}

.ecn-industry-card img{
  width:100%;
  height:180px;
  object-fit:cover;
  margin-bottom:28px;
  border-radius:var(--ecn-radius-sm);
  filter:saturate(.88) contrast(1.06);
}

.ecn-industry-card > span{
  display:block;
  margin:0 0 18px;
  color:#d7dce4;
  font-size:3rem;
  line-height:1;
  font-weight:950;
  letter-spacing:-.05em;
}

.ecn-industry-card > p:first-of-type{
  margin:0 0 18px;
  color:#7a8697;
  font-size:.72rem;
  font-weight:900;
  letter-spacing:.1em;
  text-transform:uppercase;
}

.ecn-industry-card h3{
  margin:0 0 18px;
  font-size:1.35rem;
  line-height:1.12;
  letter-spacing:-.035em;
}

.ecn-industry-card > p:last-of-type{
  margin:0 0 26px;
  color:#34445a;
  line-height:1.62;
}

.ecn-industry-card div{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.ecn-industry-card small{
  padding:7px 10px;
  border:1px solid var(--ecn-line);
  color:#6f7c8f;
  font-size:.68rem;
  font-weight:850;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.ecn-case-card{
  min-height:385px;
  padding:32px;
  border:1px solid var(--ecn-line);
  background:#fff;
  box-shadow:0 18px 44px rgba(15,24,42,.08);
  transition:box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}

.ecn-case-card:hover{
  transform:translateY(-3px);
  border-color:#b7c2d2;
  box-shadow:0 24px 58px rgba(15,24,42,.14);
}

.ecn-case-card > span{
  display:block;
  margin:0 0 28px;
  color:#d8dee8;
  font-size:3rem;
  line-height:1;
  font-weight:950;
  letter-spacing:-.05em;
}

.ecn-case-card > p:first-of-type{
  margin:0 0 18px;
  color:#7a8697;
  font-size:.72rem;
  font-weight:900;
  letter-spacing:.1em;
  text-transform:uppercase;
}

.ecn-case-card h3{
  margin:0 0 18px;
  font-size:1.22rem;
  line-height:1.18;
  letter-spacing:-.03em;
}

.ecn-case-card > p:last-of-type{
  margin:0 0 26px;
  color:#2f3d52;
  line-height:1.58;
}

.ecn-case-card div{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}


.ecn-case-card small{
  padding:7px 10px;
  border:1px solid var(--ecn-line);
  color:#6f7c8f;
  font-size:.68rem;
  font-weight:850;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.ecn-success-dark .ecn-case-card{
  border-color:rgba(255,255,255,.13);
  background:linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.04));
  box-shadow:0 24px 70px rgba(0,0,0,.22);
}

.ecn-success-dark .ecn-case-card:hover{
  border-color:rgba(255,255,255,.26);
  box-shadow:0 30px 80px rgba(0,0,0,.30);
}

.ecn-success-dark .ecn-case-card > span{
  color:rgba(234,242,255,.34);
}

.ecn-success-dark .ecn-case-card > p:first-of-type{
  color:rgba(234,242,255,.56);
}

.ecn-success-dark .ecn-case-card h3{
  color:#fff;
}

.ecn-success-dark .ecn-case-card > p:last-of-type{
  color:rgba(234,242,255,.68);
}

.ecn-success-dark .ecn-case-metric{
  border-color:rgba(56,189,248,.18);
  background:rgba(7,17,31,.30);
}

.ecn-success-dark .ecn-case-metric strong{
  color:#fff;
}

.ecn-success-dark .ecn-case-metric em{
  color:rgba(234,242,255,.54);
}

.ecn-success-dark .ecn-case-card small{
  color:#dff7ff;
  background:rgba(56,189,248,.12);
  border-color:rgba(56,189,248,.22);
}

.ecn-brand-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:32px;
}

.ecn-brand-grid article{
  min-height:230px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:24px;
  padding:34px;
  border:1px solid rgba(255,255,255,.13);
  background:rgba(23,43,66,.56);
  text-align:center;
  transition:transform .2s ease, border-color .2s ease, background .2s ease;
}

.ecn-brand-grid article:hover{
  transform:translateY(-3px);
  border-color:rgba(255,255,255,.26);
  background:rgba(31,58,88,.72);
}

.ecn-brand-logo{
  width:min(210px, 78%);
  height:84px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:2px;
}

.ecn-brand-logo img{
  max-width:100%;
  max-height:100%;
  display:block;
  object-fit:contain;
}

.ecn-brand-card--cisco .ecn-brand-logo img{width:148px}
.ecn-brand-card--fortinet .ecn-brand-logo img{width:76px}
.ecn-brand-card--juniper .ecn-brand-logo img{width:164px}
.ecn-brand-card--palo .ecn-brand-logo img{width:96px}
.ecn-brand-card--ubiquiti .ecn-brand-logo img{width:86px}

.ecn-brand-wordmark{
  color:#fff;
  font-size:1.36rem;
  font-weight:900;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.ecn-brand-grid span{
  color:rgba(255,255,255,.76);
  font-size:1.46rem;
  line-height:1;
  font-weight:950;
  letter-spacing:-.02em;
}

.ecn-brand-card--logo-only > span:not(.ecn-brand-logo){
  display:none;
}

.ecn-brand-grid p{
  max-width:280px;
  margin:0;
  color:rgba(255,255,255,.55);
  line-height:1.55;
}

.ecn-brand-note{
  max-width:760px;
  margin:42px auto 0;
  color:rgba(255,255,255,.62);
  text-align:center;
  line-height:1.68;
}

.ecn-cert-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:32px;
}

.ecn-cert-card{
  position:relative;
  min-height:238px;
  overflow:hidden;
  padding:28px;
  border:1px solid rgba(255,255,255,.14);
  background:
    radial-gradient(circle at 16% 0%, rgba(56,189,248,.16), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.04));
  box-shadow:0 24px 70px rgba(0,0,0,.20);
  transition:transform .2s ease, border-color .2s ease;
}

.ecn-cert-card:hover{
  transform:translateY(-3px);
  border-color:rgba(56,189,248,.36);
}

.ecn-cert-card::after{
  content:"";
  position:absolute;
  inset:auto -36px -42px auto;
  width:130px;
  height:130px;
  border:1px solid rgba(56,189,248,.18);
  border-radius:999px;
  background:rgba(56,189,248,.06);
}

.ecn-cert-badge{
  position:relative;
  width:min(230px, 100%);
  min-height:154px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  margin:0 auto 24px;
  padding:20px 34px 17px;
  border-radius:18px;
  color:#1f2937;
  background:#fff;
  box-shadow:0 22px 56px rgba(0,0,0,.22), inset 0 0 0 1px rgba(15,24,42,.08);
  text-align:center;
  isolation:isolate;
}

.ecn-cert-badge::before,
.ecn-cert-badge::after{
  content:"";
  position:absolute;
  top:24px;
  width:42px;
  height:106px;
  border-top:5px solid #0c5c6d;
  border-bottom:5px solid #d7193f;
  z-index:-1;
}

.ecn-cert-badge::before{
  left:14px;
  border-left:6px solid #0c5c6d;
  border-radius:100% 0 0 100%;
  transform:rotate(7deg);
}

.ecn-cert-badge::after{
  right:14px;
  border-right:6px solid #0c5c6d;
  border-radius:0 100% 100% 0;
  transform:rotate(-7deg);
}

.ecn-cert-badge-top{
  font-size:.82rem;
  font-weight:900;
  letter-spacing:.10em;
  line-height:1.05;
  text-transform:uppercase;
}

.ecn-cert-badge-rule{
  width:100%;
  height:2px;
  margin:7px 0 5px;
  background:#8b9098;
}

.ecn-cert-badge-level{
  color:#0c5c6d;
  font-size:2.65rem;
  font-weight:950;
  line-height:.9;
  letter-spacing:.02em;
  text-transform:uppercase;
}

.ecn-cert-badge-track{
  font-size:.88rem;
  font-weight:900;
  line-height:1.05;
  text-transform:uppercase;
}

.ecn-cert-badge--ccie .ecn-cert-badge-level{
  color:#d7193f;
}

.ecn-cert-badge--ccna .ecn-cert-badge-level{
  color:#15171c;
}

.ecn-cert-badge--ccna::before,
.ecn-cert-badge--ccna::after{
  border-top-color:#00758a;
  border-bottom-color:#00758a;
}

.ecn-cert-badge--ccna::before{border-left-color:#00758a}
.ecn-cert-badge--ccna::after{border-right-color:#00758a}

.ecn-cert-card h3{
  margin:16px 0 10px;
  color:#fff;
  font-size:1.42rem;
  line-height:1.08;
  letter-spacing:-.03em;
}

.ecn-cert-card p{
  margin:0;
  color:rgba(234,242,255,.64);
  line-height:1.58;
}

.ecn-tech{
  background:#f7f9fc;
}

.ecn-tech-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(190px, 1fr));
  gap:30px;
}

.ecn-tech-grid article{
  display:flex;
  flex-direction:column;
}

.ecn-tech-grid article img{
  width:100%;
  aspect-ratio:16/10;
  object-fit:contain;
  border-radius:var(--ecn-radius-sm);
  background:#edf3f8;
  filter:saturate(.92) contrast(1.04);
}

.ecn-tech-grid article img.ecn-tech-image-security{
  aspect-ratio:16/9;
  object-fit:contain !important;
  object-position:center center;
  padding:10px;
  background:#e8eef6;
}

.ecn-tech-grid article p{
  margin:24px 0 8px;
  color:#7f8a9c;
  font-size:.68rem;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.ecn-tech-grid article h3{
  margin:0 0 12px;
  font-size:1.58rem;
  line-height:1;
  letter-spacing:-.04em;
}

.ecn-tech-grid article span{
  display:block;
  margin-bottom:22px;
  color:#34445a;
  line-height:1.58;
}

.ecn-tech-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:max-content;
  min-height:46px;
  margin-top:auto;
  padding:0 18px;
  border:1px solid rgba(47,128,237,.22);
  border-radius:999px;
  color:#0f172a;
  background:#eef5ff;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.72);
  font-size:.76rem;
  font-weight:900;
  letter-spacing:.12em;
  text-decoration:none;
  text-transform:uppercase;
  transition:transform .2s ease, border-color .2s ease, background .2s ease;
}

.ecn-tech-link:hover{
  transform:translateY(-2px);
  border-color:rgba(47,128,237,.42);
  background:#dfeeff;
}

.ecn-about-grid{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:84px;
  align-items:start;
}

.ecn-about-grid p{
  margin:0 0 18px;
  color:#34445a;
  font-size:1.03rem;
  line-height:1.68;
}

.ecn-process-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:24px;
}

.ecn-process-grid article{
  min-height:270px;
  padding:32px;
  border:1px solid rgba(255,255,255,.13);
  background:rgba(255,255,255,.02);
}

.ecn-process-grid span{
  display:block;
  margin-bottom:58px;
  color:rgba(255,255,255,.32);
  font-size:2.5rem;
  font-weight:950;
}

.ecn-process-grid h3{
  margin:0 0 14px;
  color:#fff;
  font-size:1.22rem;
}

.ecn-process-grid p{
  margin:0;
  color:rgba(255,255,255,.58);
  line-height:1.62;
}

.ecn-process-light .ecn-process-grid article{
  border-color:var(--ecn-line);
  background:#fff;
  box-shadow:0 18px 44px rgba(15,24,42,.08);
}

.ecn-process-light .ecn-process-grid span{
  color:#c7cfdb;
}

.ecn-process-light .ecn-process-grid h3{
  color:var(--ecn-ink);
}

.ecn-process-light .ecn-process-grid p{
  color:#2f3d52;
}

.ecn-faq-lede{
  max-width:760px;
  margin:-22px 0 36px;
  color:#34445a;
  font-size:1.06rem;
  line-height:1.75;
}

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

.ecn-faq-item{
  border:1px solid var(--ecn-line);
  border-radius:20px;
  background:#fff;
  box-shadow:0 18px 44px rgba(15,24,42,.08);
  overflow:hidden;
}

.ecn-faq-item summary{
  min-height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:22px 24px;
  color:#111827;
  font-weight:900;
  font-size:1.08rem;
  cursor:pointer;
  list-style:none;
}

.ecn-faq-item summary::-webkit-details-marker{
  display:none;
}

.ecn-faq-item summary::after{
  content:"+";
  width:32px;
  height:32px;
  flex:0 0 auto;
  display:grid;
  place-items:center;
  border-radius:999px;
  color:#07111f;
  background:#eef5ff;
  font-weight:900;
}

.ecn-faq-item[open] summary::after{
  content:"-";
}

.ecn-faq-item p{
  margin:0;
  padding:0 24px 24px;
  color:#34445a;
  line-height:1.7;
}

.ecn-contact{
  color:#fff;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    radial-gradient(circle at 18% 20%, rgba(47,128,237,.20), transparent 32%),
    linear-gradient(135deg, #07111f 0%, #0d1b2d 58%, #06101f 100%);
  background-size:118px 118px, 118px 118px, auto, auto;
}

.ecn-contact-grid{
  display:grid;
  grid-template-columns:.82fr 1.18fr;
  gap:34px;
  align-items:stretch;
}

.ecn-contact-copy,
.ecn-contact-form{
  border:1px solid rgba(255,255,255,.14);
  border-radius:24px;
  box-shadow:0 28px 80px rgba(0,0,0,.24);
}

.ecn-contact-copy{
  padding:36px;
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
}

.ecn-contact p{
  color:rgba(255,255,255,.62);
  line-height:1.64;
}

.ecn-contact-actions{
  display:grid;
  gap:12px;
  margin-top:34px;
}

.ecn-contact-trust{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:10px;
  margin-top:18px;
}

.ecn-contact-trust span{
  min-height:58px;
  display:flex;
  align-items:center;
  padding:12px 14px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:16px;
  color:rgba(234,242,255,.76);
  background:rgba(255,255,255,.055);
  font-size:.78rem;
  font-weight:850;
  line-height:1.35;
}

.ecn-contact-action{
  display:grid;
  grid-template-columns:44px 1fr;
  gap:14px;
  align-items:center;
  padding:16px;
  border:1px solid rgba(255,255,255,.13);
  border-radius:18px;
  background:rgba(7,17,31,.34);
  text-decoration:none;
}

.ecn-contact-action > span{
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  border-radius:14px;
  color:#07111f;
  background:#fff;
  font-weight:900;
}

.ecn-contact-action small{
  display:block;
  margin-bottom:3px;
  color:rgba(255,255,255,.56);
  font-size:.74rem;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.ecn-contact-action strong{
  color:#fff;
  font-size:1.05rem;
}

.ecn-contact-form{
  display:grid;
  grid-template-columns:1fr;
  gap:24px;
  padding:30px;
  background:rgba(255,255,255,.10);
  backdrop-filter:blur(18px);
}

.ecn-contact-form label{
  display:block;
}

.ecn-contact-form .ecn-full{
  grid-column:1/-1;
}

.ecn-contact-form span{
  display:block;
  margin-bottom:14px;
  color:rgba(255,255,255,.60);
  font-size:.72rem;
  font-weight:900;
  letter-spacing:.22em;
  text-transform:uppercase;
}

.ecn-contact-form input,
.ecn-contact-form textarea{
  width:100%;
  border:1px solid rgba(255,255,255,.14);
  border-radius:14px;
  padding:15px 16px;
  color:#fff;
  background:rgba(7,17,31,.42);
  font:inherit;
  outline:none;
  transition:border-color .2s ease, background .2s ease;
}

.ecn-contact-form input:focus,
.ecn-contact-form textarea:focus{
  border-color:rgba(56,189,248,.62);
  background:rgba(7,17,31,.62);
}

.ecn-contact-form textarea{
  min-height:136px;
  resize:vertical;
}

.ecn-contact-form input::placeholder,
.ecn-contact-form textarea::placeholder{
  color:rgba(255,255,255,.30);
}

.ecn-contact-form button{
  grid-column:1/-1;
  min-height:56px;
  border:0;
  border-radius:999px;
  margin-top:4px;
  color:var(--ecn-navy);
  background:#fff;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.75);
  font-size:.78rem;
  font-weight:950;
  letter-spacing:.24em;
  text-transform:uppercase;
  cursor:pointer;
  transition:transform .22s ease, box-shadow .22s ease;
}

.ecn-contact-form button:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 42px rgba(255,255,255,.16);
}

.ecn-contact-form button[disabled]{
  cursor:wait;
  opacity:.72;
  transform:none;
  box-shadow:none;
}

.ecn-form-message{
  grid-column:1/-1;
  margin:0;
  padding:15px 16px;
  border:1px solid rgba(34,197,94,.32);
  border-radius:16px;
  color:#dcfce7;
  background:rgba(34,197,94,.12);
  font-size:.96rem;
  font-weight:750;
  line-height:1.45;
}

.ecn-form-message:empty{
  display:none;
}

.ecn-form-message.is-sending{
  border-color:rgba(56,189,248,.30);
  color:#dff7ff;
  background:rgba(56,189,248,.12);
}

@media (max-width: 1500px){

  .ecn-hero h1{
    max-width:830px;
  }
}

@media (max-width: 1020px){
  .ecn-container{
    width:min(100% - 40px, 1110px);
  }

  .ecn-menu{
    display:none;
  }

  .ecn-header-phone{
    display:none;
  }

  .ecn-topology{
    display:none;
  }

  .ecn-hero h1{
    font-size:clamp(3.6rem, 13vw, 7.5rem);
  }

  .ecn-service-row,
  .ecn-about-grid,
  .ecn-contact-grid,
  .ecn-trust-grid,
  .ecn-outcome-grid{
    grid-template-columns:1fr;
    gap:36px;
  }

  .ecn-trust-rail{
    grid-template-columns:1fr 1fr;
  }

  .ecn-service-row-flip .ecn-service-copy,
  .ecn-service-row-flip img{
    order:initial;
  }

  .ecn-card-grid,
  .ecn-why-grid,
  .ecn-industry-grid,
  .ecn-case-grid,
  .ecn-brand-grid,
  .ecn-cert-grid,
  .ecn-process-grid,
  .ecn-faq-grid{
    grid-template-columns:1fr 1fr;
  }

  .ecn-tech-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width: 720px){
  body.admin-bar .ecn-nav-wrap{
    top:46px;
  }

  .ecn-container{
    width:min(100% - 28px, 1110px);
  }

  .ecn-brand span:last-child{
    font-size:.82rem;
  }

  .ecn-hero,
  .ecn-hero-slider,
  .ecn-hero-slider .swiper-wrapper,
  .ecn-hero-slider .swiper-slide,
  .ecn-hero-slide{
    min-height:760px;
  }

  .ecn-nav-actions{
    gap:8px;
  }

  .ecn-header-cta{
    min-height:40px;
    padding:0 14px;
    font-size:.76rem;
  }

  .ecn-language-switch{
    padding:4px;
    gap:4px;
    backdrop-filter:none;
    -webkit-backdrop-filter:none;
  }

  .ecn-lang-button{
    min-width:38px;
    min-height:30px;
    font-size:.68rem;
  }

  .ecn-hero-slide{
    align-items:flex-start;
    padding:78px 0 64px;
  }

  .ecn-hero h1{
    font-size:clamp(2.55rem, 13vw, 3.9rem);
    line-height:.94;
    letter-spacing:-.045em;
  }

  .ecn-hero-content::before{
    left:-16px;
    top:-26px;
    width:calc(100% + 32px);
    height:calc(100% + 52px);
    border-radius:20px;
    backdrop-filter:none;
    -webkit-backdrop-filter:none;
  }

  .ecn-hero-copy{
    grid-template-columns:1fr;
    gap:16px;
  }

  .ecn-hero-copy::before{
    width:64px;
    margin:0;
  }

  .ecn-hero-status{
    left:auto;
    right:14px;
    bottom:18px;
    min-width:144px;
  }

  .ecn-hero-controls{
    left:14px;
    right:auto;
    bottom:14px;
  }

  .ecn-hero-control{
    width:44px;
    height:44px;
    backdrop-filter:none;
    -webkit-backdrop-filter:none;
  }

  .ecn-hero-depth::before{
    display:none;
  }

  .ecn-hero-slide::after{
    animation:none;
    opacity:.42;
  }

  .ecn-hero-slide > img{
    filter:saturate(.88) contrast(1.04);
  }

  .ecn-hero.is-hero-active .swiper-slide-active .ecn-hero-slide > img{
    transform:scale(1.006);
    transition-duration:6s;
  }

  .ecn-animate-ready .ecn-reveal,
  .ecn-animate-ready .ecn-reveal-from-left,
  .ecn-animate-ready .ecn-reveal-from-right,
  .ecn-animate-ready .ecn-reveal-soft,
  .ecn-animate-ready .ecn-reveal-title,
  .ecn-animate-ready .ecn-reveal-zoom{
    transform:translate3d(0, 4px, 0);
    transition-duration:.18s;
    transition-delay:0ms !important;
  }

  .ecn-animate-ready .ecn-service-row img.ecn-reveal,
  .ecn-animate-ready .ecn-industry-card img.ecn-reveal,
  .ecn-animate-ready .ecn-tech-grid img.ecn-reveal{
    transform:translate3d(0, 4px, 0);
    transition-duration:.18s;
  }

  .ecn-section::before{
    display:none;
  }

  .ecn-section::after{
    transition-duration:.18s;
  }

  .ecn-section{
    padding:66px 0;
  }

  .ecn-dark-card,
  .ecn-why-card,
  .ecn-industry-card,
  .ecn-case-card,
  .ecn-brand-grid article,
  .ecn-tech-grid article,
  .ecn-process-grid article,
  .ecn-faq-item,
  .ecn-contact-copy,
  .ecn-contact-form{
    box-shadow:0 14px 34px rgba(15,24,42,.10);
  }

  .ecn-contact-form{
    padding:22px;
    backdrop-filter:none;
    -webkit-backdrop-filter:none;
  }

  .ecn-contact-copy{
    padding:26px;
  }

  .ecn-section h2{
    font-size:clamp(2.45rem, 13vw, 4rem);
  }

  .ecn-rule{
    margin-bottom:44px;
  }

  .ecn-service-row{
    min-height:0;
    padding:24px 0;
  }

  .ecn-service-row img{
    height:230px;
  }

  .ecn-service-number{
    font-size:3rem;
  }

  .ecn-service-copy h3{
    font-size:1.75rem;
  }

  .ecn-card-grid,
  .ecn-why-grid,
  .ecn-industry-grid,
  .ecn-case-grid,
  .ecn-brand-grid,
  .ecn-cert-grid,
  .ecn-tech-grid,
  .ecn-process-grid,
  .ecn-faq-grid,
  .ecn-contact-form{
    grid-template-columns:1fr;
  }

  .ecn-dark-card,
  .ecn-why-card,
  .ecn-industry-card,
  .ecn-case-card,
  .ecn-process-grid article{
    min-height:0;
  }

  .ecn-trust-rail{
    grid-template-columns:1fr;
  }

  .ecn-trust-grid{
    grid-template-columns:1fr;
  }

  .ecn-contact-trust{
    grid-template-columns:1fr;
  }
}

@media (hover: none){
  .ecn-text-link:hover,
  .ecn-hero-control:hover,
  .ecn-dark-card:hover,
  .ecn-why-card:hover,
  .ecn-industry-card:hover,
  .ecn-case-card:hover,
  .ecn-brand-grid article:hover,
  .ecn-tech-link:hover,
  .ecn-contact-form button:hover,
  .ecn-animate-ready .ecn-reveal-zoom.is-visible:hover,
  .ecn-animate-ready .ecn-service-row img.ecn-reveal.is-visible:hover,
  .ecn-animate-ready .ecn-industry-card img.ecn-reveal.is-visible:hover,
  .ecn-animate-ready .ecn-tech-grid img.ecn-reveal.is-visible:hover{
    transform:none;
  }
}

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

  .swiper-slide-active .ecn-hero-slide > img{
    transform:none;
  }
}
