:root{
  
  --castal-purple: #6F2CFF;   
  --castal-hover:  #03BFB1;   
  --btn-radius:    12px;
  --btn-height:    49px;
  --font-family:   "Commissioner", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*{ box-sizing: border-box; }
html{
  scroll-behavior: smooth;
}


.site-header{
  width: 100%;
  background: #fff;
  box-shadow: 0px 4px 6px #00000029; 
  position: relative;
  z-index: 1000;

  
  --header-h: 90px;
}

.site-header{
  width: 100%;
  background: #fff;
  box-shadow: 0px 4px 6px #00000029; 
  position: relative;
  z-index: 1000;
  --header-h: 90px;
}

.header-inner{
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 20px;              
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--font-family);
}


.header-left,
.header-right{
  min-width: 0;
}

.header-left{
  display: flex;
  align-items: center;
  gap: 28px;                        
}

.header-left img{
  display: block;
  width: 285px;                     
  height: 66px;
  object-fit: contain;
  max-width: 100%;
}

.header-right{
  display: flex;
  align-items: center;
  gap: 18px;
}

.btn{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: var(--btn-height);
  padding: 0 18px;
  border-radius: var(--btn-radius);
  text-decoration: none;
  font-family: var(--font-family);
  font-weight: 700;               
  font-size: 16px;
  line-height: 1;
  color: #fff;
  overflow: hidden;                
  transition: transform .15s ease-out, filter .15s ease-out;
  will-change: transform;
}

.btn:active{
  transform: translateY(1px);
}

.btn-castal{
  background: var(--castal-purple);
  padding: 0 28px;      
  white-space: nowrap;  
}

.btn-crowdpolicy{
  width: auto;
  background: #000;
  white-space: nowrap;
  padding: 0 18px;
}

.btn::before{
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0; top: 0;
  background: var(--castal-hover);
  transform: translateY(100%);      
  transition: transform .35s ease;
  z-index: 0;
}

.btn:hover::before{
  transform: translateY(0);        
}

.btn span{
  position: relative;             
  z-index: 1;
}

.lang{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: 6px;
}

.lang-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;                      
  height: 19px;                    
  font-family: var(--font-family);
  font-weight: 400;                 
  font-size: 16px;
  color: #000;
  text-decoration: none;
  opacity: .85;
  transition: opacity .2s ease;
}

.lang-link:hover{ opacity: 1; }
.lang-link.active{ opacity: 1; }

.hamburger{
  width: 36px;                    
  height: 26px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  background: transparent;
  border: 0;
  padding: 2px 0;
  cursor: pointer;
  user-select: none;
}

.hamburger .line{
  height: 2px;
  width: 100%;
  background: #000;
  display: block;
  border-radius: 2px;
  transition: background .2s ease;
}

.hamburger:hover .line{
  background: #03BFB1;
}

.nav-toggle{
  position: absolute;
  left: -9999px;
  top: -9999px;
}

.menu-panel{
  position: fixed;
  left: 0;
  top: var(--header-h);
  width: 100%;
  height: 708px;            
  z-index: 999;

  background-image: url("images/Mask Group 19.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  overflow: hidden;        

  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}

.nav-toggle:checked ~ .menu-panel{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.menu-close{
  position: absolute;
  top: 37px;             
  right: 100px;           
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-close img{
  width: 44px;
  height: 44px;
  display: block;
}

.menu-links{
  height: 100%;
  display: flex;
  flex-direction: column;

  width: 520px;            
  max-width: 520px;
  margin-left: auto;       

  align-items: flex-start; 

  padding-top: 119px;
  padding-right: 179px;
  padding-bottom: 122px;

  gap: 23px;
}

.menu-links a{
  font-family: "Commissioner", var(--font-family);
  font-weight: 700;
  font-size: 25px;
  color: #FFFFFF;
  text-decoration: none;
  text-shadow: 0px 3px 6px rgba(0,0,0,0.102);
  position: relative;
  display: inline-block;       
}

.menu-links a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  height: 2px;
  width: 100%;                
  background: #FFFFFF;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.menu-links a:hover::after{
  transform: scaleX(1);
}


@media (max-width: 1024px){
  .header-inner{
    gap: 12px;
  }

  .header-left{
    flex: 1 1 auto;
    gap: 16px;
    min-width: 0;
  }

  
  .header-left img{
    width: clamp(180px, 22vw, 240px);
    height: auto;
    max-width: 100%;
  }

  .header-right{
    flex: 0 1 auto;
    flex-wrap: wrap;           
    justify-content: flex-end;
    row-gap: 8px;
    column-gap: 12px;
    min-width: 0;
  }

  .btn{
    font-size: 15px;
    padding: 0 14px;
  }

  .btn-castal{
    padding: 0 18px;
    white-space: nowrap;
  }

  
  .btn-crowdpolicy{
    width: auto;
    min-width: 110px;            
    padding: 0 16px;
  }

  .lang{
    margin-left: 0;
  }
}

@media (max-width: 920px){
  .site-header{ --header-h: 84px; }
  .header-inner{ gap: 14px; }
  .header-left{ gap: 16px; }

  .header-left img{
    width: 210px;
    height: 52px;
  }

  .btn-castal{ width: 170px; }
  .btn-crowdpolicy{ width: 120px; }
}

@media (max-width: 760px){
  .site-header{ --header-h: 132px; } 

  .header-inner{
    flex-wrap: wrap;           
    align-items: center;
    justify-content: center;
    row-gap: 12px;
  }

  .header-left{
    flex: 1 1 100%;           
    justify-content: center;
    gap: 12px;
  }

  .header-left img{
    height: 52px;             
    max-width: 210px;
    width: auto;
  }

  .header-right{
    flex: 1 1 100%;           
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 12px;           
  }

  .btn{
    height: 44px;
    font-size: 15px;
    padding: 0 16px;
  }

  .btn-castal{ padding: 0 20px; width: auto; }
  .btn-crowdpolicy{ width: auto; }

  .lang{ margin-left: 0; }
}

@media (max-width: 560px){
  .site-header{ --header-h: 120px; }
  .header-inner{ padding: 10px 12px; }

  .header-left img{
    height: 44px;              
    max-width: 180px;
    width: auto;
  }

  .header-right{
    gap: 8px 10px;
  }

  .header-right img{
    height: 24px;
    width: auto;
    max-width: 100%;
  }

  .btn{
    height: 40px;
    font-size: 14px;
    padding: 0 12px;
  }

  .btn-crowdpolicy,
  .btn-castal{
    width: auto;
  }

  .menu-links a{
    font-size: 22px;
  }
}

@media (max-width: 400px){
  .lang{ display: none; }      
}



html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  background: #ffffff; 
  font-family: "Commissioner", sans-serif;
}


.site-header {
  width: 100%;
  background: #fff;
  box-shadow: 0px 4px 6px #00000029;
  position: relative;
  left: 0;
  right: 0;
  z-index: 10;
}

body.no-scroll {
  overflow: hidden;
  height: 100vh;
  touch-action: none;
}


.page {
  padding: 40px 0;
  display: flex;
  justify-content: center;
}

.hero {
  display: flex;
  justify-content: center;
  padding: 0 16px;
}


.hero-media {
  position: relative;
  width: min(1085px, 100%);
  margin-top: 69px;
}


.hero-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}


.interest-btn {
  position: absolute;

 
  left: 8.2%;   
  bottom: 8.0%;   

  
  width: clamp(128px, 16.5%, 179px);
  height: clamp(38px, 4.6vw, 49px);

  background: #03BFB1;
  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-family: "Commissioner", sans-serif;
  font-weight: 700;
  font-size: clamp(13px, 1.6vw, 16px);

  color: #ffffff;
  text-decoration: none;

  overflow: hidden;
  z-index: 2;
}


.interest-btn span {
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.interest-btn::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background: #103366;
  border-radius: inherit; 
  z-index: 1;
  transition: height 0.4s ease;
}


.interest-btn:hover::before {
  height: 100%;
}

.interest-btn:hover span {
  color: #ffffff;
}

@media (max-width: 768px) {
  .hero-media { margin-top: 40px; }

  .interest-btn {
    left: 36px;
    bottom: 28px;
    width: 160px;
    height: 44px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .hero-media { margin-top: 24px; }

  .interest-btn {
    left: 18px;
    bottom: 18px;
    width: 140px;
    height: 40px;
    font-size: 14px;
    border-radius: 10px;
  }

  .interest-btn::before { border-radius: 10px; }
}

@media (max-width: 360px) {
  .interest-btn {
    left: 12px;
    bottom: 14px;
    width: 128px;
    height: 38px;
    font-size: 13px;
  }
}

@media (max-width: 600px) {
  .interest-btn {
    width: 100px;
    height: 24px;

    font-size: 10px;
    border-radius: 9px;
  }
}
/* =========================
   ENGLISH HERO 
   Uses html[lang="en"]
   ========================= */

html[lang="en"] .hero-media {
  margin-top: 54px;
}


html[lang="en"] .interest-btn {
  left: 7.5%;
  bottom: 2.5%;

  width: clamp(140px, 20%, 190px);
}


@media (max-width: 600px) {
  html[lang="en"] .interest-btn {
    width: 100px;
    height: 24px;
    font-size: 13px;
    border-radius: 9px;
  }
}

@media (max-width: 480px) {
  html[lang="en"] .interest-btn {
    width: 80px;
    height: 21px;
    font-size: 8.5px;
    border-radius: 8px;
    bottom: 2%;
  }
}



@media (max-width: 360px) {
  html[lang="en"] .interest-btn {
    width: 96px;
    height: 28px;
    font-size: 11.5px;
  }
}

@media (max-width: 720px) and (min-width: 601px) {
  html[lang="en"] .interest-btn {
    bottom: 4.5%;
     width: 100px;
    height: 24px;
    font-size: 13px;
    border-radius: 9px;
  }
}




.features {
  position: relative;
  margin-top: 110px;
  padding-bottom: 80px;
  z-index: 0;
}


.features-title {
  font-weight: 700;
  font-size: 25px;
  line-height: 30px;
  position: relative;
  left: 50%;                    
  transform: translateX(-530px); 
  margin-bottom: 78px;          
  white-space: nowrap;
  text-align: left;
}


.features-grid{
  display: grid;
  grid-template-columns: 382px 382px;
  grid-auto-rows: 275px;
  gap: 35px;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 100%;
  max-width: 900px;
  position: relative;         
  z-index: 1;                
}


.feature-card {
  width: 382px;
  height: 275px;
  display: block;
  object-fit: cover;
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
  border-radius: 0 !important;
}


.feature-card.span-2 {
  grid-column: 1 / span 2;
  justify-self: center;
}


.features::before {
  content: "";
  position: absolute;
  width: 513px;
  height: 513px;
  left: 50%;                        
  top: 230px;
  transform: translateX(-350px);     
  background: radial-gradient(closest-side at 50% 50%, #006C63 0%, #FFFFFF 100%) no-repeat padding-box;
  opacity: 0.2;                      
  filter: blur(30px);
  z-index: 0;
  pointer-events: none;
}



@media (max-width: 900px) {
  
  .features-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    justify-content: center;
  }
  .feature-card,
  .feature-card.span-2 {
    grid-column: auto;
    width: min(382px, 100%);
    height: auto;
    justify-self: center;
  }
  .features::before {
    left: 50%;
    top: 180px;
    transform: translateX(-50%);
    width: 60vw;
    height: 60vw;
  }
}

@media (max-width: 1200px) {
  .features-title { transform: translateX(-480px); } 
}
@media (max-width: 1050px) {
  .features-title { transform: translateX(-440px); }
}
@media (max-width: 950px) {
  .features-title { transform: translateX(-400px); }
}


@media (max-width: 860px) {
  .features-title {
    white-space: normal;         
    font-size: 22px;
    line-height: 28px;
    transform: translateX(-320px);
  }
}


@media (max-width: 720px) {
  .features-title {
    position: static;            
    transform: none;             
    margin: 0 16px 48px;         
    white-space: normal;
    font-size: 20px;
    line-height: 26px;
  }
}
@media (max-width: 480px) {
  .features-title {
    text-align: left;
    margin: 0 56px 48px;
  }
}

.multichannel{
  padding: 40px 16px 0px;
}

.mc-inner{
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 60px;                    
   transform: translateX(80px); 
}


.mc-title{
  font-family: "Commissioner", sans-serif;
  font-weight: 700;             
  font-size: 25px;
  line-height: 1.2;
  color: #000;
  margin: 0 0 30px 0;
  text-align: left;
}

.mc-text{
  font-family: "Commissioner", sans-serif;
  font-weight: 400;             
  font-size: 16px;
  line-height: 1.6;
  color: #000;
  margin: 0;
  max-width: 360px;             
  text-align: left;
}


.mc-cards{
  display: flex;
  gap: 70px;                    
  align-items: flex-start;
}


.mc-card{
  position: relative;
  width: 206px;                 
  height: 206px;
}


.mc-box{
  position: relative;
  width: 206px;
  height: 206px;
  border: 4px solid #03BFB1;
  border-radius: 14px;          
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 18px;
  background: transparent;
  z-index: 1;                   
}

.mc-box > span{
  font-family: "Commissioner", sans-serif;
  font-weight: 600;             
  font-size: 18px;
  line-height: 1.25;
  color: #000;
}


.mc-img{
  position: absolute;
  right: -69px;                  
  bottom: -46px;
  width: 156px;
  height: 157px;
  object-fit: contain;
  z-index: 2;                   
  pointer-events: none;
}


@media (max-width: 1026px){
  .mc-inner{
    flex-direction: column;
    gap: 28px;
    transform: none;              
    align-items: center;         
  }

  .mc-text{
    max-width: 520px;
    text-align: left;         
  }

  .mc-cards{
    gap: 77px;
    justify-content: center;    
  }
}

@media (max-width: 600px){
  .mc-cards{
    flex-direction: column;
    gap: 28px;
    align-items: center;         
  }

  .mc-card{
    width: 206px;               
    height: 260px;                
    margin-inline: auto;          
  }

  .mc-box{
    margin: 0 auto;          
  }

  .mc-img{
    left: 91%;                
    right: auto;
    transform: translateX(-50%);  
    bottom: -21px;               
  }
}
@media (max-width: 480px){
  .mc-title{
    text-align: left;
    margin: 0 auto 30px;
  }
}



.platform {
  padding: 49px 16px 80px;
}

.platform-inner {
  display: flex;
  align-items: flex-start;
  gap: 70px;
  flex-wrap: nowrap;

  
  max-width: calc(206px * 3 + 70px * 2); 
  width: 100%;
  margin: 0 auto;
}

.platform-card {
  position: relative;
  width: 206px;
  height: 206px;
}


.platform-box {
  position: relative;
  width: 206px;
  height: 206px;
  border: 4px solid #03BFB1;
  border-radius: 14px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 18px;
  background: transparent;
  z-index: 1;
}


.platform-box span {
  font-family: "Commissioner", sans-serif;
  font-weight: 600;               
  font-size: 18px;
  line-height: 1.25;
  color: #000;
}


.platform-img {
  position: absolute;
  right: -69px;
  bottom: -46px;
  width: 156px;
  height: 157px;
  object-fit: contain;
  z-index: 2;                      
  pointer-events: none;
}

 
  .platform-inner > * {
    align-self: stretch;   
  }


@media (min-width: 901px) {
  .platform-inner {
    transform: translateX(-20px);
  }
}




@media (max-width: 900px) and (min-width: 601px) {
  .platform {
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 72px;
    overflow-x: hidden; 
  }

  .platform-inner {
    display: flex;
    flex-wrap: wrap;         
    justify-content: center; 
    align-items: flex-start;
    gap: 48px 56px;          
    transform: none;
    margin: 0 auto;
    max-width: 100%;         
    overflow: hidden;       
    padding: 0;
  }

  .platform-card {
    width: 206px;
    height: 206px;
    position: relative;
  }

  .platform-box {
    width: 206px;
    height: 206px;
  }

  
  .platform-img {
    position: absolute;
    right: -32px;            
    bottom: -36px;
    width: 136px;
    height: 137px;
    max-width: none;
    pointer-events: none;
  }
}






@media (max-width: 600px) {
  .platform {
    padding: 49px 16px 100px;
  }

  .platform-inner {
    flex-direction: column;
    align-items: center;
    gap: 80px;                
    transform: none;
    max-width: 206px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }

  .platform-inner > * {
    align-self: stretch;
  }

  .platform-card {
    position: relative;
    width: 206px;
    height: 206px;
  }

  .platform-box {
    width: 206px;
    height: 206px;
  }

  
  .platform-img {
    position: absolute;
    left: 92%;
    right: auto;
    bottom: -51px;
    transform: translateX(-50%);
    width: 140px;
    height: auto;
    pointer-events: none;
  }
}



  
 




.web-widget{
  padding: 60px 16px;              
}

.ww-inner{
  display: flex;
  align-items: center;
  justify-content: center;          
  gap: 208px;                       
  max-width: 1200px;                
  margin: 0 auto;                   
}

.ww-img{
  width: 524px;                    
  height: auto;                     
  max-width: 100%;                  
  display: block;
}

.ww-copy{
  max-width: 480px;                 
}

.ww-title{
  font-family: "Commissioner", sans-serif;
  font-weight: 700;                
  font-size: 25px;
  line-height: 1.2;
  color: #000;
  margin: 0 0 40px 0;              
  text-align: left;
}

.ww-text{
  font-family: "Commissioner", sans-serif;
  font-weight: 400;                 
  font-size: 16px;
  line-height: 1.6;
  color: #000;
  margin: 0;
  text-align: left;
}



@media (max-width: 980px) {
  .ww-inner {
    gap: 60px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .ww-copy {
    max-width: 520px;
  }

  .ww-title{
    text-align: left;
  }
  .ww-text {
    text-align: left;
  }
}


@media (max-width: 720px) {
  .ww-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    text-align: left;
  }

  .ww-img {
    order: -1; 
    width: min(520px, 100%);
    margin: 0 auto;
  }

  .ww-copy {
    max-width: 600px;
    margin: 0 auto;
  }

  .ww-title{
    text-align: left;
  }
  .ww-text {
    text-align: left;
  }
}


:root{
  --cta-purple: #926BFC;   
  --cta-fill:   #03BFB1;   
}

.cta{
  padding: 60px 16px;
  display: flex;
  justify-content: center; 
           
}

.cta-panel{
   overflow: visible !important;
  position: relative;
  width: 1085px;                       
  height: 342px;
  background: #000;
  border-radius: 28px;                  
  display: grid;
  grid-template-columns: 1fr 460px;    
  align-items: center;
  overflow: visible;                  
}


.cta-left{
  padding-left: 56px;                   
  color: #fff;
  z-index: 1;
}

.cta-title{
  font-family: "Commissioner", sans-serif;
  font-weight: 700;
  font-size: 25px;
  line-height: 30px;
  color: #fff;
  margin: 0 0 16px 0;
  white-space: nowrap; 
}

.cta-sub{
  font-family: "Commissioner", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  margin: 0 0 22px 0;
  white-space: nowrap; 
}

.cta-btn{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 202px;
  height: 49px;
  border-radius: 10px;
  background: var(--cta-purple);
  color: #fff;
  font-family: "Commissioner", sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  overflow: hidden;
  isolation: isolate; 
}

.cta-btn::before{
  content: "";
  position: absolute;
  inset: 0;
  background: var(--cta-fill);
  transform: translateY(100%);
  transition: transform .35s ease;
  z-index: -1; 
}

.cta-btn:hover::before{
  transform: translateY(0);
}

.cta-btn span,
.cta-btn{ z-index: 2; } 



.cta-visual{
  position: relative;
  height: 100%;
  z-index: 1;
 
}

.cta-img{
  position: absolute;
  right: 117px;                         
  transform-origin: center;
  filter: drop-shadow(0 8px 22px rgba(0,0,0,.25));
}


.cta-img-back{
  width: 318px;                        
  height: auto;
  top: -78px;                          
  transform: rotate(2deg);
  z-index: 1;
}


.cta-img-front{
  width: 302px;                     
  height: auto;
  top: -41px;
  right: 128px;
  transform: rotate(2deg);
  z-index: 2;                         
}



@media (max-width: 1140px){
  .cta-panel{
    width: 100%;
    max-width: 1085px;
    grid-template-columns: 1fr 420px;
  }
}


@media (max-width: 860px){
  .cta-panel{
    height: auto;
    padding: 40px 24px 143px;      
    grid-template-columns: 1fr;   
    overflow: hidden;              
  }

  .cta-left{
    padding-left: 0;
    text-align: center;
    z-index: 2;                   
  }

  
  .cta-title,
  .cta-sub{ 
    white-space: normal;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

 .cta-visual {
  position: relative;
  height: clamp(340px, 65vw, 520px); 
  margin-top: 39px;
  z-index: 1;
  overflow: visible; 
}

.cta-img-back {
  left: 50%;
  right: auto;
  top: -20px; 
  width: clamp(300px, 77vw, 460px); 
  transform: translateX(-50%) rotate(10deg);
}

.cta-img-front {
  left: 50%;
  right: auto;
  top: 10px;
  width: clamp(280px, 68vw, 440px); 
  transform: translateX(-50%) rotate(6deg);
}

}


@media (max-width: 480px){
  .cta-title{ font-size: 22px; line-height: 28px; }
  .cta-sub{ font-size: 15px; line-height: 22px; }
  .cta-btn{ width: 100%; max-width: 210px; } 
}


.flows{
  padding: 70px 16px;
   margin-top: 80px;
}

.flows-inner{
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;  
  gap: 208px;                
}


.flows-visual{
  position: relative;
  width: 319px;
  height: 384px;
  z-index: 0;               
}


.flows-visual::before{
  content: "";
  position: absolute;
  width: 200px;
  height: 159px;
  left: 43%;
  top: 91%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 50% 50%, rgba(14,159,148,0.57) 0%, rgba(255,255,255,0) 100%);

  opacity: 1;              
  filter: blur(30px);
  z-index: -2;              
  pointer-events: none;
}


.flows-visual::after{
  content: "";
  position: absolute;
  width: 184px;
  height: 160px;
  left: 38%;
  top: 24%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 50% 50%, rgba(250, 233, 3, 0.73) 0%, rgba(255,255,255,0) 100%);

  filter: blur(30px);
  z-index: -1;             
  pointer-events: none;
}

.flows-img{
  position: relative;
  width: 319px;
  height: auto;
  display: block;
  z-index: 0;               
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.15));
}
.flows-img-en{
  position: relative;
  width: 450px;
  height: auto;
  display: block;
  z-index: 0;               
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.15));
  bottom: 60px;
}

.flows-copy{
  max-width: 460px;
}

.flows-title{
  font-family: "Commissioner", sans-serif;
  font-weight: 700;        
  font-size: 25px;
  line-height: 30px;
  color: #000;
  margin: 0 0 40px 0;      
  
}

.flows-text{
  font-family: "Commissioner", sans-serif;
  font-weight: 400;       
  font-size: 16px;
  line-height: 1.6;
  color: #000;
  margin: 0;
  text-align: left;
}


@media (max-width: 900px){
  .flows-inner{
    flex-direction: column;
    gap: 28px;
    text-align: center;
  }
  .flows-copy{ max-width: 600px; }
  .flows-title{ text-align: left; }
  .flows-text{text-align: left;}
}

.admin{
  padding: 80px 16px;
}

.admin-inner{
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;  
  gap: 208px;                 
}


.admin-title{
  font-family: "Commissioner", sans-serif;
  font-weight: 700;         
  font-size: 25px;
  line-height: 30px;
  color: #000;
  margin: 0 0 40px 0;       
  text-align: left;
}

.admin-text{
  font-family: "Commissioner", sans-serif;
  font-weight: 400;          
  font-size: 16px;
  line-height: 1.6;
  color: #000;
  max-width: 520px;           
  text-align: left;
  padding-top: 20px;
}

.admin-text p{ margin: 0 0 10px 0; }
.admin-text ul{
  list-style: none;        
  margin: 10px 0 0 0;
  padding: 0;              
}
.admin-text li{
  position: relative;
  padding-left: 12px;     
  margin: 6px 0;          
  line-height: 1.45;       
}
.admin-text li::before{
  content: "-";
  position: absolute;
  left: 0;
  top: 0;
}
.admin-text strong{ font-weight: 700; }


.admin-visual{
  position: relative;
  width: 600px;              
  height: auto;
  z-index: 0;                
}


.admin-visual::before{
  content: "";
  position: absolute;
  width: 120px;
  height: 145px;
  left: 79%;
  top: 58%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 50% 50%, rgba(10,209,194,0.73) 0%, rgba(255,255,255,0) 100%);
  filter: blur(30px);
  z-index: -2;              
  pointer-events: none;
}


.admin-visual::after{
  content: "";
  position: absolute;
  width: 198px;
  height: 100px;
  left: 15%;
  top: 24%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 50% 50%, rgba(250,233,3,0.73) 0%, rgba(255,255,255,0) 100%);
  filter: blur(30px);
  z-index: -1;
  pointer-events: none;
}
.admin-img{
  max-width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.15));
}



@media (max-width: 1200px) {
  .admin-inner {
    gap: 120px;                
    padding-left: 40px;        
    padding-right: 40px;      
  }

  .admin-copy {
    padding-left: 24px;        
  }

  .admin-text {
    max-width: 600px;  
    text-align: left;       
  }
}


@media (max-width: 980px){
  .admin-inner{
    flex-direction: column;    
    gap: 32px;                  
    align-items: center;         
    justify-content: center;
    padding-left: 0;            
    padding-right: 0;
  }

 
  .admin-visual{
    order: -1;                  
    width: min(700px, 100%);     
    margin: 0 auto;
  }

  
  .admin-copy{
    text-align: center;
    padding-left: 0;             
  }

  .admin-title
  {
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    max-width: 560px;            
  }
  .admin-text{
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    max-width: 560px;            
  }
}



@media (max-width: 600px){
  .admin{ padding: 56px 16px; }

  .admin-title{
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 20px;
    text-align: left;
  }

  .admin-text{
    font-size: 15px;
    line-height: 1.6;
    max-width: 520px;
  }

  .admin-visual{
    width: 100%;
  }
}






.analytics {
  padding: 80px 16px;
}

.analytics-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 208px;
}


.analytics-visual {
  position: relative;
  width: 635px;
  height: 300px;
  z-index: 0;
}


.analytics-visual::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  left: 33%;
  top: 28%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 50% 50%, rgba(10,209,194,0.73) 0%, rgba(255,255,255,0) 100%);
  filter: blur(30px);
  z-index: -2;
  pointer-events: none;
}


.analytics-visual::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 180px;
  left: 80%;
  top: 68%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 50% 50%, rgba(250,233,3,0.73) 0%, rgba(255,255,255,0) 100%);
  filter: blur(30px);
  z-index: -1;
  pointer-events: none;
}

.analytics-img {
  width: 635px;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.1));
}


.analytics-copy {
  max-width: 420px;
  text-align: left;
}

.analytics-title {
  font-family: "Commissioner", sans-serif;
  font-weight: 700;
  font-size: 25px;
  line-height: 30px;
  color: #000;
  margin: 0 0 40px 0;
}

.analytics-text {
  font-family: "Commissioner", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.45;
  color: #000;
  text-align: left;
}

.analytics-text ul {
  list-style: none;
  margin: 10px 0 0 0;
  padding: 0;
  
}

.analytics-text li {
  position: relative;
  padding-left: 12px;
  margin: 6px 0;
  text-align: left;
}

.analytics-text li::before {
  content: "-";
  position: absolute;
  left: 0;
  top: 0;
}

.analytics-text strong {
  font-weight: 700;
}


@media (max-width: 1200px) and (min-width: 981px){
  .analytics-inner{
    flex-wrap: nowrap;         
    gap: 60px;                 
    padding-left: 24px;
    padding-right: 24px;
  }

  
  .analytics-visual{
    width: min(520px, 50vw);
    height: auto;
  }
  .analytics-img{
    width: 100%;
    height: auto;
  }

  
  .analytics-copy{
    max-width: min(600px, 46vw);
    padding-left: 8px;
    padding-right: 8px;
    text-align: left;
  }
}
.analytics-title {text-align: left;}


@media (max-width: 980px) {
  .analytics-inner {
    flex-direction: column;
    gap: 40px;
  }

  .analytics-copy {
    text-align: center;
    max-width: 90%;
    margin: 0 auto;
  }

  
  .analytics-text ul {
    display: inline-block;      
    text-align: left;         
    margin: 0 auto;            
  }

  .analytics-text li {
    padding-left: 0;   
    text-align: left;  

  }

  .analytics-text li::before {
    position: static;         
    margin-right: 6px;          
    display: inline;           
  }
}
@media (max-width: 480px) {
  .analytics-inner {
    flex-direction: column;
    align-items: center;
    gap: 0px;
    padding: 0 16px;
  }

 .analytics-visual {
    width: 100%;
    max-width: 500px; 
    margin: 0 auto;
  }

  .analytics-img {
    width: 110%;      
    max-width: none;  
    height: auto;
    display: block;
    transform: translateX(-5%); 
  }

  .analytics-copy {
    text-align: center;
    max-width: 90%;
    margin: 0 auto;
  }

  .analytics-title {
    font-size: 22px;
    line-height: 1.3;
    text-align: left;
    text-align: left;
  }

  .analytics-text {
    font-size: 14px;
    line-height: 1.5;
  }
}


 .ops {
  position: relative;
  padding: 70px 40px;
  overflow: hidden; 
}


.ops::before {
  content: "";
  position: absolute;
  top: 55%;
  left: 60%;
  width: 760px;
  height: 760px;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle at center,
    rgba(255, 234, 119, 0.32) 0%,   
    rgba(255, 255, 255, 0.32) 100%  
  );
  filter: blur(30px);
  z-index: 0;
  pointer-events: none; 
}


.ops-inner {
  position: relative;
  z-index: 1;          
  max-width: 1200px;
  margin: 0 auto;
}



.ops-title {
  font-family: "Commissioner", sans-serif;
  font-weight: 700;
  font-size: 25px;
  line-height: 30px;
  color: #000;
  margin: 0 0 12px 0;
  text-align: left;
}

.ops-sub {
  font-family: "Commissioner", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #000;
  margin: 0 0 34px 0;
  text-align: left;
}


.ops-grid {
  display: grid;
  grid-auto-rows: auto;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  justify-content: center;
  column-gap: 100px;
  row-gap: 36px;
}


.ops-item {
  display: grid;
  grid-template-columns: 72px 1fr; 
  column-gap: 16px;
  align-items: start; 
  padding-top:40px;
}



.ops-icon {
  width: 67.9px;
  height: 68px;
  object-fit: contain;
  display: block;
  grid-column: 1;
  align-self: start;
}



.ops-item-title {
  grid-column: 2;      
  font-family: "Commissioner", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #000;
  margin: 0;           
  white-space: normal;
  text-align: left;
}


.ops-item-text {
  grid-column: 2;      
  font-family: "Commissioner", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #000;
  margin: 25px 0 0 0; 
  text-align: left;
}

.ops-item-text{
  margin-top: -10px; 
}


.ops-grid .ops-item:nth-child(3) .ops-item-text{
  margin-top: 25px;
}
.ops-grid .ops-item:nth-child(5) .ops-item-text{
  margin-top: 25px;
}

@media (max-width: 1000px) {
  .ops-grid {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
  }
}

@media (max-width: 640px) {
  .ops-grid {
    grid-template-columns: 1fr;
  }
}

.helpdesk {
  padding: 70px 40px;
  padding-bottom: 0px !important;
}
.helpdesk-inner {
  max-width: 1200px;
  margin: 0 auto;
}


.helpdesk-title {
  font-family: "Commissioner", sans-serif;
  font-weight: 700;             
  font-size: 25px;
  line-height: 30px;
  color: #000;
  max-width: 254px;             
  margin: 0 0 15px 0;           
}
.helpdesk-sub {
  font-family: "Commissioner", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #000;
  max-width: 480px;             
  margin: 0 0 32px 0;    
  text-align: left;      
}


.helpdesk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 80px;
  align-items: start;
}


.hd-h3 {
  font-family: "Commissioner", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.25;
  color: #000;
  margin: 0 0 20px 0;            
}
.hd-left .hd-h3 { max-width: 401px; }   
.hd-right .hd-h3 { max-width: 235px; }  


.hd-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: "Commissioner", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #000;
}
.hd-left .hd-list { max-width: 401px; } 
.hd-list li + li { margin-top: 6px; }   
.hd-list strong { font-weight: 700; }   


.hd-illustration {
  display: block;
  width: 678px;
  height: auto;            
  max-width: 100%;        
  margin: 24px 0 -81px 20px ;   
}

@media (max-width: 1000px) {
  .helpdesk-grid {
    grid-template-columns: 1fr;
    row-gap: 36px;
    text-align: center;               
  }

   .helpdesk-title {
    max-width: none;       
    white-space: nowrap;   
    text-align: left;     
  }
  .helpdesk-sub {
    text-align: left;
    margin-left: auto;
    margin-right: auto;
  }

  .hd-col {
    display: flex;
    flex-direction: column;
    align-items: center;              
  }

  .hd-h3 {
    text-align: left;
    max-width: 600px;              
  }

  .hd-list {
    text-align: left;                 
    display: inline-block;              
    margin: 0 auto;
  }

  .hd-illustration {
    margin: 24px auto 0;              
    display: block;
  }
}


.contact-cta {
  padding: 0px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #fff; 
}

.contact-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 800px;
}


.contact-cta-title {
  font-family: "Commissioner", sans-serif;
  font-weight: 700;
  font-size: 25px;
  line-height: 30px;
  color: #000;
  max-width: 340px;
  margin: 0 auto 15px;
}


.contact-cta-sub {
  font-family: "Commissioner", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
  color: #000;
  max-width: 480px;
  margin: 0 auto 25px;
}


.contact-cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 202px;
  height: 49px;
  border-radius: 10px;
  background: #000;
  color: #fff;
  font-family: "Commissioner", sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  margin-bottom: 100px;
}


.contact-cta-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #03BFB1;
  transform: translateY(100%);
  transition: transform 0.35s ease;
  z-index: -1; 
}

.contact-cta-btn:hover::before {
  transform: translateY(0);
}

.contact-cta-btn span,
.contact-cta-btn {
  z-index: 2;
}


.contact-cta-btn:focus-visible {
  outline: 3px solid rgba(3,191,177,0.6);
  outline-offset: 3px;
}


@media (max-width: 640px) {
  .contact-cta {
    padding: 70px 16px;
  }
  .contact-cta-title {
    font-size: 22px;
    line-height: 28px;
  }
}


.site-footer {
  background: #000;
  color: #fff;
  width: 100%;
}


.footer-inner {
  max-width: 1200px;        
  margin: 0 auto;
  padding: 32px 16px 48px;   
  text-align: center;
}


.footer-logo {
  display: block;
  height: 160px;
  height: 31px;
  width: 215.25px;
  margin: 0 auto 16px;       
  object-fit: contain;
}


.footer-rule {
  height: 1px;
  width: min(860px, 70%);    
  margin: 8px auto 18px;
  background: rgba(255,255,255,0.35);
}


.footer-credit {
  font-family: "Commissioner", sans-serif;
  font-weight: 400;
  font-size: 11px;
  line-height: 1;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;                
}


.credit-mark {
  display: inline-block;
  width: 14px;
  height: 14px;
  object-fit: contain;
  filter: brightness(0) invert(1); 
}


@media (max-width: 640px) {
  .footer-logo { height: 100px; }
  .footer-rule { width: 80%; }
}

.footer-links {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin: 10px auto 16px;      
  font-family: "Commissioner", sans-serif;
  font-weight: 400;
  font-size: 14px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.2s ease, text-decoration-color 0.2s ease;
}

.footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-links .dot {
  color: rgba(255, 255, 255, 0.5);
  user-select: none;
}
.credit-mark-small {
  display: inline-block;
  width: 15px;
  height: 15px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  margin-left: 4px;
  transform: translateY(1px);
}


@media (max-width: 640px) {
  .footer-links {
    flex-wrap: wrap;
    gap: 14px;
    text-align: center;
    font-size: 13px;
  }
}
/* Benefits section */
.benefits-section {
  width: 100%;
}

.benefits-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 80px;
  box-sizing: border-box;
}

.benefits-title {
  font-family: "Commissioner", sans-serif;
  font-weight: 700;            
  font-size: 25px;
  margin-top: 100px;
  margin-bottom: 60px;
  text-align: left;
}

.benefits-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.benefit-item img {
  display: block;
  max-width: 100%;
  height: auto;
}


.benefits-subtitle {
  margin-top: 50px;
  text-align: center;
  font-family: "Commissioner", sans-serif;
  font-weight: 500;            
  font-size: 18px;
  color: #000000;
}


@media (max-width: 768px) {
  .benefits-wrapper {
    gap: 24px;
  }

  .benefits-title {
    text-align: center;
  }
}
