
.footer-made-below {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px; 
  flex-wrap: nowrap;
  margin-left: auto; 
}

.footer-made-below img {
  height: 36px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-made-below .registry-badge {
  margin-top: 0px;
  margin-left: 0px;
}


.footer-made-below .made-in-russia { order: 0; }
.footer-made-below .registry-badge { order: 1; }
:root{
  --bg: #080808;
  --home-extra-height: 220px; 
  --home-blur-strength: 30px; 
  --home-blur-spread: 140px; 
  --accent-1: #29e6ff;
  --accent-2: #29cdff;
  --accent-3: #8929ff;
  --accent-4: #cd29ff;
  --muted: #bebebe;
  --container: 1200px;
  --transition: 220ms cubic-bezier(.2,.9,.2,1);
  --glass: rgba(255,255,255,0.03);

  
  --pricing-accent: #29e6ff; 
  --pricing-accent-2: #29cdff; 
  --pricing-accent-bg: rgba(41,230,255,0.08); 
  --pricing-accent-border: rgba(41,230,255,0.3); 
  --pricing-badge-bg: rgba(41,230,255,0.1);
}


@font-face {
  font-family: 'GOSTTypeA';
  src: url('/fonts/GOST_A_.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'GOST Type A';
  src: url('/fonts/GOST_A_.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'GOST-A';
  src: url('/fonts/GOST_A_.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}


*{box-sizing:border-box}
html,body{height:100%;margin:0}

body{
  font-family:Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
  
  background: var(--bg);
  color:#ffffff;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  overflow-x:hidden;
  display:flex;
  flex-direction:column;
  min-height:100vh;
}


.container{width:92%;max-width:var(--container);margin:0 auto;padding:0}

html{
  scroll-behavior: smooth;
}


:root{
  --anchor-offset: 72px; 
}


section[id],
div[id].container[id],
article[id] {
  scroll-margin-top: var(--anchor-offset);
}


[id] {
  scroll-margin-top: calc(var(--anchor-offset));
}


section#projects {
  
  scroll-margin-top: calc(var(--anchor-offset) - 30px); 
}

section#advantages {
  scroll-margin-top: calc(var(--anchor-offset) - 36px);
}

section#gallery {
  scroll-margin-top: calc(var(--anchor-offset) - 36px);
}

.gallery-fullbleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-bottom: 1rem;
  overflow: hidden;
  position: relative;
}


.gallery-flickity {
  background: transparent;
  margin-top: 2rem;
  display: flex;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  -ms-touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none;
  cursor: grab;
  position: relative;
  width: max-content;
}

.gallery-flickity:active {
  cursor: grabbing;
}

.gallery-flickity .gallery-cell {
  flex-shrink: 0;
  width: 1250px;
  height: 800px;
  margin-right: 15px;
  overflow: hidden;
  border-radius: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  position: relative;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.gallery-flickity .gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: transparent;
  border: none;
  outline: none;
  box-shadow: none;
  pointer-events: none;
  transition: filter 0.15s ease;
  opacity: 1 !important;
}


.gallery-flickity .gallery-cell::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.2s ease;
  opacity: 1;
}


.gallery-flickity .gallery-cell.is-selected {
  z-index: 2;
}
.gallery-flickity .gallery-cell.is-selected::before {
  opacity: 0;
}


.gallery-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 10px 0;
}

.gallery-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.gallery-dot:hover {
  background: rgba(255, 255, 255, 0.7);
  transform: scale(1.2);
}

.gallery-dot.is-selected {
  background: #ffffff;
  transform: scale(1.2);
}


.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background-color: rgba(0, 0, 0, 0.75);
  color: #fff;
  padding: 10px 0;
  padding-left: 5%;
  padding-right: 70%;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.5px;
  pointer-events: none;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0 0, 33% 0, 40% 100%, 0 100%);
}


.flickity-prev-next-button { display: none !important; }

.flickity-page-dots { 
  display: block !important; 
  margin-bottom: 3rem;
  pointer-events: auto;
}
.flickity-page-dots .dot {
  cursor: pointer;
  pointer-events: auto;
  background: rgba(255,255,255,0.25) !important;
  transition: background 0.3s ease;
}
.flickity-page-dots .dot:hover {
  background: #fff !important;
}
.flickity-page-dots .dot.is-selected {
  background: #fff !important;
  box-shadow: 0 8px 22px -12px rgba(0,0,0,0.6);
}
@media (max-width: 768px) {
  .gallery-flickity .gallery-cell { width: 90vw; height: calc(90vw * 0.5625); }
  .gallery-flickity .gallery-cell img { width: 100%; height: 100%; object-fit: cover; }
  .flickity-page-dots { display: none !important; }
  
  .gallery-flickity .gallery-cell::before { display: none !important; opacity: 0 !important; }
  .gallery-flickity .gallery-cell img { display: block !important; opacity: 1 !important; visibility: visible !important; }
}


@media (max-width: 1024px) {
  .gallery-fullbleed,
  .tutorials--bleed .tutorials-viewport,
  .gallery .tutorials--bleed {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    overflow-x: hidden !important;
  }

  
  .gallery-flickity .gallery-cell { max-width: 100% !important; width: 90vw !important; }
}


@media (max-width: 1024px) {
  
  html, body { overflow-x: hidden !important; }

  
  img, picture, video, iframe, svg { max-width: 100% !important; height: auto !important; display: block; }

  
  [style*="100vw"],
  [class*="-bleed"],
  .gallery-fullbleed,
  .tutorials--bleed,
  .tutorials-viewport {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }

  
  * { box-sizing: border-box; }
  .gallery-flickity .gallery-cell { height: auto !important; }

  
  @supports (-webkit-touch-callout: none) {
    html, body { -webkit-overflow-scrolling: touch; }
  }
}


.site-header{
  position:fixed;left:0;right:0;top:0;z-index:60;
  background: #0f0f0f;
  border-bottom: 0.5px solid rgba(255,255,255,0.26);
  height:60px;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}


@media (min-width: 901px) {
  .site-header {
    background: rgba(15, 15, 15, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .site-header.scrolled {
    background: #0f0f0f;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

.site-header .container{width:100%;max-width:100%;padding-left:0;padding-right:12px}
.header-inner{display:flex;align-items:center;justify-content:space-between;padding:0;height:100%}
.logo{width:100px;height:auto;display:block;max-height:48px;margin-left:65px}
.brand{display:flex;align-items:center;margin-right:auto;margin-left:0}
.main-nav{display:flex;align-items:center;gap:1rem;margin-left:auto;margin-right:30px}
.burger{display:none;background:transparent;border:0;color:var(--accent-1);font-size:1.4rem;cursor:pointer}
.nav-list{display:flex;gap:1rem;list-style:none;margin:0;padding:0 0.5rem 0 0}
.nav-list a{
  color:var(--muted);text-decoration:none;padding:.5rem .75rem;border-radius:8px;font-weight:600;transition:color 180ms, background 180ms;
  position:relative; overflow:visible;
}


.nav-list a::after{
  content:'';
  position:absolute;
  left:0;bottom:-2px;
  height:2px;width:0;
  border-radius:2px;
  background: linear-gradient(90deg,var(--accent-1),var(--accent-2));
  box-shadow: 0 6px 18px rgba(41,230,255,0.08);
  transition: width var(--transition);
}

.nav-list a:hover, .nav-list a:focus{
  color:var(--accent-2);
}
.nav-list a:hover::after, .nav-list a:focus::after{ width:100%; }


.header-cta {
  display:inline-block;
  padding:.5rem 1rem;
  border-radius:999px;
  color:var(--accent-1);
  border:1px solid rgba(41,230,255,0.12);
  background:transparent;
  position:relative;
  overflow:hidden;
  transition:transform var(--transition), color var(--transition);
}
.header-cta::before{
  content:'';
  position:absolute;
  left:-60%;top:0;
  width:200%;height:100%;
  background: linear-gradient(90deg, rgba(41,230,255,0.08), rgba(141,41,255,0.06), rgba(205,41,255,0.04));
  transform:translateX(0);
  transition: transform 800ms cubic-bezier(.2,.9,.2,1);
}
.header-cta:hover{ transform:translateY(-2px); color:#fff; }
.header-cta:hover::before{ transform: translateX(-20%); }


.header-bottom-strip{
  height:6px;
  width:100%;
  background: linear-gradient(90deg, rgba(255,255,255,0.20), rgba(255,255,255,0.12));
  border-top:1px solid rgba(255,255,255,0.14);
}


main{padding-top:0}
main{flex:1 0 auto;}


.hero{
  height:100vh;
  display:flex;
  align-items:center;
  background:#0f0f0f;
}
.hero-inner{max-width:900px;padding:0}
.hero h1, .home-inner h1{
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  line-height:1.02;
  margin:0 0 6px 0; 
  letter-spacing:.5px;
  background: none !important;
  background-clip: unset !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: unset !important;
  color: #ffffff;
  
  font-family: 'GOSTTypeA', 'GOST Type A', 'GOST-A', 'Arial Narrow', 'Liberation Sans Narrow', 'Helvetica Neue', Arial, sans-serif;
  
  font-weight: 400;
  font-synthesis: none; 
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.hero-title .hero-line{ display: block; }

.hero-title .hero-line { font-weight: 400; }


.hero-title {
  opacity: 1;
  visibility: visible;
  
  transition: font-family 0ms;
}
.subtitle{color: #bdbdbd; font-size:1.1rem; margin:0; padding:0; max-width:680px}


.cta-button{
  display:inline-block;
  padding:1rem 2.5rem;
  margin-right:1rem;
  border-radius:50px;
  font-weight:700;
  text-decoration:none;
  cursor:pointer;
  position:relative;
  overflow:hidden;
  transition: var(--transition);
  border: 2px solid var(--accent-2);
  background: transparent;
  color: var(--accent-2);
  z-index: 1;
  box-sizing: border-box;
}
.cta-button.primary{
  color: #071017;
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
  border: 2px solid transparent;
}
.cta-button.ghost{
  color: var(--accent-2);
  background: transparent;
  
  border: none;
  box-shadow: inset 0 0 0 2px var(--accent-2);
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}


.cta-button::before{
  content: '';
  position: absolute;
  
  inset: 0;
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
  opacity: 0;
  transition: opacity var(--transition);
  z-index: -1; 
  border-radius: inherit;
  pointer-events: none;
  -webkit-transform: translateZ(0) scale(1.06);
  transform: translateZ(0) scale(1.06);
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  will-change: opacity;
}
.cta-button.ghost:hover{ border-color:var(--accent-2); color:#071017; padding:1rem 2.5rem; box-shadow: inset 0 0 0 2px var(--accent-2), 0 8px 30px rgba(41,205,255,0.25); }
.cta-button.ghost:hover::before{opacity:1;}
.cta-button.primary::before{display:none;}
.cta-button > * {
  position: relative;
  z-index: 2;
}
.cta-button:hover{ 
  box-shadow: 0 8px 30px rgba(41,205,255,0.3);
  transform: none;
}
.cta-button:focus-visible{outline:none;box-shadow:0 0 0 3px rgba(41,205,255,0.45);} 


.cta-button{
  display:inline-flex;
  align-items:center;
  gap:0.5rem;
}


.cta-button,
.cta-button.primary,
.cta-button.ghost,
.pricing-three-cta,
.pricing-cta,
.pricing-cta-featured{
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  tap-highlight-color: transparent;
  -webkit-user-select: none;
  user-select: none;
  -webkit-appearance: none;
  outline: none !important;
  overflow: hidden;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  touch-action: manipulation;
}


.cta-button:active, .cta-button.ghost:active, .cta-button.primary:active,
.pricing-three-cta:active, .pricing-cta:active {
  outline: none !important;
  box-shadow: none !important;
}
.hero-ctas .cta-button.ghost,
.header .cta-button.ghost,
.cta-button.ghost{
  padding-top:1rem !important;
  padding-bottom:1rem !important;
  line-height:1 !important;
}


.hero-ctas .cta-button,
.hero-ctas .cta-button.primary,
.hero-ctas .cta-button.ghost,
.header .cta-button,
.header .cta-button.primary,
.header .cta-button.ghost{
  
  padding: 0.9rem 1.8rem !important;
  min-height: 48px !important;
  display: inline-flex !important;
  align-items: center !important;
  
  font-size: 1.08rem !important;
}


@media (min-width: 641px) {
  .cta-button.primary .cta-label {
    display: inline-block;
    position: relative;
    top: -2px;
    line-height: 1;
  }
}


.cta-button.ghost .cta-label {
  display: inline-block;
  position: relative;
  top: -1px;
}


.cta-button.ghost {
  transform: translateY(-1px);
}


.hero-ctas .cta-button.ghost{
  
  padding-left: 2.6rem !important;
  padding-right: 2.6rem !important;
  font-size: 1.08rem !important;
  min-height: 52px !important;
  line-height: 1.03 !important;
}


.projects{padding:0; background:transparent}


.about-sim .about-text {
  max-width: var(--container);
  margin: 0 auto;
  color: #d0d0d0;
  font-size: 1.05rem;
  line-height: 1.7;
  text-align: justify;
}
.about-sim .about-text p {
  margin: 0 0 0.6rem;
}
.about-sim .about-text p.text-left {
  text-align: left;
  line-height: 1.55em; 
}
.about-sim .about-text p:first-child {
  font-size: 1.15rem;
  color: #fff;
}
.about-sim .about-text p:last-child {
  margin-bottom: 0;
}

.section-title{
  font-size:2.4rem;
  margin:0;
  text-align:center;
  color:#fff;
  font-weight:600;
  letter-spacing:0.5px;
  position:relative;
  text-shadow:0 2px 6px rgba(0,0,0,0.35);
}
.section-title::after{
  
  content: "";
  display: none !important;
}
.section-title:hover::after{
  opacity:1;
  transform:translateY(-2px);
}


.gallery{padding:0; position:relative;}
.gallery-video{max-width:980px; margin:0 auto 3rem; position:relative;}
.gallery-video::before{display:none;}
.gallery-video .showreel{width:100%; display:block; border-radius:0; background:#000; box-shadow:none; outline:none;}
.gallery-video .showreel:focus{outline:none; box-shadow:none;} 


.media-gallery{display:flex; align-items:center; gap:1.2rem; position:relative; max-width:1180px; margin:0 auto; padding:0 1rem;}
.media-gallery .gallery-nav{background:rgba(255,255,255,0.06); border:none; color:#fff; width:46px; height:46px; border-radius:50%; font-size:1.6rem; cursor:pointer; display:flex; align-items:center; justify-content:center; backdrop-filter:blur(6px); transition:background var(--transition), transform var(--transition), box-shadow var(--transition); box-shadow:none;}
.media-gallery .gallery-nav:hover{background:rgba(41,205,255,0.35); transform:translateY(-4px); box-shadow:none;} 
.media-gallery .gallery-nav:active{transform:translateY(-1px);} 
.media-gallery .media-track{flex:1; display:flex; gap:1rem; overflow-x:auto; overflow-y:hidden; position:relative; outline:none; scroll-behavior:smooth; -ms-overflow-style:none; scrollbar-width:none;}
.media-gallery .media-track::-webkit-scrollbar{display:none;}
.media-item{flex:0 0 46%; position:relative; border-radius:0; overflow:hidden; background:rgba(255,255,255,0.03); box-shadow:none; transition:transform 0.8s cubic-bezier(.16,.68,.43,.99), filter var(--transition), box-shadow var(--transition);} 
.media-item img{width:100%; height:100%; object-fit:cover; display:block; filter:brightness(.8) saturate(.9); transition:inherit; -webkit-user-drag:none; user-select:none; pointer-events:none;}
.media-item.is-active{transform:scale(1.08); z-index:2; box-shadow:none;} 
.media-item.is-active img{filter:brightness(1) saturate(1.15);} 
.media-item.is-prev,.media-item.is-next{transform:scale(.94); opacity:.85;} 
.media-item:is(.is-prev,.is-next) img{filter:brightness(.9) saturate(1);} 
.media-item:not(.is-active):not(.is-prev):not(.is-next){filter:brightness(.55) saturate(.6); transform:scale(.84); opacity:.55;} 




.media-pagination{position:absolute; left:50%; bottom:-42px; transform:translateX(-50%); display:flex; justify-content:center; align-items:center; gap:12px;}

.swiper-pagination-bullet{width:16px;height:16px;margin:0;display:inline-block;border:none;border-radius:50%;cursor:pointer;position:relative;
  background:#2a2a2e; 
  box-shadow:0 2px 8px -2px rgba(0,0,0,0.55);
  transition:background 280ms ease, transform 320ms cubic-bezier(.4,0,.2,1), box-shadow 280ms ease;
}
.swiper-pagination-bullet:hover{background:#3a3a3f; box-shadow:0 4px 14px -4px rgba(0,0,0,0.6);} 
.swiper-pagination-bullet:active{transform:scale(.85);} 
.swiper-pagination-bullet:focus-visible{outline:none; box-shadow:0 0 0 3px #4a4a50, 0 4px 14px -4px rgba(0,0,0,0.55);} 
.swiper-pagination-bullet-active,.swiper-pagination-bullet[aria-selected="true"]{background:#ffffff; box-shadow:0 6px 24px -6px rgba(0,0,0,0.55);} 

@media (max-width:960px){
  .media-item{flex:0 0 62%;}
}
@media (max-width:640px){
  .media-gallery{gap:.6rem;}
  .media-gallery .gallery-nav{width:40px; height:40px; font-size:1.3rem;}
  .media-item{flex:0 0 78%; border-radius:0;}


@media (max-width:640px) {
  .trusted-box,
  .trusted-box:hover {
    transform: none !important;
    box-shadow: none !important;
  }
}
  .media-item.is-active{transform:scale(1.05);}
  
  .hero-ctas{ display:flex; flex-direction:column; align-items:flex-start; gap:0.75rem; }
  .hero-ctas .cta-button{ margin-right:0 !important; }
  .hero-ctas .cta-button.ghost{ order:0; }
  .hero-ctas .cta-button.primary{ order:1; }

  
  .about-sim .about-text {
    text-align: left !important;
  }
}


.trusted{
  padding:0rem 0 1.5rem;
  background: transparent;
}
.trusted-logos{
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  gap:1.5rem;
  margin-top:2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}


.trusted-box {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  border-radius: 16px;
  background: #1e1e1f;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  aspect-ratio: 1 / 1;
  box-sizing: border-box;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.trusted-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px -20px rgba(255,255,255,0.1);
}


.trusted-box img.trusted-logo__img {
  max-width: 100% !important;
  max-height: 100% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  display: block !important;
}

@media (max-width:900px){
  .trusted-logos{
    grid-template-columns: repeat(3, 1fr);
    gap:1rem;
  }
}

@media (max-width:600px){
  .trusted{padding:1.6rem 0 1.6rem}
  .trusted-logos{
    grid-template-columns: repeat(3, 1fr);
    gap:0.8rem;
  }



@media (max-width:640px) {
  .site-footer { margin-top: 1.5rem !important; }
}

@media (max-width:480px) {
  .made-in-russia { width: 130px !important; height: auto !important; padding: 0 !important; margin: 0.25rem 0 !important; }
  .made-in-russia img { display:block; padding:0 !important; }
  .registry-badge { width: 270px !important; max-width: 45%; padding: 0 !important; }
}
  .trusted-box {
    padding: 0.9rem;
  }
}



@media (max-width: 640px) {
  .pricing-demo-badge {
    display: block;
    position: absolute;
    top: 8px;
    right: 12px;
    width: 22px;
    height: auto;
    border-radius: 3px;
    z-index: 5;
    pointer-events: auto;
    padding: 0;
    background: transparent;
    box-shadow: 0 4px 10px rgba(0,0,0,0.12);
  }
  .media-pagination{bottom:-34px;}
  .swiper-pagination-bullet-active,.swiper-pagination-bullet[aria-selected="true"]{width:70px;}
}
@media screen and (max-width:576px){
  .swiper-pagination-bullet-active,.swiper-pagination-bullet[aria-selected="true"]{width:70px;}
}

@media (max-width:640px){
  .gallery-video{margin-bottom:2.2rem;}
  .gallery-video::before{inset:0; border-radius:0;}
  .gallery-video .showreel{border-radius:0;}
}


.header-cta::before,
.gallery-flickity .gallery-cell::before,
.pricing-card-new::before,
.pricing-featured::before,
.pricing-cta::before,
.gallery-video::before {
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: opacity, transform;
}


.projects-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top:2rem;
  gap:1.6rem;
  align-items:stretch;
}
.project-card{
  position:relative;
  padding:1.45rem 1.6rem 2rem;
  border:0;
  border-radius:16px;
  background:transparent;
  backdrop-filter:blur(10px);
  transition:transform .35s, box-shadow .35s, border-color .35s;
  overflow:hidden;
  display:flex;
  flex-direction:column;
}
.project-card::before{content:none}
.project-card:hover{transform:translateY(-10px); box-shadow:none; border-color:rgba(255,255,255,0.16);} 
.project-img{
  
  width: 100%;
  aspect-ratio: 1 / 1; 
  min-height: 96px; 
  background: transparent;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: none;
}

.project-img::after{content:none}
.project-info{padding:0; margin-top:1.1rem;}
.project-info{display:flex;flex-direction:column;flex:1;justify-content:space-between;} 
.project-title{color:var(--accent-2);font-size:1.05rem;margin:0 0 .45rem 0;line-height:1.2em;height:calc(2 * 1.2em);overflow:hidden;}
.project-title br{display:none}
.project-desc{color:#bfbfbf;font-size:0.95rem;margin:0 0 .9rem;flex:1 1 auto;overflow:hidden}
.project-tags{display:flex;gap:.65rem;flex-wrap:wrap;margin:0;align-items:center;justify-content:space-between;width:100%;}
.tag{
  display:inline-flex;align-items:center;justify-content:center;
  flex:1 1 0; 
  padding:.35rem .75rem;
  background:rgba(255,255,255,0.07);
  border:1px solid rgba(255,255,255,0.15);
  border-radius:999px;
  color:var(--accent-1);
  font-weight:600;font-size:.8rem;letter-spacing:.4px;
  line-height:1.1;text-align:center;
  transition:background .35s, color .35s, transform .35s;
  box-shadow:0 4px 14px -6px rgba(0,0,0,0.55);
  white-space:normal; 
  min-width: 72px; 
}
.project-card:hover .tag{
  background:linear-gradient(120deg,var(--accent-1),var(--accent-2));
  color:#071017;
  box-shadow:0 10px 28px -10px rgba(41,230,255,0.35);
}
.tag:hover{transform:translateY(-4px);} 
.tag:active{transform:translateY(-1px);} 


.carousel{position:relative;margin-top:1rem}
.carousel-viewport{
  overflow-x:auto;
  overflow-y:hidden;
  -webkit-overflow-scrolling:touch;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  border-radius:10px;
  background: transparent;
}
.carousel-track{display:flex;gap:12px;padding:12px}
.slide{
  flex:0 0 100%;
  scroll-snap-align:center;
  border-radius:8px;
  overflow:hidden;
  background:#0b0b0b;
  box-shadow:0 18px 40px rgba(0,0,0,0.6);
}
.slide img{display:block;width:100%;height:60vh;object-fit:cover;transition:transform 300ms,filter 300ms}
.slide img:hover{transform:none;filter:none}

@media (min-width:1200px){
  .slide{flex:0 0 calc(50% - 6px)}
  .slide img{height:48vh}
}
.carousel-btn{
  position:absolute;top:50%;transform:translateY(-50%);
  z-index:5;background:linear-gradient(180deg, rgba(0,0,0,0.6), rgba(0,0,0,0.35));border:0;color:var(--accent-1);
  font-size:1.8rem;padding:.4rem .6rem;border-radius:8px;cursor:pointer;
}
.carousel-btn.prev{left:12px}
.carousel-btn.next{right:12px}
.carousel-thumbs{display:flex;gap:.5rem;justify-content:center;margin-top:.75rem;flex-wrap:wrap}
.thumb{width:56px;height:40px;border-radius:0;border:2px solid transparent;background-size:cover;background-position:center;cursor:pointer;opacity:.8}
.thumb[aria-selected="true"]{outline:2px solid var(--accent-1);opacity:1;transform:translateY(-3px)}


.lazy-img{opacity:0;transform:translateY(8px);transition:opacity 300ms,transform 300ms}
.lazy-img.loaded{opacity:1;transform:none}


.site-footer{border-top:1px solid rgba(255,255,255,0.08);padding:0;margin-top:0.4rem;background:#0f0f0f;position:relative;flex-shrink:0;}
.site-footer::before{display:none;}
.footer-layout{display:flex;flex-direction:column;gap:0;}
.footer-top{display:block}
.footer-top .footer-panels{display:flex;align-items:center;justify-content:flex-start;gap:0}
.footer-panels-right{display:flex;flex-direction:row;gap:.5rem;align-items:flex-start;flex:1 1 auto;justify-content:flex-end;margin-left:auto;margin-top:6px}
.footer-brand-block{display:flex;flex-direction:column;gap:1rem;flex:0 0 auto;margin-top:4px;max-width:480px;width:auto}


.footer-brand-block{align-self:flex-start}
.footer-made-below{display:flex;justify-content:center;align-items:center;gap:50px;flex-wrap:nowrap;margin-right:16px;}
.footer-made-below img{display:block;height:36px;width:auto;object-fit:contain;}
.footer-brand-row{display:flex;align-items:center;gap:0.7rem;}
.footer-brand-row{flex-wrap:nowrap}
.footer-logo{display:block;width:50px;height:60px;margin-top:0.1rem;object-fit:contain;padding:0;background:none;border-radius:0;box-shadow:none;}
.footer-brand-text{display:flex;flex-direction:column;gap:.25rem;}
.company-name{margin:0;margin-bottom:6px;font-weight:600;font-size:1rem;letter-spacing:.4px;color:#fff;}
.copyright{margin:0;font-size:.75rem;color:var(--muted);}
.made-in-wrap{display:block}
.made-in-russia{display:block;margin-top:0.6rem;width:110px;height:auto}
.made-in-russia img{display:block;width:100%;height:auto}
.registry-badge{display:block;margin-top:1rem;width:200px;height:auto}
.company-details{font-style:normal;display:flex;flex-direction:column;gap:.4rem;font-size:.72rem;line-height:1.3em;color:#bfc7c7;}
.company-details .reg-line strong{color:var(--accent-1);font-weight:600;}
.footer-contacts{display:flex;flex-direction:column;gap:1rem;} 
.footer-heading{margin:0;font-size:.9rem;font-weight:600;letter-spacing:.5px;color:#fff;}
.contacts-list,.legal-list{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:.55rem;}
.contact-link,.legal-link{font-size:.75rem;color:#9aa3a3;text-decoration:none;position:relative;transition:color var(--transition);}
.contact-link:hover,.legal-link:hover{color:#fff;}
.contact-link::after,.legal-link::after{content:'';position:absolute;left:0;bottom:-2px;height:2px;width:0;background:linear-gradient(90deg,var(--accent-1),var(--accent-2));border-radius:2px;transition:width var(--transition);}
.contact-link:hover::after,.legal-link:hover::after{width:100%;}
.footer-bottom{padding-top:0.2rem;display:flex;flex-direction:row;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:0.6rem;}
.footer-note{margin:0;font-size:.65rem;color:#737b7b;letter-spacing:.3px;max-width:820px;}


.footer-bottom-bar{
  width:100%;
  height:30px;
  background:#080808;
  margin-top:0.6rem;
  display:flex;
  align-items:center; 
}

.footer-bar-container{
  width:100%;
  max-width:1200px;
  margin: 0 auto; 
  padding-left:2rem;
  padding-right:2rem;
  box-sizing:border-box;
}

.footer-bar-container .footer-bar-copyright{
  margin:0;
  color:#fff;
  text-align:center;
  font-size:0.76rem;
  line-height:1;
}

@media (max-width:840px){
  .footer-top{grid-template-columns:1fr 1fr;}
}
@media (max-width:640px){
  .footer-top{grid-template-columns:1fr;gap:2.4rem;}
  .site-footer{padding:0.5rem 0 2rem;}
  .social-btn{width:38px;height:38px;}
  .company-details{font-size:.7rem;}
}


@media (max-width:640px) {
  .footer-bar-container {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .footer-bar-container .footer-bar-copyright {
    text-align: center !important;
    width: 100%;
    margin: 0;
  }
}


@media (max-width:640px) {
  .footer-panels {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 1rem !important;
    width: 100%;
  }

  
  .footer-brand-block {
    order: 0 !important;
    align-items: center !important;
    text-align: center !important;
    margin: 0 auto 0.5rem auto !important;
    width: 100%;
    max-width: 480px;
  }
  .footer-brand-row { justify-content: center !important; gap: 0.6rem !important; }

  
  .footer-panels-right {
    order: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.8rem !important;
    width: 100% !important;
    max-width: 480px;
  }
  .panel { width: 100% !important; text-align: center !important; }
  .panel .panel-list { display: flex !important; flex-direction: column !important; gap: .6rem !important; align-items: center !important; }

  
  .company-panel { order: 2 !important; width: 100% !important; max-width: 480px; }

  
  .footer-bottom { display:flex !important; flex-direction:column !important; align-items:center !important; gap: .6rem !important; }
  .footer-made-below { margin: 0 !important; }
}


@media (max-width:640px) {
  .footer-panels { gap: 0rem !important; }
  .footer-brand-row { margin-bottom: 0.25rem !important; }
  .footer-panels .legal-panel { padding-top: 0 !important; margin-top: 0 !important; }
  
  .footer-panels .panel { padding-top: 0.25rem !important; padding-bottom: 0.25rem !important; }
}


@media (max-width:640px) {
  .footer-panels .panel { text-align: center !important; width: 100% !important; }
  .footer-panels .panel .panel-heading { text-align: center !important; margin-left: 0 !important; }
  .footer-panels .panel .panel-list { display: flex !important; flex-direction: column !important; align-items: center !important; }
  .footer-panels .panel .panel-list li { width: auto !important; }
  .footer-panels .panel .panel-list a { display: inline-block !important; text-align: center !important; }
}


.footer-panels{
  display:grid;
  grid-template-columns:1fr;
  gap:1rem;
  margin-top:1rem;
}


.footer-middle{display:flex;flex-direction:column;gap:1rem;margin-top:2.8rem;margin-bottom:0}

@media (min-width:768px){
  .footer-middle{flex-direction:row;align-items:flex-end;justify-content:space-between;gap:2rem;margin-top:0rem;margin-bottom:0}
  .footer-social-icons{flex:0 0 auto;margin-top:0;margin-bottom:0}
  .footer-panels{flex:1 1 auto;margin-top:0}
}


@media (min-width: 1200px) {
  .footer-brand-block{
    flex-direction:row;
    align-items:center;
    justify-content:space-between;
    width:100%;
  }
  
  .footer-brand-left {
    display: flex;
    flex-direction: column;
    gap: 0rem;
  }

  .footer-brand-row{margin-right:0}

  .made-in-russia{
    margin-top:0;
    margin-left:auto;
    order:2;
  }

  
  .made-in-wrap{display:flex;flex-direction:column;align-items:flex-end;gap:6px}
  .registry-badge{margin-left:auto}
}

@media (min-width:768px){
  
  .footer-top .footer-panels{display:flex;align-items:center;justify-content:space-between;gap:0}
  .footer-panels-right{display:flex;flex-direction:row;gap:.5rem;align-items:flex-start}

  .legal-panel{
    flex: 0 1 420px; 
    max-width: 640px;
    width: auto;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .company-panel{
    flex: 0 1 560px; 
    max-width: 820px;
    width: auto;
  }
}

.footer-panels .panel{
  
  background: transparent; 
  border-radius: 0; 
  padding: 0.5rem 1rem; 
  box-shadow: none; 
  color: inherit; 
}


.legal-panel,
.company-panel{
  padding-top: 0;
  padding-bottom: 0;
}




.panel-heading{margin:0 0 1rem;font-size:.95rem;font-weight:600;color:#fff;text-align:center}


.footer-panels .legal-panel .panel-heading,
.footer-panels .company-panel .panel-heading {
  text-align: left;
}


.footer-panels .legal-panel .panel-heading {
  color: #ffffff; 
  font-weight: 700;
  margin:0 0 0.86rem;
  letter-spacing: 0.2px;
  font-size: 0.95rem;
}

.footer-panels .company-panel .panel-heading {
  color: #ffffff; 
  font-weight: 600;
  margin:0 0 1rem;
  font-size: 0.95rem;
}
.panel-list{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:.45rem;font-size:.92rem;color:#bfc7c7}
.panel-list a{color:#9aa3a3;text-decoration:none}
.panel-list a:hover{color:#fff;text-decoration:underline}

.panel-list a.legal-link:hover{text-decoration:none}

.company-panel .panel-list li strong{color:var(--accent-1);font-weight:600}


.company-panel .panel-list li{
  font-size:0.72rem;
  color:#bfc7c7;
}


.footer-contacts-info {
  margin-top: 0.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-contacts-info p {
  margin: 0;
  font-size: 0.88rem;
  color: #bfc7c7;
  line-height: 1.4;
}

.footer-contacts-info strong {
  color: var(--accent-1);
  font-weight: 600;
}

.footer-contacts-info .copyable {
  cursor: pointer;
  transition: color 0.2s ease;
}

.footer-contacts-info .copyable:hover {
  color: #29e6ff;
}


.contacts-icons{
  display:flex;
  flex-direction:row;
  gap:0.75rem;
  align-items:center;
  padding:0;
  margin:0;
}
.contacts-icons li{list-style:none}
.contact-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  border-radius:10px;
  background:rgba(255,255,255,0.02);
  border:1px solid rgba(255,255,255,0.02);
  transition:transform .18s ease, background .18s ease, border-color .18s ease;
}
.contact-icon img{width:22px;height:22px;display:block}
.contact-icon:hover{transform:translateY(-4px);background:rgba(255,255,255,0.04);border-color:rgba(255,255,255,0.06)}
.contact-icon:focus-visible{outline:none;box-shadow:0 0 0 3px rgba(41,230,255,0.12)}


.footer-social-icons{
  margin-top:0.6rem;
  margin-bottom:0.6rem;
  padding:0;
}
.footer-social-icons .contacts-icons{
  justify-content:flex-start;
}


@media (min-width: 768px) {
  .footer-social-icons .contacts-icons li:has(a[href^="mailto"]),
  .footer-social-icons .contacts-icons li:has(a[href^="tel:"]) {
    display: none;
  }
  
  .footer-contacts-info {
    display: flex;
  }
}


@media (max-width: 767px) {
  .footer-contacts-info {
    display: none;
  }
}


.visually-hidden{position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0 0 0 0)!important;white-space:nowrap!important;border:0!important}



.contact-form-section{padding:0.2rem 0; background:transparent;}
.contact-form{max-width:760px;margin:0 auto;display:grid;gap:1.4rem;padding:2.2rem 2rem 2.6rem;border:1px solid rgba(255,255,255,0.07);border-radius:20px;background:rgba(255,255,255,0.02);backdrop-filter:none;box-shadow:none;}
.contact-form .form-row{display:flex;flex-direction:column;gap:.55rem;}
.contact-form label{font-size:.78rem;font-weight:600;letter-spacing:.6px;color:#dfe9e9;text-transform:uppercase;}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"]{width:100%;padding:.9rem 1rem .95rem;border:1px solid rgba(255,255,255,0.14);border-radius:12px;background:rgba(255,255,255,0.05);color:#fff;font:500 .9rem Inter, system-ui, sans-serif;outline:none;transition:border-color var(--transition), background var(--transition), box-shadow var(--transition);}
.contact-form textarea{width:100%;padding:.9rem 1rem .95rem;border:1px solid rgba(255,255,255,0.14);border-radius:12px;background:rgba(255,255,255,0.05);color:#fff;font:500 .9rem Inter, system-ui, sans-serif;outline:none;min-height:140px;resize:vertical;line-height:1.4;transition:border-color var(--transition), background var(--transition), box-shadow var(--transition);} 
.contact-form textarea:focus{border-color:var(--accent-2);box-shadow:none;} 
.contact-form input:focus{border-color:var(--accent-2);box-shadow:none;}
.contact-form input::placeholder{color:#7e8787;}
.form-checkbox{display:flex;flex-direction:row;align-items:center;gap:.65rem;padding:.7rem 1rem;border:1px solid rgba(255,255,255,0.08);border-radius:14px;background:rgba(255,255,255,0.03);}
.form-checkbox input[type="checkbox"]{width:20px;height:20px;border:1px solid rgba(255,255,255,0.35);border-radius:6px;appearance:none;background:#121314;display:inline-flex;align-items:center;justify-content:center;cursor:pointer;position:relative;transition:background var(--transition), border-color var(--transition), box-shadow var(--transition);margin:0;flex-shrink:0;}
.form-checkbox input[type="checkbox"]:checked{background:linear-gradient(120deg,var(--accent-1),var(--accent-2));border-color:transparent;box-shadow:0 6px 18px -6px rgba(41,205,255,0.55);}
.form-checkbox input[type="checkbox"]:checked::after{content:'✔';font-size:.75rem;color:#111113;font-weight:700;}
.form-checkbox label{flex:1;font-size:.8rem;font-weight:500;letter-spacing:.3px;text-transform:none;color:#cfd7d7;display:flex;align-items:center;line-height:1;margin:0;white-space:nowrap;}
.contact-form .form-row.form-checkbox{display:flex !important;flex-direction:row !important;align-items:center !important;gap:.65rem;}
.contact-form .form-row.form-checkbox input[type="checkbox"]{align-self:center;}
.contact-form .form-row.form-checkbox label{display:inline-flex;align-items:center;line-height:1;}
.policy-link{color:var(--accent-1);text-decoration:none;position:relative;}
.policy-link:hover{color:var(--accent-2);}
.policy-link::after{content:'';position:absolute;left:0;bottom:-2px;height:2px;width:0;background:linear-gradient(90deg,var(--accent-1),var(--accent-2));transition:width var(--transition);border-radius:2px;}
.policy-link:hover::after{width:100%;}
.form-actions{display:flex;justify-content:flex-start;margin-top:.5rem;}
.contact-form .cta-button[disabled]{opacity:.55;cursor:not-allowed;box-shadow:none;border-color:rgba(255,255,255,0.15);color:#8aa8b1;}
.form-note{margin:.4rem 0 0;font-size:.65rem;color:#7a8383;letter-spacing:.4px;}
@media (max-width:640px){
  .contact-form{padding:1.6rem 1.2rem 2rem;gap:1.1rem;}
  .contact-form-section{padding:4.2rem 0 3.2rem;}
  
  .form-checkbox{flex-direction:row;align-items:center;}
  .form-checkbox input[type="checkbox"]{width:22px;height:22px;}
  .form-actions{justify-content:flex-start;}
}


.pricing{padding:0; background:transparent; position:relative;}

.pricing-subtitle{
  max-width:800px;
  margin:1rem auto 0;
  text-align:center;
  font-size:1.1rem;
  color:#bdbdbd;
  line-height:1.6;
}


.pricing-grid-three{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:2rem;
  margin-top:2rem;
  max-width:1400px;
  margin-left:auto;
  margin-right:auto;
}


.pricing-card-three{
  position:relative;
  border-radius:1.5rem;
  border:2px solid rgba(255, 255, 255, 0.164);
  background:rgba(0, 0, 0, 0.5);
  padding:2rem 2rem 2.5rem;
  transition:all 0.3s cubic-bezier(0.4,0,0.2,1);
}



.pricing-demo-badge{ display:none; }
.pricing-license-badge{ display:none; }
.pricing-bundle-badge{ display:none; }

@media (min-width: 641px) {
  .pricing-demo-badge{
    display:block;
    position:absolute;
    top:32px;
    right:32px;
    width:26px;
    height:auto;
    border-radius:4px;
    z-index: 5;
    pointer-events: auto;
    padding: 0;
    background: transparent;
  }

  
  .pricing-demo-badge img,
  .pricing-license-badge img,
  .pricing-bundle-badge img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: inherit;
  }

  .pricing-license-badge{
    display:block;
    position:absolute;
    top:2px;
    right:0px;
    width:26px;
    height:auto;
    border-radius:4px;
    z-index:5;
    pointer-events:auto;
    padding:0;
    background:transparent;
  }

  .pricing-bundle-badge{
    display:block;
    position:absolute;
    top:2px;
    right:0px;
    width:26px;
    height:auto;
    border-radius:4px;
    z-index:5;
    pointer-events:auto;
    padding:0;
    background:transparent;
  }
}

@media (max-width: 640px) {
  .pricing-demo-badge{
    display:block;
    position:absolute;
    top:26px;
    right:26px;
    width:32px;
    height:auto;
    border-radius:3px;
    z-index:5;
    pointer-events:auto;
    padding:0;
    background:transparent;
    box-shadow: 0 4px 10px rgba(0,0,0,0.12);
  }

  .pricing-license-badge{
    display:block;
    position:absolute;
    top:0px;
    right:0px;
    width:32px;
    height:auto;
    border-radius:3px;
    z-index:5;
    pointer-events:auto;
    padding:0;
    background:transparent;
    box-shadow: 0 3px 8px rgba(0,0,0,0.10);
  }

  .pricing-bundle-badge{
    display:block;
    position:absolute;
    top:0px;
    right:0px;
    width:32px;
    height:auto;
    border-radius:3px;
    z-index:5;
    pointer-events:auto;
    padding:0;
    background:transparent;
    box-shadow: 0 3px 8px rgba(0,0,0,0.10);
  }
}


.pricing-demo-badge::after,
.pricing-license-badge::after,
.pricing-bundle-badge::after{
  content: attr(data-tooltip);
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  transform: translateY(-6px);
  background: #424242;
  color: #ffffff;
  padding: 8px 10px;
  border-radius: 8px;
  white-space: normal;
  font-size: 0.95rem;
  min-width: 295px;
  max-width: 520px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 20;
}


.pricing-demo-badge:hover::after,
.pricing-demo-badge:focus::after,
.pricing-demo-badge.tooltip-open::after,
.pricing-license-badge:hover::after,
.pricing-license-badge:focus::after,
.pricing-license-badge.tooltip-open::after,
.pricing-bundle-badge:hover::after,
.pricing-bundle-badge:focus::after,
.pricing-bundle-badge.tooltip-open::after{
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}


@media (max-width: 520px) {
  .pricing-demo-badge::after,
  .pricing-license-badge::after,
  .pricing-bundle-badge::after{
    right: -6px;
    left: auto;
    min-width: 300px;
    max-width: 420px;
  }
}

.pricing-card-free{
  background:rgba(17, 17, 17, 0.4);
}

.pricing-card-featured{
  background:rgba(14,14,23,0.85);
  border:2px solid rgba(41,230,255,0.25);
  box-shadow:0 20px 60px -20px rgba(41,230,255,0.2);
}


article.pricing-card-three.pricing-card-featured[data-package="licenses"],
article.pricing-card-three.pricing-card-featured[data-package="bundles"]{
  border: none !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
article.pricing-card-three.pricing-card-featured[data-package="licenses"]:hover,
article.pricing-card-three.pricing-card-featured[data-package="bundles"]:hover{
  box-shadow: none !important;
  transform: translateY(-6px) !important; 
}

.pricing-card-three:hover{
  transform:translateY(-6px);
  border-color:rgba(41,230,255,0.25);
  box-shadow:0 20px 60px -20px rgba(41,230,255,0.2);
}

.pricing-card-featured:hover{
  transform:translateY(-6px);
  box-shadow:0 25px 70px -20px rgba(41,230,255,0.3);
}


.pricing-card-three,
.pricing-card-featured,
.pricing-card-new,
.pricing-featured{
  transform: none !important;
}
.pricing-card-three:hover,
.pricing-card-featured:hover,
.pricing-card-new:hover,
.pricing-featured:hover{
  transform: translateY(-6px) !important;
}


@media (max-width: 640px) {
  .pricing-card-three,
  .pricing-card-featured,
  .pricing-card-new,
  .pricing-featured {
    transform: none !important;
    box-shadow: none !important;
  }

  .pricing-card-three:hover,
  .pricing-card-featured:hover,
  .pricing-card-new:hover,
  .pricing-featured:hover,
  article.pricing-card-three.pricing-card-featured[data-package="licenses"]:hover,
  article.pricing-card-three.pricing-card-featured[data-package="bundles"]:hover{
    transform: none !important;
    box-shadow: none !important;
  }
}

.pricing-card-three-inner{
  display:flex;
  flex-direction:column;
  height:100%;
}

.flex{display:flex;}
.justify-between{justify-content:space-between;}
.items-start{align-items:flex-start;}
.mb-6{margin-bottom:1.7rem;}


.pricing-three-title{
  font-size:1.25rem;
  font-weight:700;
  color:#fff;
  margin:0;
}

.pricing-three-price{
  font-size:1.75rem;
  font-weight:800;
  color:#fff;
  white-space:nowrap;
}


.pricing-card-three .flex.justify-between,
.pricing-card-new .flex.justify-between,
.pricing-card .flex.justify-between{
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
}

.pricing-three-price,
.pricing-price,
.pricing-amount,
.price-value{
  display:block;
  text-align:left;
}

.price-value{
  display:inline-block;
}

.pricing-three-desc{
  margin:0 0 1.5rem 0;
  font-size:0.95rem;
  color:#9aa3a3;
  line-height:1.5;
}


.pricing-switcher{
  display:flex;
  flex-direction:column;
  gap:0;
  margin-bottom:1.5rem;
  border-radius:12px;
  overflow:hidden;
  background:rgba(255,255,255,0.02);
  border:1px solid rgba(255,255,255,0.06);
}

.pricing-option{
  cursor:pointer;
  padding:0.9rem 1.2rem;
  
  transition: background 0.18s ease, box-shadow 0.18s ease;
  border-bottom:1px solid rgba(255,255,255,0.04);
  user-select:none;
}

.pricing-option:last-child{
  border-bottom:none;
}

.pricing-option[aria-checked="true"]{
  background: var(--pricing-accent-bg);
  border-left:3px solid var(--pricing-accent);
}

.pricing-option:hover{
  background:rgba(141, 141, 141, 0.05);
}

.option-content{
  display:flex;
  justify-content:space-between;
  align-items:center;
  width:100%;
}

.option-label{
  font-size:0.95rem;
  font-weight:600;
  color:#ffffff;
}

.option-badge{
  font-size:0.75rem;
  font-weight:600;
  color: var(--pricing-accent);
  background: var(--pricing-badge-bg);
  border-radius:999px;
  padding:0.3rem 0.7rem;
  opacity:1; 
  transition:opacity 0.15s ease, transform 160ms;
}

.pricing-option[aria-checked="true"] .option-badge{
  opacity:1;
  transform:translateY(-1px) scale(1.02);
}

.option-badge:empty{
  display:none;
}

.option-price{
  font-size:0.9rem;
  font-weight:700;
  color:#fff;
}

.price-unit{
  font-weight:400;
  font-size:0.8rem;
  color:#9aa3a3;
}


@media (max-width:640px) {
  
  .option-content{
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    height: 100%;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
  .option-label{
    grid-column: 1;
    text-align: left;
    padding-right: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .option-badge{
    grid-column: 2;
    justify-self: center;
    position: static;
    transform: none;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--pricing-accent);
    background: var(--pricing-badge-bg);
    border-radius: 999px;
    padding: 0.3rem 0.7rem;
    opacity: 1;
  }
  .option-price{
    grid-column: 3;
    text-align: right;
    padding-left: 0;
  }
}


.pricing-three-features{
  list-style:none;
  margin:0 0 auto 0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:0.75rem;
  flex:1;
}

.pricing-three-features li{
  display:flex;
  align-items:flex-start;
  gap:0.7rem;
  font-size:0.9rem;
  color:#ffffff;
  line-height:1.4;
}

.check-icon{
  width:18px;
  height:18px;
  flex-shrink:0;
  stroke:var(--accent-1);
  margin-top:2px;
}


.pricing-three-cta{
  width:100%;
  padding:1rem 2rem;
  margin-top:1.5rem;
  text-align:center;
  font-size:0.95rem;
  font-weight:700;
  color: var(--pricing-accent);
  background: var(--pricing-accent-bg);
  border:2px solid var(--pricing-accent-border);
  border-radius:12px;
  cursor:pointer;
  transition:all 0.3s;
}

.pricing-cta-free{
  color:#fff;
  background:rgba(255,255,255,0.06);
  border-color:rgba(255,255,255,0.15);
}


.pricing-three-cta.pricing-cta-free{
  margin-bottom: 0px; 
}


article.pricing-card-three[data-package="licenses"]{
  --pricing-accent: #ffffff;
  --pricing-accent-2: #afafaf;
  --pricing-accent-bg: rgba(161, 161, 161, 0.08);
  --pricing-accent-border: rgba(209, 209, 209, 0.3);
  --pricing-badge-bg: rgba(255, 255, 255, 0.1);
}

article.pricing-card-three[data-package="bundles"]{
  --pricing-accent: #29e6ff;
  --pricing-accent-2: #29cdff;
  --pricing-accent-bg: rgba(41,230,255,0.08);
  --pricing-accent-border: rgba(41,230,255,0.3);
  --pricing-badge-bg: rgba(41,230,255,0.1);
}


.pricing-three-cta .cta-text{
  display:inline-block;
  margin-bottom:2px;
}

.pricing-cta-free:hover{
  background:rgba(255,255,255,0.1);
  border-color:rgba(255,255,255,0.25);
  transform:translateY(-2px);
  box-shadow:0 10px 30px -10px rgba(255,255,255,0.15);
}

.pricing-cta-featured{
  background:linear-gradient(120deg,var(--pricing-accent),var(--pricing-accent-2));
  border:none;
  color:#071017;
}

.pricing-cta-featured:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 35px -10px var(--pricing-accent-border);
}

.pricing-three-cta:hover{
  border-color:transparent;
  background:linear-gradient(120deg,var(--pricing-accent),var(--pricing-accent-2));
  color:#071017;
  transform:translateY(-2px);
  box-shadow:0 12px 35px -10px var(--pricing-accent-border);
}


.pricing-card-free,
.pricing-card-free:hover,
.pricing-card-free:focus,
.pricing-card-free:focus-visible{
  outline: none !important;
  box-shadow: none !important;
}

.pricing-card-free .pricing-three-cta,
.pricing-card-free .pricing-three-cta:hover,
.pricing-card-free .pricing-three-cta:focus,
.pricing-card-free .pricing-three-cta:focus-visible{
  outline: none !important;
  box-shadow: none !important;
}


.pricing-card-free .pricing-three-cta:hover,
.pricing-card-free .pricing-three-cta:active{
  background: rgba(255,255,255,0.06) !important;
  border-color: rgba(255,255,255,0.15) !important;
  color: #fff !important;
  box-shadow: none !important;
}


.pricing-card-free:hover,
.pricing-card-free:active,
.pricing-card-free:focus,
.pricing-card-free:focus-visible,
.pricing-card-free:focus-within{
  box-shadow: none !important;
  border-color: rgba(255,255,255,0.08) !important;
}


@media (max-width:1100px){
  .pricing-grid-three{
    grid-template-columns:1fr;
    gap:1.5rem;
  }
  
  .pricing-card-featured{
    transform:scale(1);
  }
  
  .pricing-card-featured:hover{
    transform:translateY(-6px) scale(1);
  }
}

@media (max-width:640px){
  .pricing-card-three{
    padding:1.5rem 1.25rem 2rem;
  }

  .pricing-three-title{
    font-size:1.1rem;
  }

  .pricing-three-price{
    font-size:1.4rem;
  }

  .pricing-three-desc{
    font-size:0.9rem;
  }

  .pricing-option{
    
    padding:0.9rem 0.6rem;
    min-height:56px;
  }

  
  .pricing-switcher{
    width: calc(100% + 32px);
    margin-left: -16px;
    margin-right: -16px;
    box-sizing: border-box;
  }
}


.pricing-grid-new{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:2rem;
  margin-top:3rem;
  max-width:1400px;
  margin-left:auto;
  margin-right:auto;
}


.pricing-card-new{
  position:relative;
  border-radius:20px;
  border:1px solid rgba(255,255,255,0.08);
  background:rgba(17,17,19,0.6);
  transition:all 0.35s cubic-bezier(0.4,0,0.2,1);
  overflow:hidden;
}

.pricing-card-new::before{
  content:'';
  position:absolute;
  inset:0;
  background:radial-gradient(circle at top left, rgba(41,230,255,0.08), transparent 60%);
  opacity:0;
  transition:opacity 0.4s;
  pointer-events:none;
}

.pricing-card-new:hover{
  transform:translateY(-8px);
  border-color:rgba(41,230,255,0.3);
  box-shadow:0 20px 60px -15px rgba(41,230,255,0.25);
}

.pricing-card-new:hover::before{
  opacity:1;
}


.pricing-featured{
  border:2px solid rgba(41,230,255,0.35);
  background:linear-gradient(135deg, rgba(17,17,19,0.85) 0%, rgba(41,230,255,0.08) 100%);
  box-shadow:0 25px 70px -20px rgba(41,230,255,0.3);
}

.pricing-featured::before{
  background:radial-gradient(circle at top left, rgba(41,230,255,0.15), transparent 60%);
  opacity:0.8;
}

.pricing-card-inner{
  padding:2rem 1.75rem 2.5rem;
  display:flex;
  flex-direction:column;
  height:100%;
}


.pricing-header-new{
  margin-bottom:1.5rem;
}

.pricing-badge{
  display:inline-block;
  padding:0.4rem 0.85rem;
  font-size:0.7rem;
  font-weight:600;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--accent-1);
  background:rgba(41,230,255,0.08);
  border:1px solid rgba(41,230,255,0.2);
  border-radius:999px;
  margin-bottom:1rem;
}

.featured-badge{
  background:linear-gradient(120deg,var(--accent-1),var(--accent-2));
  color:#071017;
  border:none;
  box-shadow:0 4px 20px -8px rgba(41,230,255,0.45);
}

.pricing-title-new{
  font-size:1.25rem;
  font-weight:700;
  color:#fff;
  margin:0 0 0.35rem 0;
  line-height:1.2;
}

.pricing-subtitle{
  font-size:0.95rem;
  color:#9aa3a3;
  margin:0;
}


.pricing-price-block{
  margin-bottom:2rem;
  padding-bottom:1.5rem;
  border-bottom:1px solid rgba(255,255,255,0.06);
}

.pricing-amount{
  font-size:2.5rem;
  font-weight:800;
  color:#fff;
  margin:0;
  line-height:1;
}

.pricing-amount.custom-price{
  font-size:1.6rem;
  color:var(--accent-2);
}

.pricing-period{
  font-size:0.85rem;
  color:#9aa3a3;
  margin-top:0.5rem;
}


.pricing-features-new{
  list-style:none;
  margin:0 0 auto 0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:0.85rem;
  flex:1;
}

.pricing-features-new li{
  display:flex;
  align-items:flex-start;
  gap:0.75rem;
  font-size:0.9rem;
  color:#ffffff;
  line-height:1.5;
}

.pricing-features-new .checkmark{
  width:20px;
  height:20px;
  flex-shrink:0;
  color:var(--accent-1);
  margin-top:2px;
}


.pricing-cta{
  width:100%;
  padding:1rem 2rem;
  margin-top:1.5rem;
  text-align:center;
  font-size:0.95rem;
  font-weight:700;
  letter-spacing:0.02em;
  color:var(--accent-1);
  background:rgba(41,230,255,0.08);
  border:2px solid rgba(41,230,255,0.35);
  border-radius:12px;
  cursor:pointer;
  transition:all 0.3s cubic-bezier(0.4,0,0.2,1);
  position:relative;
  overflow:hidden;
}

.pricing-cta::before{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(120deg,var(--accent-1),var(--accent-2));
  opacity:0;
  transition:opacity 0.3s;
}

.pricing-cta:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 35px -10px rgba(41,230,255,0.4);
  border-color:transparent;
}

.pricing-cta:hover::before{
  opacity:1;
}

.pricing-cta:hover{
  color:#071017;
}

.featured-cta{
  background:linear-gradient(120deg,var(--accent-1),var(--accent-2));
  border:none;
  color:#071017;
  box-shadow:0 10px 30px -10px rgba(41,230,255,0.45);
}

.featured-cta::before{
  display:none;
}

.featured-cta:hover{
  transform:translateY(-2px);
  box-shadow:0 15px 40px -10px rgba(41,230,255,0.55);
  color:#071017;
}


@media (min-width:1024px){
  .pricing-grid-new{
    grid-template-columns:repeat(3,1fr);
  }
  
  .pricing-featured{
    transform:scale(1.05);
    z-index:2;
  }
  
  .pricing-featured:hover{
    transform:scale(1.05) translateY(-8px);
  }
}

@media (max-width:1023px){
  .pricing-grid-new{
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:1.5rem;
  }
}

@media (max-width:640px){
  .pricing{
    padding:0.2rem 0;
  }
  
  .pricing-grid-new{
    grid-template-columns:1fr;
    gap:1.25rem;
  }
  
  .pricing-card-inner{
    padding:1.5rem 1.25rem 2rem;
  }
  
  .pricing-title-new{
    font-size:1.1rem;
  }
  
  .pricing-amount{
    font-size:2rem;
  }
  
  .pricing-features-new li{
    font-size:0.85rem;
  }
}


.pricing-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(290px,1fr));gap:1.8rem;margin-top:2.6rem;}
.pricing-card{position:relative;display:flex;flex-direction:column;gap:1rem;padding:1.6rem 1.4rem 1.5rem;border:1px solid rgba(255,255,255,0.08);border-radius:18px;background:radial-gradient(circle at top left, rgba(41,205,255,0.12), rgba(0,0,0,0.38) 70%);backdrop-filter:blur(8px);transition:transform .35s, box-shadow .35s, border-color .35s;}
.pricing-card::before{content:'';position:absolute;inset:0;background:linear-gradient(140deg, rgba(41,230,255,0.18), rgba(41,205,255,0) 55%);opacity:0;transition:opacity .4s;pointer-events:none;border-radius:inherit;}
.pricing-card{overflow:hidden;}
.pricing-card.is-selected{border-color:rgba(41,230,255,0.65);box-shadow:0 0 0 2px rgba(41,205,255,0.35),0 14px 42px -14px rgba(41,205,255,0.45);}
.pricing-card.is-selected::before{opacity:.8;}
.pricing-card:hover{transform:translateY(-10px);box-shadow:0 16px 50px -10px rgba(41,230,255,0.25);border-color:rgba(41,230,255,0.40);}
.pricing-card:hover::before{opacity:1;}
.pricing-head{display:flex;align-items:flex-start;gap:.85rem;}
.pricing-num{display:inline-flex;align-items:center;justify-content:center;font-size:.75rem;font-weight:700;letter-spacing:.6px;color:var(--accent-1);background:rgba(255,255,255,0.07);border:1px solid rgba(255,255,255,0.18);border-radius:8px;padding:.45rem .6rem;min-width:46px;}
.pricing-title{margin:0;font-size:1rem;font-weight:600;color:#fff;line-height:1.3em;}
.pricing-features{list-style:none;margin:.2rem 0 .2rem;padding:0;display:flex;flex-direction:column;gap:.45rem;}
.pricing-features li{font-size:.75rem;color:#c9d5d5;line-height:1.35em;position:relative;padding-left:1rem;}
.pricing-features li::before{content:'•';position:absolute;left:.1rem;top:0;color:var(--accent-2);font-weight:700;}
.pricing-bottom{display:flex;align-items:center;justify-content:space-between;margin-top:auto;gap:.8rem;}
.pricing-price{font-size:.95rem;font-weight:700;color:var(--accent-2);letter-spacing:.4px;}
.pricing-price-alt{color:#bfc7c7;}
.pricing-order{cursor:pointer;padding:.75rem 1.2rem;font-weight:600;font-size:.75rem;letter-spacing:.5px;border-radius:999px;border:1px solid rgba(41,205,255,0.55);background:rgba(41,205,255,0.08);color:var(--accent-1);transition:background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);}
.pricing-order:hover{background:linear-gradient(120deg,var(--accent-1),var(--accent-2));color:#071017;box-shadow:0 10px 30px -10px rgba(41,205,255,0.4);transform:translateY(-4px);}
.pricing-order:active{transform:translateY(-1px);}
@media (min-width:1100px){
  .pricing-title{font-size:1.08rem;}
  .pricing-features li{font-size:.78rem;}
}
@media (max-width:640px){
  .pricing-card{padding:1.4rem 1.2rem 1.4rem;}
  .pricing-bottom{flex-direction:column;align-items:flex-start;}
  .pricing-order{width:100%;text-align:center;}
}


.contact-select{width:100%;padding:.9rem 2.3rem .95rem 1rem;border:1px solid rgba(255,255,255,0.14);border-radius:12px;background:rgba(255,255,255,0.05);color:#fff;font:500 .9rem Inter, system-ui, sans-serif;outline:none;transition:border-color var(--transition), background var(--transition), box-shadow var(--transition);appearance:none;}
.contact-select:focus{border-color:var(--accent-2);box-shadow:0 0 0 3px rgba(41,205,255,0.35);} 
.pulse-select{animation:pulseBorder 900ms ease forwards;}
@keyframes pulseBorder{0%{box-shadow:0 0 0 0 rgba(41,205,255,0.0);}50%{box-shadow:0 0 0 6px rgba(41,205,255,0.35);}100%{box-shadow:0 0 0 0 rgba(41,205,255,0.0);} }

.contact-select-wrapper{display:flex;flex-direction:column;gap:.55rem;}
.select-shell{position:relative;}
.select-shell::after{content:'';position:absolute;right:1.05rem;top:50%;width:10px;height:10px;border-right:2px solid var(--accent-2);border-bottom:2px solid var(--accent-2);transform:translateY(-54%) rotate(45deg);pointer-events:none;transition:transform var(--transition), border-color var(--transition);}
.select-shell:focus-within::after{transform:translateY(-54%) rotate(225deg);border-color:var(--accent-1);}
.contact-select:hover{background:rgba(255,255,255,0.07);}
  .contact-select option{background:#111113;color:#ffffff;}
.contact-select option[value=""]{color:#7e8787;}
.contact-select:disabled{opacity:.5;cursor:not-allowed;}


@media (max-width:900px){
  .nav-list{
    display:none;position:absolute;top:88px;right:12px;background:linear-gradient(180deg,#121214,#161618);
    padding:1rem;border-radius:10px;box-shadow:0 20px 60px rgba(0,0,0,0.6);flex-direction:column
  }
  
  .main-nav{margin-right:12px}
  .burger{display:block}
  .slide img{height:40vh}
  .hero-inner{padding:4rem 0}
  
  main{padding-top:60px}
  
  
  .logo{margin-left:12px !important}
}


@media (max-width: 900px) {
  .home .home-bg {
    
    background-position: 43% top !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
  }

  
  .home > .container.home-inner {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .home-inner { padding: 3rem 16px 3rem 16px !important; }
}


.fade-in,
.fade-in.visible {
  
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  animation: none !important;
}
html{scroll-behavior:smooth}


img{
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  user-drag: none;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -webkit-touch-callout: none; 
  -webkit-tap-highlight-color: transparent;
}


.about-sim .about-text.fade-in.visible {
  padding-top: 22px;
  padding-left: 2rem;
  padding-right: 2rem;
  box-sizing: border-box;
}

.benefits-new.fade-in.visible {
  padding-left: 0rem;
  padding-right: 0rem;
  box-sizing: border-box;
}

.pricing-grid-three.fade-in.visible {
  box-sizing: border-box;
}

.section-title.fade-in.visible {
  padding-top: 30px;
}


section#trusted .section-title.fade-in.visible {
  padding-top: 0 !important;
  margin-top: 0 !important;
}


.home {
  position: relative;
  
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111113;
  overflow: hidden;
}
.home-bg {
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-image: url('assets/main_back.jpg');
  background-position: left top;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll; 
  z-index: 1;
}
.home-bg::before{
  
  content: none;
  display: none;
}
.home-bg::after {
  
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
  z-index: 2;
}


.home-bg{
  
  -webkit-mask-image: none;
  mask-image: none;
  -webkit-mask-size: initial;
  mask-size: initial;
  -webkit-mask-repeat: initial;
  mask-repeat: initial;
  transform: translateZ(0);
  will-change: background, -webkit-mask-image, mask-image;
}
.home-bg-blur {
  display: none;
}
.home > .container { width: 100%; max-width: 100%; padding-left: 0; padding-right: 0; }

.home > .container.home-inner {
  padding-left: 60px;
  padding-right: 30px;
  box-sizing: border-box;
}
.home-inner {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 6rem 30px 6rem 60px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  width: 100%;
}
.home-inner h1, .home-inner .subtitle {
  text-align: left;
}
.home-inner .hero-ctas {
  text-align: left;
  margin-top: 6px; 
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

@media (max-width: 768px) {
  
  .home {
    height: calc(100vh - 60px);
    min-height: calc(100vh - 60px);
    padding-top: 0;
    overflow: hidden;
  }
  .home-inner {
    padding: 3.5rem 18px 3.5rem 18px !important;
    align-items: flex-start;
  }
  .hero-title { text-align: left; }
  .home-inner h1 {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
  }
  .home-inner .subtitle {
    font-size: 1rem;
  }
  .home-inner .hero-ctas { margin-top: 6px; }
}

@media (max-width: 480px) {
  .home-inner {
    padding: 2rem 1rem;
  }
  .home-inner h1 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
  }
  .home-inner .subtitle {
    font-size: 0.95rem;
  }
  .cta-button {
    padding: 0.6rem 1rem;
    margin-right: 0.5rem;
    font-size: 0.7rem;
    min-height: 42px;
    border-radius: 28px;
  }

  
  .home-inner .hero-ctas .cta-button {
    font-size: 0.76rem !important;
    padding: 0.4rem 0.72rem !important; 
  }
  
  .hero-ctas .cta-button.primary,
  .hero-ctas .cta-button.ghost,
  .home-inner .hero-ctas .cta-button.primary,
  .home-inner .hero-ctas .cta-button.ghost {
    font-size: 0.9rem !important;
    padding: 0.4rem 0.72rem !important;
    min-height: 40px !important; 
    border-radius: 28px !important;
  }
}


@media (max-width: 900px) {
  .about-sim .about-text.fade-in.visible,
  .benefits-new.fade-in.visible,
  .pricing-grid-three.fade-in.visible,
  .faq .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box;
  }
}
@media (max-width: 640px) {
  .about-sim .about-text.fade-in.visible,
  .benefits-new.fade-in.visible,
  .pricing-grid-three.fade-in.visible,
  .faq .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box;
  }
}


@media (max-width: 900px) {
  .about-sim .about-text.fade-in.visible {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}
@media (max-width: 640px) {
  .about-sim .about-text.fade-in.visible {
    padding-left: 0.7rem !important;
    padding-right: 0.7rem !important;
  }
}




.faq{padding:0; background:transparent; position:relative;}
.faq .container{padding-bottom:0.5rem;box-sizing:border-box;}
.faq-list{max-width:1200px;margin-top:2rem;margin-left:auto;margin-right:auto;border:1px solid rgba(255,255,255,0.06);border-radius:18px;overflow:hidden;background:rgba(255,255,255,0.02); backdrop-filter:blur(8px);}
.faq-item + .faq-item{border-top:1px solid rgba(255,255,255,0.08);}
.faq-btn{width:100%;background:transparent;border:0;display:flex;align-items:center;justify-content:space-between;padding:1.15rem 1.4rem;cursor:pointer;font:600 1rem Inter, system-ui, sans-serif;color:#fff;text-align:left;position:relative;transition:background 320ms, color 320ms;}
.faq-btn:focus-visible{outline:none;box-shadow:inset 0 0 0 2px rgba(41,205,255,0.45);} 
.faq-btn:hover{background:rgba(255,255,255,0.05);} 
.faq-question{flex:1;line-height:1.4em;padding-right:.8rem;}
.faq-icon{width:28px;height:28px;display:inline-flex;align-items:center;justify-content:center;position:relative;transition:transform 500ms cubic-bezier(.25,.9,.25,1);} 
.faq-i{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;font-size:1.25rem;font-weight:600;color:var(--accent-1);transition:opacity 250ms ease, transform 300ms cubic-bezier(.4,0,.2,1);} 
.faq-i-plus{opacity:1;transform:rotate(0deg) scale(1);} 
.faq-i-arrow{opacity:0;transform:rotate(-90deg) scale(0.5);} 
.faq-btn:hover .faq-i-plus{color:var(--accent-2);} 
.faq-btn:hover .faq-i-arrow{color:var(--accent-2);} 
.faq-btn[aria-expanded="true"] .faq-i-plus{opacity:0;transform:rotate(45deg) scale(0.5);} 
.faq-btn[aria-expanded="true"] .faq-i-arrow{opacity:1;transform:rotate(0deg) scale(1);} 
.faq-btn[aria-expanded="true"]{background:rgba(255, 255, 255, 0.075);} 
.faq-answer{overflow:hidden;max-height:0;opacity:0;padding:0 1.6rem;transform:translateY(-8px);transition:max-height 700ms cubic-bezier(.25,.9,.25,1), opacity 480ms ease, transform 640ms cubic-bezier(.25,.9,.25,1), padding 700ms cubic-bezier(.25,.9,.25,1);will-change:max-height,opacity,transform;}
.faq-answer.open{opacity:1;transform:translateY(0);padding:0 1.6rem 1.3rem;}
.faq-answer.animating{box-shadow:inset 0 0 0 1px rgba(41,205,255,0.08);} 
.faq-answer p{margin:.6rem 0 0;color:#cccccc;font-size:.92rem;line-height:1.55em;}
@media (max-width:640px){
  .faq-btn{padding:.95rem 1rem;font-size:.95rem;}
  .faq-icon{width:30px;height:30px;font-size:1rem;}
  .faq-answer{padding:0 1.2rem 1.1rem;}
}
.benefits-section {
  position: relative;
  
  overflow: visible;
  padding: 0;
  display: block;
}


.benefits-section::before{
  content: '';
  position: absolute;
  
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('assets/drone_bg.png');
  background-repeat: no-repeat;
  background-position: 0% 100%;
  background-size: 43% auto; 
  
  transform: rotate(15deg);
  transform-origin: center center;
  will-change: transform;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}


.benefits-section::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('assets/drone_bg2.png');
  background-repeat: no-repeat;
  background-position: 160% 0%;
  background-size: 65% auto;
  opacity: 0.10;
  pointer-events: none;
  z-index: 0;
}


.benefits-new,
.benefits-grid,
.benefit-card{
  position: relative;
  z-index: 2;
}

.benefits-new {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-top: 2rem;
}


.benefits-grid {
  display: grid;
  padding-top: 1rem;
  padding-right: 2rem;
  padding-bottom: 3rem;
  padding-left: 2rem;
  grid-template-columns: repeat(2, 1fr); 
  gap: 2rem; 
  align-items: start;
}


.benefits-grid {
  align-items: stretch;
  grid-auto-rows: 1fr; 
}

.benefit-card {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 1rem 1.25rem;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(17,17,19,0.5);
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  height: 100%;
  box-sizing: border-box;
}


.benefit-card{
  position: relative;
  overflow: visible;
  z-index: 1;
}


.benefit-card::before,
.benefit-card::after{
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 18px;
  filter: blur(28px);
  opacity: 0.32;
  z-index: 0;
}

.benefit-card::before{
  
  top: -20px;
  left: -20px;
  width: 62%;
  height: 46%;
  background: linear-gradient(135deg, rgba(255, 252, 252, 0.349), rgba(255, 255, 255, 0.075));
}

.benefit-card::after{
  
  bottom: -20px;
  right: -20px;
  width: 62%;
  height: 46%;
  background: linear-gradient(315deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.089));
}


.benefit-card > *{position:relative; z-index:2}


.benefit-card:hover{
  
  transform: none !important;
  box-shadow: none !important;
}


.benefits-grid .benefit-card p {
  color: #d0d0d0; 
  line-height: 1.55em; 
  margin-bottom: 0.2rem; 
}

.benefits-footer-text {
  margin-top: 1.25rem;
  color: #d0d0d0;
  text-align: center;
}


.benefit-card p {
  flex: 1 1 auto;
}


.benefits-grid .benefit-card:nth-child(1),
.benefits-grid .benefit-card:nth-child(2) {
  padding-bottom: 0; 
}


.benefits-grid .benefit-card:nth-child(1),
.benefits-grid .benefit-card:nth-child(2) {
  position: relative !important;
  top: -8px !important; 
  transform: none !important; 
}


.benefits-grid .benefit-card:nth-child(1):hover,
.benefits-grid .benefit-card:nth-child(2):hover {
  
  top: -8px !important;
  transform: none !important;
  box-shadow: none !important;
}

@media (max-width: 900px) {
  
  .benefits-grid { grid-template-columns: 1fr; }
  .benefits-footer-text { text-align: left; }

  
  .benefits-grid { 
    gap: 1.5rem;
    grid-auto-rows: auto; 
    align-items: start; 
    padding: 0; 
  }
  .benefits-new { gap: 2rem; }
  .benefits-grid .benefit-card:nth-child(1),
  .benefits-grid .benefit-card:nth-child(2) {
    position: static !important;
    top: 0 !important;
    padding-bottom: 1rem !important;
    transform: none !important;
  }

  
  .benefit-card {
    height: auto;
  }

  
  .benefits-section::after {
   content: '';
   position: absolute;
   top: 6%;
   left: 0;
   right: 3%;
   bottom: 0;
   background-image: url('assets/drone_bg2.png');
   background-repeat: no-repeat;
   background-position: 0% 0%;
   background-size: 200% auto;
   opacity: 0.2;
   pointer-events: none;
   z-index: 0;
  }

  
  .benefits-section::before {
   content: '';
   position: absolute;
   top: 0%;
   left: 10%;
   width: 100%;
   height: 100%;
   background-image: url('assets/drone_bg.png');
   background-repeat: no-repeat;
   background-position: center;
   background-size: 200%;
   transform: rotate(15deg);
   opacity: 0.12;
   pointer-events: none;
   z-index: 0;
  }

  
  .benefit-card::before,
  .benefit-card::after {
    opacity: 0.12;
  }
}

@media (max-width: 600px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .benefits-footer-text { text-align: left; }
}

.benefit-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.benefit-row-reverse {
  grid-template-columns: 1fr 1fr;
}

.benefit-row-reverse .benefit-image {
  order: 2;
}

.benefit-row-reverse .benefit-content {
  order: 1;
}

.benefit-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  overflow: hidden;
}

.benefit-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 12px;
}

.benefit-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit-heading {
  font-size: clamp(1.2rem, 1.5vw + 0.7rem, 1.5rem);
  font-weight: 700;
  margin: 0;
  color: #fff;
  line-height: 1.3;
}

.benefit-heading-center {
  text-align: left;
}

.benefit-content p {
  font-size: clamp(0.95rem, 1vw + 0.65rem, 1.05rem);
  line-height: 1.7;
  color: #d0d0d0;
  margin: 0;
  text-align: left;
}

@media (max-width: 900px) {
  .benefit-row,
  .benefit-row-reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
    direction: ltr;
  }
  
  .benefits-new {
    gap: 3rem;
  }
  
  .benefit-heading {
    font-size: 1.4rem;
  }
  
  .benefit-content p {
    font-size: 0.95rem;
  }
}

@media (max-width: 600px) {
  .benefits-new {
    gap: 2.5rem;
  }
  
  .benefit-row {
    gap: 1.5rem;
  }
  
  .benefit-heading {
    font-size: 1.25rem;
  }
  
  .benefit-content p {
    font-size: 0.9rem;
  }
}

a, a:hover {
  text-decoration: none;
}

.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
}


.advantages-grid,.adv-card,.adv-title,.adv-text,.adv-icon{display:initial;}


.mx-auto{margin-left:auto;margin-right:auto}
.h-px{height:1px}
.w-full{width:100%}
.max-w-7xl{max-width:80rem}
.border-none{border-style:none}
.bg-gradient-to-r{background-image:linear-gradient(to right,var(--tw-gradient-stops))}
.from-transparent{--tw-gradient-from: transparent var(--tw-gradient-from-position);--tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}
.to-transparent{--tw-gradient-to: transparent var(--tw-gradient-to-position)}


.via-\[\#00ffff\]\/\[\.5\]{
  --tw-gradient-to: rgb(0 255 255 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), rgb(0 255 255 / .5) var(--tw-gradient-via-position), var(--tw-gradient-to);
}


hr.h-px.bg-gradient-to-r[class*="via-"],
hr.h-px.bg-gradient-to-r{
  height:1px;
  border:none;
  background-image:linear-gradient(to right,var(--tw-gradient-stops));
  background-repeat:no-repeat;
  background-size:100% 1px;
  box-shadow:none;
  margin:1.2rem auto;
  padding:0;
}


.tutorials{padding:0;}
.tutorials-head{max-width:980px;margin:0 auto 1rem;text-align:center}
.tutorials-head .small{font-size:.85rem;color:var(--muted);letter-spacing:1px;text-transform:uppercase}
.tutorials-title{font-size:1.9rem;margin:.25rem 0 0;color:#fff;font-weight:600}
.tutorials-title .muted{color:#9aa3a3;font-weight:500}
.tutorials-sub{color:#bfc7c7;margin-top:.6rem}

.tutorials-viewport{max-width:1180px;margin:0 auto;overflow-x:auto;overflow-y:hidden;padding:0 1rem;scroll-behavior:smooth;scroll-snap-type:x mandatory;-ms-overflow-style:none;scrollbar-width:none} 
.tutorials-viewport.no-snap{scroll-snap-type:none !important}
.tutorials-viewport::-webkit-scrollbar{display:none}
.tutorials-track{display:flex;gap:1.25rem;align-items:stretch;padding-bottom:6px}

.tutorial-item{scroll-snap-align:center}
.tutorial-item{display:block;flex:0 0 32%;max-width:none;border-radius:0;overflow:hidden;background:rgba(255,255,255,0.02);border:1px solid rgba(255,255,255,0.04);text-decoration:none;color:inherit;transition:transform .35s,box-shadow .35s;cursor:pointer}
.tutorial-item.featured{flex:0 0 88%;box-shadow:none;}
.tutorial-item:hover{box-shadow:none}
.thumb-wrap{width:100%;aspect-ratio:16/9;overflow:hidden;position:relative}
.thumb-wrap img{width:100%;height:100%;object-fit:cover;display:block;filter:brightness(.9) saturate(.95);transition:transform .5s ease,filter .35s}
.thumb-wrap img.no-save{-webkit-user-drag:none;user-select:none;pointer-events:auto}
.thumb-wrap video.tutorial-video{pointer-events:auto;}

.thumb-wrap video{width:100%;height:100%;max-width:100%;max-height:100%;display:block;object-fit:contain;background:#000}
.video-toggle{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%) scale(1);width:64px;height:64px;border-radius:50%;background:rgba(0,0,0,0.45);border:1px solid rgba(255,255,255,0.3);color:#fff;display:flex;align-items:center;justify-content:center;transition:transform .25s ease, opacity .25s ease, background .25s ease;z-index:3}
.video-toggle:hover{background:rgba(0,0,0,0.6)}
.video-toggle .ico-play{width:0;height:0;border-left:18px solid #fff;border-top:12px solid transparent;border-bottom:12px solid transparent;transform:translateX(2px);opacity:1;transition:opacity .22s ease}
.video-toggle .ico-pause{position:absolute;width:20px;height:20px;opacity:0;transition:opacity .22s ease}
.video-toggle .ico-pause::before,.video-toggle .ico-pause::after{content:"";position:absolute;left:0;right:0;height:3px;background:#fff;border-radius:2px}
.video-toggle .ico-pause::before{top:5px}
.video-toggle .ico-pause::after{bottom:5px}
.video-toggle.to-pause .ico-play{opacity:0}
.video-toggle.to-pause .ico-pause{opacity:1}
.video-toggle.fade-out{opacity:0;transform:translate(-50%,-50%) scale(.9);pointer-events:none}
.tutorial-item.is-active .thumb-wrap img{transform:scale(1.04);filter:brightness(1) saturate(1.05)}
.tutorial-meta{display:none !important}
.t-title{font-weight:700;color:#fff;font-size:.95rem}
.t-time{color:var(--muted);font-size:.82rem}

.tutorials-controls{max-width:1180px;margin:0 auto;display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:0 1rem}
.progress{flex:1;background:rgba(255,255,255,0.04);height:10px;border-radius:999px;overflow:hidden}
.progress-bar{height:100%;background:linear-gradient(90deg,var(--accent-1),var(--accent-2));width:0;transition:width 420ms ease}
.progress-dots{display:flex;gap:.5rem}
.dot{width:10px;height:10px;border-radius:50%;background:rgba(255,255,255,0.08);border:0;cursor:pointer;transition:background 0.3s ease}
.dot:hover{background:#fff}
.dot[aria-selected="true"]{background:#fff;box-shadow:0 8px 22px -12px rgba(0,0,0,0.6)}

@media (max-width:960px){
  .tutorial-item{flex:0 0 32%}
  .tutorial-item.featured{flex:0 0 94%}
}
@media (max-width:640px){
  .tutorials-track{gap:.75rem}
  .tutorial-item{flex:0 0 32%;border-radius:12px}
  .tutorials-head{padding-left:10px;padding-right:10px}
  .tutorials-controls{padding-left:10px;padding-right:10px}
}


.tutorial-item:focus{outline:none;box-shadow:none} 
.tutorial-item:focus-visible{outline:none;box-shadow:0 0 0 2px rgba(255,255,255,0.18)} 




.tutorials-controls{display:flex;justify-content:center;padding-top:0.9rem}
.tutorials-controls-shell{display:flex;align-items:center;gap:.6rem;padding:.4rem .6rem;background:rgba(18,20,24,0.64);border-radius:999px}
.tutorials-controls-shell .progress-dots{display:flex;gap:.6rem;padding:0 0.25rem}
.tutorials-controls-shell .dot{
  width:1.5rem; 
  height:.65rem; 
  border-radius:999px;
  background: rgba(228,232,239,0.10);
  border:0; cursor:pointer; transition: all .35s ease; box-shadow:0 2px 8px -2px rgba(0,0,0,0.55);
}
.tutorials-controls-shell .dot{transition:width .4s ease, background .35s ease, box-shadow .35s ease;}
.tutorials-controls-shell .dot:hover{background:rgba(92, 92, 92, 0.2)}
.tutorials-controls-shell .dot[aria-selected="true"]{background:rgba(255,255,255,0.92); box-shadow:0 8px 22px -12px rgba(0,0,0,0.6)}

.tutorials-controls-shell .dot[aria-selected="true"]{
  background:rgba(255,255,255,0.55);
  box-shadow:0 4px 14px -6px rgba(0, 0, 0, 0.55);
}


.tutorials-controls-shell .dot.active-track {width:100px; background:rgba(228,232,239,0.20); position:relative; overflow:hidden; flex:0 0 auto; cursor:default; box-shadow:0 2px 8px -2px rgba(0,0,0,0.5);}  
.tutorials-controls-shell .dot.active-track:hover { background:rgba(228,232,239,0.26); }
.tutorials-controls-shell .dot.active-track .track-fill {position:absolute;left:0;top:0;height:100%;width:0;background:rgba(255,255,255,0.92);border-radius:inherit;opacity:0;}
.tutorials-controls-shell .dot.active-track .track-fill.running{opacity:1;transition:opacity .3s ease;}


.tutorials--bleed .tutorials-viewport{max-width:none;width:100vw;margin-left:calc(50% - 50vw);padding:0;overflow-x:auto;overflow-y:hidden;scroll-snap-type:x mandatory;} 
.tutorials--bleed .tutorials-track{padding-left:0;padding-right:0;}

.tutorials--bleed .tutorial-item{flex:0 0 64%;}
@media (min-width:1400px){
  .tutorials--bleed .tutorial-item.featured{flex:0 0 82%;}
  .tutorials--bleed .tutorial-item{max-width:1040px;}
}
@media (max-width:960px){
  .tutorials--bleed .tutorial-item{flex:0 0 68%;}
  .tutorials--bleed .tutorial-item.featured{flex:0 0 82%;}
}
@media (max-width:640px){
  .tutorials--bleed .tutorial-item{flex:0 0 86%;}
}


.gallery .tutorials--bleed{margin-top:2rem;margin-left:calc(50% - 50vw);margin-right:calc(50% - 50vw);width:100vw;padding-left:0;padding-right:0;}

@media (max-width:640px){
  .tutorials-controls-shell{padding:.5rem}
  .tutorials-controls-shell .ctrl-mini{width:1.2rem}
  .tutorials-controls-shell .dot{width:1.2rem}
  .tutorials-controls-shell .track-btn{width:84px}
}

.tutorials .thumb-wrap img,
.tutorials .thumb-wrap video,
.tutorials .tutorial-item,
.tutorials .tutorial-item:focus,
.tutorials .tutorial-item:active{
  outline:none !important;
  -webkit-tap-highlight-color:transparent;
}

.tutorials .tutorial-item:focus-visible{
  outline:none;
  box-shadow:0 0 0 2px rgba(255,255,255,0.18);
}


.gallery .t604{
  margin-top:2rem;
}

.t-slds{
  overflow:hidden;
  position:relative;
}

.t-slds__bgimg{
  background-position:50%;
  background-repeat:no-repeat;
  background-size:cover;
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
}

.t-slds__container,
.t-slds__items-wrapper{
  overflow:hidden;
  position:relative;
}

.t-slds_animated-fast{
  transition:transform 0.3s ease-in-out;
}

.t-slds__item{
  float:left;
  overflow:hidden;
}

.t-slds__arrow_container{
  margin:0 auto;
  padding-left:0;
  list-style:none;
}

.t-slds__arrow_wrapper{
  bottom:0;
  cursor:pointer;
  list-style:none;
  position:absolute;
  top:0;
  width:1%;
  z-index:9;
}

.t-slds__arrow_wrapper-left{
  left:0;
}

.t-slds__arrow_wrapper-right{
  right:0;
}

.t-slds__arrow{
  background-color:transparent;
  border:none;
  cursor:pointer;
  display:inline-block;
  padding:0;
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  outline:none;
}

.t-slds__arrow:hover{
  opacity:0.8;
}

.t-slds__arrow-left{
  left:30px;
}

.t-slds__arrow-right{
  right:30px;
}

.t-slds__arrow-withbg{
  background-color:#eee;
  border-radius:100px;
  transition:background-color .2s ease-in-out;
}

.t-slds__arrow-withbg:hover{
  background-color:#ddd;
}

.t-slds__arrow-withbg .t-slds__arrow_body{
  left:50%;
  position:absolute;
  top:50%;
}

.t-slds__arrow-withbg .t-slds__arrow_body-left{
  transform:translate(-55%,-50%) rotate(180deg);
}

.t-slds__arrow-withbg .t-slds__arrow_body-right{
  transform:translate(-45%,-50%);
}

.t-slds__bullet_wrapper{
  font-size:0;
  list-style:none;
  padding:16px 0 0;
  position:relative;
  text-align:center;
  width:100%;
  z-index:10;
  margin:0!important;
  padding-left:0!important;
}

.t-slds__bullet{
  cursor:pointer;
  display:inline-block;
  padding:10px 5px;
}

.t-slds__bullet_body{
  background-color:#eee;
  border:none;
  border-radius:100px;
  box-sizing:border-box;
  cursor:pointer;
  height:8px;
  padding:0;
  transition:background-color .2s ease-in-out;
  width:8px;
  outline:none;
}

.t-slds__bullet_active .t-slds__bullet_body{
  background-color:#222!important;
}

.t-slds__bullet:hover .t-slds__bullet_body{
  background-color:#ccc;
}

.t604__imgwrapper{
  position:relative;
  overflow:hidden;
}

.t604__separator{
  width:100%;
  padding-bottom:64%; 
}

@media (max-width:960px){
  .t-slds__arrow-left{
    left:20px;
  }
  .t-slds__arrow-right{
    right:20px;
  }
}

@media (max-width:640px){
  .t-slds__arrow-left{
    left:5px;
  }
  .t-slds__arrow-right{
    right:5px;
  }
  .t-slds__arrow-withbg{
    height:32px!important;
    width:32px!important;
  }
  .t-slds__arrow_body{
    width:7px!important;
  }
}




.card-with-effect {
  position: relative;
  padding: 2rem 2rem 2.5rem;
  border-radius: 1.5em;
  background: linear-gradient(
      -30deg,
      var(--gradient-color),
      transparent,
      var(--gradient-color)
    ),
    linear-gradient(
      to bottom,
      var(--color-neutral-900, #1e1e1f),
      var(--color-neutral-900, #1e1e1f)
    );
  overflow: visible; 
}


.card-with-effect[↖️] {
  --f: url(#🌀↖️);
  --electric-border-color: rgb(212, 212, 212);
  --electric-light-color: #b1b1b1;
  --gradient-color: rgba(245, 245, 245, 0.2);
}

.card-with-effect[🎨] {
  --f: url(#🌀🎨);
  --electric-border-color: rgb(44, 197, 235);
  --electric-light-color: #1ef0ff;
  --gradient-color: rgba(30, 173, 255, 0.2);
}


.effect-inner-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}


.effect-border-outer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid rgba(173, 173, 173, 0.5);
  border-radius: 1.5em;
  padding-right: 0.15em;
  padding-bottom: 0.15em;
  pointer-events: none;
}


.effect-main-card {
  width: 100%;
  height: 100%;
  border-radius: 1.5em;
  border: 2px solid var(--electric-border-color);
  margin-top: -4px;
  margin-left: -4px;
  filter: var(--f);
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  will-change: filter;
  transform: translateZ(0);
}


.effect-glow-layer-1 {
  border: 2px solid rgba(102, 102, 102, 0.6);
  border-radius: 24px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  filter: blur(1px);
  pointer-events: none;
  will-change: filter;
  transform: translateZ(0);
}


.effect-glow-layer-2 {
  border: 2px solid var(--electric-light-color);
  border-radius: 24px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  filter: blur(4px);
  pointer-events: none;
  will-change: filter;
  transform: translateZ(0);
}


.effect-overlay-1 {
  display: none;
}


.effect-overlay-2 {
  display: none;
}


.effect-background-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 24px;
  filter: blur(32px);
  transform: scale(1.1) translateZ(0);
  opacity: 0.3;
  z-index: -1;
  background: linear-gradient(
    -30deg,
    var(--electric-light-color),
    transparent,
    var(--electric-border-color)
  );
  pointer-events: none;
  will-change: filter, transform;
}


.card-with-effect .pricing-card-three-inner {
  position: relative;
  z-index: 10;
  pointer-events: auto;
}


.card-with-effect.pricing-card-featured {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.card-with-effect.pricing-card-featured:hover {
  box-shadow: none !important;
}

@media (max-width: 1024px) {
  .card-with-effect .effect-inner-container,
  .card-with-effect .effect-border-outer,
  .card-with-effect .effect-main-card,
  .card-with-effect .effect-glow-layer-1,
  .card-with-effect .effect-glow-layer-2 {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
  }

  
  .card-with-effect,
  .card-with-effect * {
    filter: none !important;
    -webkit-filter: none !important;
    will-change: auto !important;
  }

  
  .card-with-effect .effect-background-glow {
    filter: blur(32px) !important;
    -webkit-filter: blur(32px) !important;
    will-change: filter, transform !important;
    display: block !important;
    visibility: visible !important;
    opacity: 0.3 !important;
    width: 100% !important;
    height: 100% !important;
    overflow: visible !important;
  }

  .card-with-effect .effect-overlay-1,
  .card-with-effect .effect-overlay-2 {
    filter: blur(4px) !important;
    -webkit-filter: blur(4px) !important;
    will-change: filter, transform !important;
  }

  
  .card-with-effect .pricing-card-three-inner {
    position: relative;
    z-index: 1;
  }
  
  .card-with-effect,
  .card-with-effect.pricing-card-featured {
    border-radius: 16px !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    background: rgba(17,17,19,0.4) !important;
    box-shadow: none !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }
  
  article.pricing-card-three.pricing-card-featured.card-with-effect[data-package="licenses"],
  article.pricing-card-three.pricing-card-featured.card-with-effect[data-package="bundles"] {
    border: 1px solid rgba(255,255,255,0.08) !important;
    background: rgba(17,17,19,0.4) !important;
    box-shadow: none !important;
    border-radius: 16px !important;
  }
  
  .card-with-effect .pricing-card-three-inner { z-index: 2; pointer-events: auto; }
 }

@media (max-width: 900px) {
  .section-title {
    font-size: 1.7rem !important;
    line-height: 1.15;
  }
}


@media (max-width: 900px) {
  
  *,
  a,
  button,
  input,
  select,
  textarea,
  [role="button"],
  .gallery-dot,
  .gallery-cell,
  .gallery-cell img,
  .gallery-flickity,
  .social-icon,
  .faq-btn,
  .pricing-option,
  .cta-button,
  .pricing-three-cta {
    -webkit-tap-highlight-color: transparent !important;
    -webkit-touch-callout: none;
    touch-action: manipulation;
  }

  .burger{display:inline-flex;align-items:center;justify-content:center;width:48px;height:48px;margin-right:8px;margin-left:40px;border-radius:10px;transition:background .18s ease;}
  
  .site-header .container{padding-right:0 !important}
  .burger:active,.burger:focus{background:rgba(255,255,255,0.03);outline:none}
  .burger:focus-visible{box-shadow:0 0 0 3px rgba(41,230,255,0.12);}

  
  .burger{
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    touch-action: manipulation;
  }
  .burger:active, .burger:focus { outline: none !important; box-shadow: none !important; }
  
  @media (pointer: coarse) {
    .burger {
      -webkit-appearance: none;
      appearance: none;
      background-color: transparent !important;
      outline: none !important;
      border: none !important;
    }
    
    .burger:focus:not(:focus-visible) { outline: none !important; box-shadow: none !important; }
    .burger:active { background-color: transparent !important; }
  }

  
  .burger-icon{display:inline-block;width:22px;height:18px;position:relative}
  .burger-icon span{position:absolute;left:0;right:0;height:2px;background:currentColor;border-radius:2px;display:block;transition:transform .22s cubic-bezier(.2,.9,.2,1),opacity .18s ease,top .22s}
  .burger-icon span:nth-child(1){top:0}
  .burger-icon span:nth-child(2){top:8px}
  .burger-icon span:nth-child(3){top:16px}

  
  .burger[aria-expanded="true"] .burger-icon span:nth-child(1){transform:translateY(8px) rotate(45deg)}
  .burger[aria-expanded="true"] .burger-icon span:nth-child(2){opacity:0}
  .burger[aria-expanded="true"] .burger-icon span:nth-child(3){transform:translateY(-8px) rotate(-45deg)}

  
  .mobile-nav-overlay{position:fixed;inset:0;background:rgba(0,0,0,0.46);z-index:58;opacity:0;pointer-events:none;transition:opacity .25s ease;box-shadow: none}
  body.menu-open .mobile-nav-overlay{opacity:1;pointer-events:auto}

  
  
  .nav-list{position:fixed;top:0;right:0;bottom:0;z-index:60;display:flex;flex-direction:column;gap:0;padding:1rem 1rem;background:linear-gradient(180deg, rgba(15,15,15,0.98), rgba(9,9,9,0.98));width:78vw;max-width:220px;transform:translateX(100%);transition:transform .32s cubic-bezier(.2,.9,.2,1);box-shadow: none}
  .nav-list[data-open="true"]{transform:translateX(0)}

  
  
  .nav-list{padding-top:3rem}
  .nav-list a{font-size:1.05rem;padding:1rem 0;border-radius:0;color:var(--muted);display:block}

  
  .main-nav{margin-right:0 !important}

  
  .container.home-inner { padding-left: 0.2rem !important; }

  

  
  .burger{z-index:66}
  .nav-list a:hover, .nav-list a:focus{color:#fff;background:transparent}

  
  .nav-list a,
  .nav-list li[role="none"] {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    touch-action: manipulation;
    background: transparent !important;
  }
  .nav-list a:active,
  .nav-list a:focus {
    background: transparent !important;
    outline: none !important;
    box-shadow: none !important;
  }

  
  .faq-item,
  .faq-item .faq-btn,
  .faq-item * {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    touch-action: manipulation;
    background: transparent !important;
  }
  .faq-item .faq-btn:active,
  .faq-item .faq-btn:focus {
    background: transparent !important;
    outline: none !important;
    box-shadow: none !important;
  }

  
  .pricing-option {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    touch-action: manipulation;
  }
  .pricing-option:active,
  .pricing-option:focus {
    outline: none !important;
    box-shadow: none !important;
  }
  
  .pricing-option .option-badge {
    background: var(--pricing-badge-bg) !important;
  }

  
  .nav-list .brand-in-panel{display:flex;align-items:center;gap:.75rem;padding-bottom:.75rem;border-bottom:1px solid rgba(255,255,255,0.04);margin-bottom:.75rem}

  
  body.menu-open{overflow:hidden;}

  
  .site-header{z-index:62}


@media (max-width: 480px) {
  .hero h1, .home-inner h1, .hero-title {
    font-size: 3.6rem !important;
    line-height: 1.02 !important;
    letter-spacing: 0.4px;
  }
  .hero-title .hero-line{display:block}
}
}
@media (max-width: 640px) {
  .section-title {
    font-size: 1.7rem !important;
    line-height: 1.15;
  }
}


@media (max-width: 768px) {
  .gallery-fullbleed { overflow: visible !important; }
  .gallery-flickity { min-height: calc(90vw * 0.5625) !important; }
  .gallery-flickity .gallery-cell {
    width: 90vw !important;
    min-height: calc(90vw * 0.5625) !important;
    height: auto !important;
    display: block !important;
  }
  .gallery-flickity .gallery-cell img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
}


.site-footer,
.footer-bottom-bar,
.footer-bar-container,
body, html {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}


@media (max-width: 900px) {
  .footer-bottom-bar {
    margin-top: 0.6rem; 
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    position: relative !important;
    bottom: 0 !important;
  }
}


.about-text.fade-in.visible,
.about-text.fade-in.visible p,
.about-text.fade-in.visible li,
.about-text.fade-in.visible span,
.about-text.fade-in.visible p:first-child {
  color: #d0d0d0;
}


@media (max-width: 640px) {
  .nav-list {
    background-image: linear-gradient(180deg, rgba(15,15,15,1), rgba(9,9,9,1)) !important;
    background-repeat: no-repeat !important;
    background-position: center bottom !important;
    background-size: cover !important;
    overflow: visible !important;
  }

  .nav-list::after {
    content: '';
    position: absolute;
    left: -26% !important;
    right: auto !important;
    bottom: 8% !important;
    width: 300% !important;
    height: 60% !important;
    transform: translateY(20%) rotate(-25deg) !important;
    transform-origin: center center !important;
    display: block !important;
    background-image: url('assets/drone_bg.png') !important;
    background-repeat: no-repeat !important;
    background-position: 50% 10% !important;
    background-size: 60% auto !important;
    pointer-events: none !important;
    z-index: 1 !important;
    opacity: 0.25 !important;
  }

  .nav-list > * {
    position: relative !important;
    z-index: 2 !important;
  }

  .mobile-nav-overlay {
    overflow: visible !important;
  }
}



.requirements-section {
  padding: 0;
  background: transparent;
  position: relative;
}

.req-content {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  max-width: 1200px;
  margin: 2rem auto 0;
}


.req-config-panel {
  flex: 0 0 280px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.5rem;
}

.req-config-label {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.75rem;
  display: block;
}


.req-custom-dropdown {
  position: relative;
  width: 100%;
}

.req-dropdown-selected {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: #fff;
  font-size: 0.95rem;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}

.req-dropdown-selected:hover {
  border-color: rgba(41, 230, 255, 0.4);
}

.req-custom-dropdown.open .req-dropdown-selected {
  border-color: var(--accent-1);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: none;
}

.req-custom-dropdown.open .req-dropdown-arrow {
  transform: rotate(180deg);
}

.req-dropdown-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(20, 20, 22, 0.98);
  border: 1px solid var(--accent-1);
  border-top: none;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.req-custom-dropdown.open .req-dropdown-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.req-dropdown-option {
  padding: 0.875rem 1rem;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-left: 3px solid transparent;
}

.req-dropdown-option:hover {
  background: rgba(41, 230, 255, 0.1);
  color: #fff;
  border-left-color: var(--accent-1);
}

.req-dropdown-option.selected {
  background: rgba(41, 230, 255, 0.15);
  color: var(--accent-1);
  border-left-color: var(--accent-1);
}

.req-dropdown-option:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.req-dropdown-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  max-width: 20px;
  flex-shrink: 0;
  opacity: 0.6;
}

.req-dropdown-option:hover .req-dropdown-icon {
  opacity: 1;
}

.req-dropdown-text {
  flex: 1;
}

.req-dropdown-check {
  width: 16px;
  height: 16px;
  min-width: 16px;
  max-width: 16px;
  flex-shrink: 0;
  opacity: 0;
  color: var(--accent-1);
  transition: opacity 0.2s ease;
}

.req-dropdown-arrow {
  width: 12px;
  height: 12px;
  min-width: 12px;
  max-width: 12px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.req-dropdown-option.selected .req-dropdown-check {
  opacity: 1;
}


.req-config-select {
  display: none;
}


.req-map-legend {
  display: flex;
  justify-content: space-between;
  margin: -1rem -1rem 1rem -1rem;
  padding: 0;
  background: rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px 20px 0 0;
}

.req-legend-item {
  flex: 1;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.75rem 0.5rem;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  opacity: 0.6;
}

.req-legend-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: currentColor;
  transition: width 0.25s ease;
}

.req-legend-item:hover {
  opacity: 0.85;
}

.req-legend-item.active {
  opacity: 1;
}

.req-legend-item.active::after {
  width: 60%;
}

.req-legend-item.desert { color: #fefe22; }
.req-legend-item.field { color: #7FFF00; }
.req-legend-item.forest { color: #00fc00; }
.req-legend-item.factory { color: #fbfbfb; }
.req-legend-item.ruins { color: #00BFFF; }


.req-chart-panel {
  flex: 1;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding-top: 1rem;
  padding-right: 0rem;
  padding-bottom: 0rem;
  padding-left: 0rem;
  position: relative;
  overflow: hidden;
}

.req-chart-container {
  position: relative;
  width: 100%;
  height: 500px;
}

.req-chart-svg {
  width: 100%;
  height: 100%;
  display: block;
  max-width: 100%;
}


.req-chart-grid-line {
  stroke: rgba(255, 255, 255, 0.06);
  stroke-width: 1;
}


.req-chart-axis-label {
  fill: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-family: inherit;
}

.req-chart-axis-label-y {
  fill: rgba(255, 255, 255, 0.4);
  font-size: 11px;
}


.req-chart-axis-title {
  fill: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  letter-spacing: 0.03em;
}


.req-chart-tooltip {
  position: absolute;
  background: rgba(0, 0, 0, 0.9);
  border: 1px solid rgba(41, 230, 255, 0.3);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  color: #fff;
  font-size: 0.85rem;
  pointer-events: none;
  opacity: 0;
  transform: translateY(5px);
  transition: all 0.2s ease;
  z-index: 10;
}

.req-chart-tooltip.visible {
  opacity: 1;
  transform: translateY(0);
}

.req-chart-tooltip-fps {
  color: #ffffff;
  font-weight: 700;
}


.req-chart-placeholder {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(255, 255, 255, 0.3);
  font-size: 1.1rem;
  text-align: center;
  transition: opacity 0.4s ease;
}

.req-chart-placeholder.hidden {
  opacity: 0;
  pointer-events: none;
}


.req-config-info {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.req-config-specs {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.req-config-specs strong {
  color: rgba(255, 255, 255, 0.8);
}


.req-more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  color: var(--accent-1);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s ease;
}

.req-more-link:hover {
  color: var(--accent-2);
  gap: 0.75rem;
}

.req-more-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}

.req-more-link:hover svg {
  transform: translateX(3px);
}


@media (max-width: 900px) {
  .req-content {
    flex-direction: column;
    gap: 1.5rem;
  }

  .req-config-panel {
    flex: none;
    width: 100%;
  }

  .req-chart-panel {
    width: 100%;
    margin: 0;
    padding: 0.75rem;
    border-radius: 16px;
    box-sizing: border-box;
  }

  .req-chart-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 60%; 
    min-height: unset;
  }

  .req-chart-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
  }

  .req-map-legend {
    padding: 0.5rem 0.5rem;
    margin: 0 0 0.75rem 0;
    flex-wrap: wrap;
    justify-content: center;
  }

  .req-legend-item {
    font-size: 0.7rem;
  }

  .req-chart-axis-title {
    font-size: 18px;
  }

  .req-chart-axis-label {
    font-size: 18px;
  }

  .req-chart-axis-label-y {
    font-size: 18px;
  }

  
  .req-dropdown-icon,
  .req-dropdown-check,
  .req-dropdown-arrow,
  .req-more-link svg {
    flex-shrink: 0;
    max-width: 20px;
    max-height: 20px;
  }

  .req-dropdown-option {
    padding: 0.75rem 0.875rem;
  }

  .req-dropdown-selected {
    padding: 0.75rem 0.875rem;
  }
}


@media (max-width: 480px) {
  .req-config-panel {
    padding: 1rem;
  }

  .req-dropdown-text {
    font-size: 0.85rem;
  }

  .req-legend-item {
    font-size: 0.65rem;
    padding: 0.5rem 0.25rem;
  }
}
