#ceo-section-en{
  --assc-dark:#08151e;
  --assc-accent:#ae8768;
  --assc-secondary:#8c8c8c;
  --assc-bg:#f9f9fb;
  --assc-white:#ffffff;
  --assc-text:#4b5563;
  --assc-border:rgba(174,135,104,.15);
  --assc-border-soft:rgba(8,21,30,.10);
  --assc-accent-soft:rgba(174,135,104,.10);
  --shadow-soft:0 24px 60px rgba(8,21,30,.08);
  --shadow-strong:0 32px 90px rgba(8,21,30,.12);
  position:relative;
  overflow-x:hidden;
  direction:ltr;
  font-family:"Alexandria",sans-serif;
  color:var(--assc-text);
  background:var(--assc-bg);
}

#ceo-section-en *,
#ceo-section-en *::before,
#ceo-section-en *::after{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

#ceo-section-en :focus{
  outline:none;
}

#ceo-section-en :focus-visible{
  outline:3px solid var(--assc-accent);
  outline-offset:4px;
  border-radius:14px;
}

#ceo-section-en .page-shell{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:96px 20px;
  isolation:isolate;
}

#ceo-section-en .page-shell::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  opacity:.4;
  pointer-events:none;
  background-image:
    linear-gradient(rgba(174,135,104,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(174,135,104,.04) 1px, transparent 1px);
  background-size:72px 72px;
}

#ceo-section-en .orb{
  position:absolute;
  z-index:0;
  border-radius:50%;
  filter:blur(50px);
  opacity:.2;
  pointer-events:none;
  animation:ceoFloatOrb 10s ease-in-out infinite;
}

#ceo-section-en .orb.one{
  top:10%;
  left:5%;
  width:300px;
  height:300px;
  background:var(--assc-accent);
}

#ceo-section-en .orb.two{
  right:5%;
  bottom:10%;
  width:400px;
  height:400px;
  background:var(--assc-dark);
  animation-delay:2s;
}

@keyframes ceoFloatOrb{
  0%,100%{transform:translate(0,0) scale(1);}
  50%{transform:translate(15px,-20px) scale(1.05);}
}

#ceo-section-en .ceo-page{
  position:relative;
  z-index:2;
  width:100%;
  max-width:1240px;
  opacity:0;
  transform:translateY(24px);
  transition:opacity 1s cubic-bezier(.22,1,.36,1), transform 1s cubic-bezier(.22,1,.36,1);
}

#ceo-section-en .ceo-page.is-visible{
  opacity:1;
  transform:translateY(0);
}

#ceo-section-en .ceo-card{
  position:relative;
  display:grid;
  grid-template-columns:440px 1fr;
  min-height:700px;
  overflow:hidden;
  border:1px solid var(--assc-border);
  border-radius:35px;
  background:rgba(255,255,255,.95);
  backdrop-filter:blur(15px);
  box-shadow:var(--shadow-strong);
}

#ceo-section-en .ceo-media{
  position:relative;
  display:flex;
  align-items:flex-end;
  padding:40px;
  background-color:var(--assc-dark);
  background-image:
    linear-gradient(180deg, rgba(8,21,30,.4), rgba(8,21,30,.7)),
    url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=1200&q=80");
  background-position:center;
  background-size:cover;
  background-repeat:no-repeat;
}

#ceo-section-en .ceo-badge{
  position:relative;
  z-index:1;
  width:100%;
  padding:30px;
  border:1px solid rgba(255,255,255,.2);
  border-radius:20px;
  background:rgba(255,255,255,.05);
  backdrop-filter:blur(12px);
  box-shadow:0 20px 50px rgba(0,0,0,.3);
  color:#fff;
}

#ceo-section-en .ceo-badge .mini{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom:12px;
  color:var(--assc-accent);
  font-size:.8rem;
  font-weight:700;
  letter-spacing:2px;
  text-transform:uppercase;
}

#ceo-section-en .ceo-badge h2{
  margin-bottom:12px;
  font-size:1.4rem;
  font-weight:700;
  line-height:1.4;
}

#ceo-section-en .ceo-badge p{
  color:rgba(255,255,255,.8);
  font-size:.95rem;
  font-weight:300;
  line-height:1.7;
}

#ceo-section-en .ceo-content{
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:70px 60px;
  text-align:left;
}

#ceo-section-en .ceo-topline{
  display:inline-flex;
  align-items:center;
  gap:12px;
  width:fit-content;
  margin-bottom:25px;
  padding:10px 22px;
  border-radius:999px;
  background:var(--assc-accent-soft);
  color:var(--assc-accent);
  font-size:.85rem;
  font-weight:700;
  letter-spacing:1.5px;
  text-transform:uppercase;
}

#ceo-section-en .ceo-title{
  display:inline-block;
  margin-bottom:25px;
  font-size:clamp(2.5rem,4.5vw,3.5rem);
  font-weight:900;
  line-height:1.1;
  background:linear-gradient(135deg, var(--assc-dark) 20%, var(--assc-accent) 100%);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  color:transparent;
}

#ceo-section-en .ceo-divider{
  width:100px;
  height:6px;
  margin-bottom:35px;
  border-radius:10px;
  background:var(--assc-accent);
}

#ceo-section-en .ceo-text{
  margin-bottom:40px;
  color:var(--assc-text);
  font-size:1.05rem;
  font-weight:400;
  line-height:2;
}

#ceo-section-en .ceo-text p{
  margin-bottom:14px;
}

#ceo-section-en .ceo-text p:last-child{
  margin-bottom:0;
}

#ceo-section-en .ceo-signature{
  margin-top:auto;
  padding-top:35px;
  border-top:1px solid var(--assc-border-soft);
}

#ceo-section-en .sign-name{
  display:block;
  margin-bottom:6px;
  color:var(--assc-dark);
  font-size:1.5rem;
  font-weight:800;
}

#ceo-section-en .sign-role{
  color:var(--assc-accent);
  font-size:1rem;
  font-weight:600;
  letter-spacing:1px;
  text-transform:uppercase;
}

#ceo-section-en .ceo-badge,
#ceo-section-en .ceo-topline,
#ceo-section-en .ceo-title,
#ceo-section-en .ceo-divider,
#ceo-section-en .ceo-text,
#ceo-section-en .ceo-signature{
  opacity:0;
  transform:translateY(16px);
  transition:opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1);
}

#ceo-section-en .ceo-page.is-visible .ceo-badge,
#ceo-section-en .ceo-page.is-visible .ceo-topline,
#ceo-section-en .ceo-page.is-visible .ceo-title,
#ceo-section-en .ceo-page.is-visible .ceo-divider,
#ceo-section-en .ceo-page.is-visible .ceo-text,
#ceo-section-en .ceo-page.is-visible .ceo-signature{
  opacity:1;
  transform:translateY(0);
}

@media (max-width:1100px){
  #ceo-section-en .ceo-card{
    grid-template-columns:1fr;
  }

  #ceo-section-en .ceo-media{
    min-height:400px;
  }
}

@media (max-width:768px){
  #ceo-section-en .page-shell{
    padding:72px 16px;
  }

  #ceo-section-en .ceo-content{
    padding:50px 30px;
  }

  #ceo-section-en .ceo-title{
    font-size:2.3rem;
  }

  #ceo-section-en .ceo-text{
    font-size:1rem;
  }
}

@media (prefers-reduced-motion:reduce){
  #ceo-section-en,
  #ceo-section-en *{
    animation:none !important;
    transition:none !important;
    scroll-behavior:auto !important;
  }

  #ceo-section-en .ceo-page,
  #ceo-section-en .ceo-badge,
  #ceo-section-en .ceo-topline,
  #ceo-section-en .ceo-title,
  #ceo-section-en .ceo-divider,
  #ceo-section-en .ceo-text,
  #ceo-section-en .ceo-signature{
    opacity:1 !important;
    transform:none !important;
  }
}
